Lines Matching refs:column

258    value will be NULL if the column is null.
266 svn_sqlite__column_blob(svn_sqlite__stmt_t *stmt, int column,
269 /* Wrapper around sqlite3_column_text. If the column is null, then the
278 svn_sqlite__column_text(svn_sqlite__stmt_t *stmt, int column,
281 /* Wrapper around sqlite3_column_int64. If the column is null, then the
284 svn_sqlite__column_revnum(svn_sqlite__stmt_t *stmt, int column);
286 /* Wrapper around sqlite3_column_int64. If the column is null, then the
289 svn_sqlite__column_boolean(svn_sqlite__stmt_t *stmt, int column);
291 /* Wrapper around sqlite3_column_int. If the column is null, then the
294 svn_sqlite__column_int(svn_sqlite__stmt_t *stmt, int column);
296 /* Wrapper around sqlite3_column_int64. If the column is null, then the
299 svn_sqlite__column_int64(svn_sqlite__stmt_t *stmt, int column);
302 MALFUNCTION is thrown if the column is null or contains an unknown word. */
305 int column,
309 Returns NULL_VAL if the column is null. MALFUNCTION is thrown if the
310 column contains an unknown word. */
313 int column,
317 /* Return the column as a hash of const char * => const svn_string_t *.
318 If the column is null, then set *PROPS to NULL. The
324 int column,
328 /* Return the column as an array of depth-first ordered array of
329 svn_prop_inherited_item_t * structures. If the column is null, then
335 int column,
339 /* Return the column as a checksum. If the column is null, then NULL will
344 int column,
347 /* Return TRUE if the result of selecting the column is null,
350 svn_sqlite__column_is_null(svn_sqlite__stmt_t *stmt, int column);
352 /* Return the number of bytes the column uses in a text or blob representation.
355 svn_sqlite__column_bytes(svn_sqlite__stmt_t *stmt, int column);