| 240 | } |
| 241 | |
| 242 | static size_t db_column_bytes(struct db_stmt *stmt, int col) |
| 243 | { |
| 244 | if (db_column_is_null(stmt, col)) |
| 245 | return 0; |
| 246 | return stmt->db->config->column_bytes_fn(stmt, col); |
| 247 | } |
| 248 | |
| 249 | static const void *db_column_blob(struct db_stmt *stmt, int col) |
| 250 | { |
no test coverage detected