(c *server.Conn, dbName string)
| 21 | } |
| 22 | |
| 23 | func (h *Handle) UseDB(c *server.Conn, dbName string) error { |
| 24 | return h.conn.UseDB(dbName) |
| 25 | } |
| 26 | |
| 27 | func (h *Handle) HandleQuery(c *server.Conn, query string) (res *mysql.Result, err error) { |
| 28 | // Check if this is a readonly connection attempting a write |