| 271 | } |
| 272 | |
| 273 | static const void *db_column_blob(struct db_stmt *stmt, int col) |
| 274 | { |
| 275 | if (db_column_is_null(stmt, col)) |
| 276 | return NULL; |
| 277 | return stmt->db->config->column_blob_fn(stmt, col); |
| 278 | } |
| 279 | |
| 280 | |
| 281 | u64 db_col_u64(struct db_stmt *stmt, const char *colname) |
no test coverage detected