The R Project SVN R-packages

Rev

Rev 3471 | Rev 3684 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3471 Rev 3473
Line 72... Line 72...
72
/* sqlite utilities */
72
/* sqlite utilities */
73
int _empty_callback(void *data, int ncols, char **row, char **cols);
73
int _empty_callback(void *data, int ncols, char **row, char **cols);
74
int _sqlite_error_check(int res, const char *file, int line);
74
int _sqlite_error_check(int res, const char *file, int line);
75
const char *_get_column_type(const char *class, int type); /* get sqlite type corresponding to R class & type */
75
const char *_get_column_type(const char *class, int type); /* get sqlite type corresponding to R class & type */
76
sqlite3* _is_sqlitedb(char *filename);
76
sqlite3* _is_sqlitedb(char *filename);
-
 
77
void _init_sqlite_function_accumulator();
77
 
78
 
78
/* global buffer (g_sql_buf) utilities */
79
/* global buffer (g_sql_buf) utilities */
79
int _expand_buf(int i, int size);  /* expand ith buf if size > buf[i].size */
80
int _expand_buf(int i, int size);  /* expand ith buf if size > buf[i].size */
80
 
81
 
81
 
82