init method

bool init()

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;
}