-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathRcppExports.R
127 lines (95 loc) · 3.21 KB
/
RcppExports.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
list_drivers_ <- function() {
.Call(`_odbc_list_drivers_`)
}
list_data_sources_ <- function() {
.Call(`_odbc_list_data_sources_`)
}
odbc_connect <- function(connection_string, timezone = "", timezone_out = "", encoding = "", bigint = 0L, timeout = 0L, r_attributes_ = NULL) {
.Call(`_odbc_odbc_connect`, connection_string, timezone, timezone_out, encoding, bigint, timeout, r_attributes_)
}
connection_info <- function(p) {
.Call(`_odbc_connection_info`, p)
}
connection_quote <- function(p) {
.Call(`_odbc_connection_quote`, p)
}
connection_release <- function(p) {
invisible(.Call(`_odbc_connection_release`, p))
}
connection_begin <- function(p) {
invisible(.Call(`_odbc_connection_begin`, p))
}
connection_commit <- function(p) {
invisible(.Call(`_odbc_connection_commit`, p))
}
connection_rollback <- function(p) {
invisible(.Call(`_odbc_connection_rollback`, p))
}
connection_valid <- function(p) {
.Call(`_odbc_connection_valid`, p)
}
connection_sql_tables <- function(p, catalog_name = NULL, schema_name = NULL, table_name = NULL, table_type = NULL) {
.Call(`_odbc_connection_sql_tables`, p, catalog_name, schema_name, table_name, table_type)
}
connection_sql_catalogs <- function(p) {
.Call(`_odbc_connection_sql_catalogs`, p)
}
connection_sql_schemas <- function(p) {
.Call(`_odbc_connection_sql_schemas`, p)
}
connection_sql_table_types <- function(p) {
.Call(`_odbc_connection_sql_table_types`, p)
}
connection_sql_columns <- function(p, column_name = NULL, catalog_name = NULL, schema_name = NULL, table_name = NULL) {
.Call(`_odbc_connection_sql_columns`, p, column_name, catalog_name, schema_name, table_name)
}
transactionLevels <- function() {
.Call(`_odbc_transactionLevels`)
}
set_transaction_isolation <- function(p, level) {
invisible(.Call(`_odbc_set_transaction_isolation`, p, level))
}
bigint_mappings <- function() {
.Call(`_odbc_bigint_mappings`)
}
result_release <- function(r) {
invisible(.Call(`_odbc_result_release`, r))
}
result_active <- function(r) {
.Call(`_odbc_result_active`, r)
}
result_completed <- function(r) {
.Call(`_odbc_result_completed`, r)
}
new_result <- function(p, sql, immediate, timeout) {
.Call(`_odbc_new_result`, p, sql, immediate, timeout)
}
result_fetch <- function(r, n_max = -1L) {
.Call(`_odbc_result_fetch`, r, n_max)
}
result_column_info <- function(r) {
.Call(`_odbc_result_column_info`, r)
}
result_bind <- function(r, params, batch_rows) {
invisible(.Call(`_odbc_result_bind`, r, params, batch_rows))
}
result_execute <- function(r) {
invisible(.Call(`_odbc_result_execute`, r))
}
result_insert_dataframe <- function(r, df, batch_rows) {
invisible(.Call(`_odbc_result_insert_dataframe`, r, df, batch_rows))
}
result_describe_parameters <- function(r, df) {
invisible(.Call(`_odbc_result_describe_parameters`, r, df))
}
result_rows_affected <- function(r) {
.Call(`_odbc_result_rows_affected`, r)
}
result_row_count <- function(r) {
.Call(`_odbc_result_row_count`, r)
}
column_types <- function(df) {
invisible(.Call(`_odbc_column_types`, df))
}