Reset Deprecated use Close instead
()
| 60 | |
| 61 | // Reset Deprecated use Close instead |
| 62 | func (db *PreparedStmtDB) Reset() { |
| 63 | db.Close() |
| 64 | } |
| 65 | |
| 66 | func (db *PreparedStmtDB) prepare(ctx context.Context, conn ConnPool, isTransaction bool, query string) (_ *stmt_store.Stmt, err error) { |
| 67 | db.Mux.RLock() |