handle COM_STMT_PREPARE, params is the param number for this statement, columns is the column number context will be used later for statement execute
(conn *Conn, query string)
| 23 | // handle COM_STMT_PREPARE, params is the param number for this statement, columns is the column number |
| 24 | // context will be used later for statement execute |
| 25 | HandleStmtPrepare(conn *Conn, query string) (params int, columns int, context any, err error) |
| 26 | // handle COM_STMT_EXECUTE, context is the previous one set in prepare |
| 27 | // query is the statement prepare query, and args is the params for this statement |
| 28 | HandleStmtExecute(conn *Conn, context any, query string, args []any) (*Result, error) |
no outgoing calls
no test coverage detected