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

Struct Conn

IceFireDB-SQLProxy/pkg/mysql/client/conn.go:17–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15)
16
17type Conn struct {
18 *packet.Conn
19
20 user string
21 password string
22 db string
23 tlsConfig *tls.Config
24 proto string
25
26 // server capabilities
27 capability uint32
28 // client-set capabilities only
29 ccaps uint32
30
31 status uint16
32
33 charset string
34
35 salt []byte
36 authPluginName string
37
38 connectionID uint32
39}
40
41// This function will be called for every row in resultset from ExecuteSelectStreaming.
42type SelectPerRowCallback func(row []FieldValue) error

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected