auto_extension method

int auto_extension(
  1. PtrSyscallPtr xEntryPoint
)
inherited

Implementation

int auto_extension(PtrSyscallPtr xEntryPoint) {
  if (libVersionNumber < 3003008) {
    throw dbsql.DatabaseException('API sqlite3_auto_extension is not available before 3.3.8');
  }
  return _h_sqlite3_auto_extension!(xEntryPoint);
}