| 51 | } |
| 52 | |
| 53 | extern "C" int column_callback(void *arg, int argc, char **argv, char **azColName) |
| 54 | { |
| 55 | (void) argc; (void) azColName; |
| 56 | table *tab = (table *)arg; |
| 57 | column c(argv[1], sqltype::get(argv[2])); |
| 58 | tab->columns().push_back(c); |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | sqlite_connection::sqlite_connection(std::string &conninfo) |
| 63 | { |
nothing calls this directly
no outgoing calls
no test coverage detected