MCPcopy Create free account
hub / github.com/IceFireDB/IceFireDB / Execute

Method Execute

IceFireDB-SQLProxy/pkg/mysql/client/stmt.go:34–40  ·  view source on GitHub ↗
(args ...any)

Source from the content-addressed store, hash-verified

32}
33
34func (s *Stmt) Execute(args ...any) (*Result, error) {
35 if err := s.write(args...); err != nil {
36 return nil, errors.Trace(err)
37 }
38
39 return s.conn.readResult(true)
40}
41
42func (s *Stmt) Close() error {
43 if err := s.conn.writeCommandUint32(COM_STMT_CLOSE, s.id); err != nil {

Callers

nothing calls this directly

Calls 2

writeMethod · 0.95
readResultMethod · 0.45

Tested by

no test coverage detected