We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c51ad8f commit ccd0ffaCopy full SHA for ccd0ffa
src/odbc_statement.cpp
@@ -48,6 +48,9 @@ ODBCStatement::ODBCStatement(const Napi::CallbackInfo& info) : Napi::ObjectWrap<
48
this->data = new StatementData();
49
this->odbcConnection = info[0].As<Napi::External<ODBCConnection>>().Data();
50
this->data->hstmt = *(info[1].As<Napi::External<SQLHSTMT>>().Data());
51
+ this->data->fetch_array = this->odbcConnection->connectionOptions.fetchArray;
52
+ this->data->maxColumnNameLength = this->odbcConnection->getInfoResults.max_column_name_length;
53
+ this->data->get_data_supports = this->odbcConnection->getInfoResults.sql_get_data_supports;
54
}
55
56
ODBCStatement::~ODBCStatement() {
0 commit comments