| 247 | } |
| 248 | |
| 249 | static const void *db_column_blob(struct db_stmt *stmt, int col) |
| 250 | { |
| 251 | if (db_column_is_null(stmt, col)) |
| 252 | return NULL; |
| 253 | return stmt->db->config->column_blob_fn(stmt, col); |
| 254 | } |
| 255 | |
| 256 | |
| 257 | u64 db_col_u64(struct db_stmt *stmt, const char *colname) |
no test coverage detected