| 15 | ) |
| 16 | |
| 17 | type 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. |
| 42 | type SelectPerRowCallback func(row []FieldValue) error |
nothing calls this directly
no outgoing calls
no test coverage detected