|
| 1 | +# Generated by cpp11: do not edit by hand |
| 2 | + |
| 3 | +connection_connect <- function(path, allow_ext, flags, vfs, with_alt_types) { |
| 4 | + .Call(`_RSQLite_connection_connect`, path, allow_ext, flags, vfs, with_alt_types) |
| 5 | +} |
| 6 | + |
| 7 | +connection_valid <- function(con_) { |
| 8 | + .Call(`_RSQLite_connection_valid`, con_) |
| 9 | +} |
| 10 | + |
| 11 | +connection_release <- function(con_) { |
| 12 | + invisible(.Call(`_RSQLite_connection_release`, con_)) |
| 13 | +} |
| 14 | + |
| 15 | +connection_copy_database <- function(from, to) { |
| 16 | + invisible(.Call(`_RSQLite_connection_copy_database`, from, to)) |
| 17 | +} |
| 18 | + |
| 19 | +connection_import_file <- function(con, name, value, sep, eol, skip) { |
| 20 | + .Call(`_RSQLite_connection_import_file`, con, name, value, sep, eol, skip) |
| 21 | +} |
| 22 | + |
| 23 | +set_busy_handler <- function(con, r_callback) { |
| 24 | + invisible(.Call(`_RSQLite_set_busy_handler`, con, r_callback)) |
| 25 | +} |
| 26 | + |
| 27 | +extension_load <- function(con, file, entry_point) { |
| 28 | + invisible(.Call(`_RSQLite_extension_load`, con, file, entry_point)) |
| 29 | +} |
| 30 | + |
| 31 | +result_create <- function(con, sql) { |
| 32 | + .Call(`_RSQLite_result_create`, con, sql) |
| 33 | +} |
| 34 | + |
| 35 | +result_release <- function(res) { |
| 36 | + invisible(.Call(`_RSQLite_result_release`, res)) |
| 37 | +} |
| 38 | + |
| 39 | +result_valid <- function(res_) { |
| 40 | + .Call(`_RSQLite_result_valid`, res_) |
| 41 | +} |
| 42 | + |
| 43 | +result_fetch <- function(res, n) { |
| 44 | + .Call(`_RSQLite_result_fetch`, res, n) |
| 45 | +} |
| 46 | + |
| 47 | +result_bind <- function(res, params) { |
| 48 | + invisible(.Call(`_RSQLite_result_bind`, res, params)) |
| 49 | +} |
| 50 | + |
| 51 | +result_has_completed <- function(res) { |
| 52 | + .Call(`_RSQLite_result_has_completed`, res) |
| 53 | +} |
| 54 | + |
| 55 | +result_rows_fetched <- function(res) { |
| 56 | + .Call(`_RSQLite_result_rows_fetched`, res) |
| 57 | +} |
| 58 | + |
| 59 | +result_rows_affected <- function(res) { |
| 60 | + .Call(`_RSQLite_result_rows_affected`, res) |
| 61 | +} |
| 62 | + |
| 63 | +result_column_info <- function(res) { |
| 64 | + .Call(`_RSQLite_result_column_info`, res) |
| 65 | +} |
| 66 | + |
| 67 | +result_get_placeholder_names <- function(res) { |
| 68 | + .Call(`_RSQLite_result_get_placeholder_names`, res) |
| 69 | +} |
| 70 | + |
| 71 | +rsqliteVersion <- function() { |
| 72 | + .Call(`_RSQLite_rsqliteVersion`) |
| 73 | +} |
| 74 | + |
| 75 | +init_logging <- function(log_level) { |
| 76 | + invisible(.Call(`_RSQLite_init_logging`, log_level)) |
| 77 | +} |
0 commit comments