| 60 | } |
| 61 | |
| 62 | void db_bind_null(struct db_stmt *stmt, int pos) |
| 63 | { |
| 64 | assert(pos < tal_count(stmt->bindings)); |
| 65 | stmt->bindings[pos].type = DB_BINDING_NULL; |
| 66 | } |
| 67 | |
| 68 | void db_bind_u64(struct db_stmt *stmt, int pos, u64 val) |
| 69 | { |
no outgoing calls
no test coverage detected