init method
Initializes the ODBC environment.
Must be called before any other operations. Returns true on success, false on failure.
Implementation
bool init() {
final result = _bindings.odbc_init();
return result == 0;
}
Initializes the ODBC environment.
Must be called before any other operations. Returns true on success, false on failure.
bool init() {
final result = _bindings.odbc_init();
return result == 0;
}