keyword_check method

int keyword_check(
  1. String arg1
)
inherited

Implementation

int keyword_check(String arg1) {
  if (libVersionNumber < 3024000) {
    throw dbsql.DatabaseException('API sqlite3_keyword_check is not available before 3.24.0');
  }
  final arg1Meta = arg1._metaNativeUtf8();
  final ptrArg1 = arg1Meta.ptr;
  try {
    return _h_sqlite3_keyword_check!(ptrArg1, arg1Meta.length);
  } finally {
    pkgffi.malloc.free(ptrArg1);
  }
}