Prepare creates a prepared statement for later queries or executions. The caller must call the statement's Close method when the statement is no longer needed.
(query interface{})
| 100 | // caller must call the statement's Close method when the statement is no |
| 101 | // longer needed. |
| 102 | Prepare(query interface{}) (*sql.Stmt, error) |
| 103 | |
| 104 | // Prepare creates a prepared statement on the guiven context for later |
| 105 | // queries or executions. The caller must call the statement's Close method |
no outgoing calls