compileoption_get method

String? compileoption_get(
  1. int N
)
inherited

Implementation

String? compileoption_get(int N) {
  if (libVersionNumber < 3006023) {
    throw dbsql.DatabaseException('API sqlite3_compileoption_get is not available before 3.6.23');
  }
  PtrString result = ffi.nullptr;
  try {
    var result = _h_sqlite3_compileoption_get!(N);
    return result == ffi.nullptr ? null : result.toDartString();
  } finally {
    pkgffi.malloc.free(result);
  }
}