odbc_execute_async method

int? odbc_execute_async(
  1. int connId,
  2. Pointer<Utf8> sql
)
inherited

Implementation

int? odbc_execute_async(int connId, ffi.Pointer<Utf8> sql) {
  final fn = _odbc_execute_async_fn;
  if (fn == null) return null;
  return fn(connId, sql);
}