newSqliteLocalCacheStore function

Future<SqliteCacheStore> newSqliteLocalCacheStore({
  1. File? file,
  2. StoreCodec? codec,
  3. bool? logStatements,
  4. DatabaseSetup? databaseSetup,
  5. bool? cachePreparedStatements,
})

Creates a file based SqliteCacheStore

  • file: The path to the database file
  • codec: The StoreCodec used to convert to/from a Map<String, dynamic>` representation to a binary representation
  • logStatements: If logStatements is true (defaults to false), generated sql statements will be printed before executing
  • databaseSetup: This optional function can be used to perform a setup just after the database is opened, before drift is fully ready
  • cachePreparedStatements: controls whether drift will cache prepared statement objects

Implementation

Future<SqliteCacheStore> newSqliteLocalCacheStore(
    {File? file,
    StoreCodec? codec,
    bool? logStatements,
    DatabaseSetup? databaseSetup,
    bool? cachePreparedStatements}) {
  return SqliteFileAdapter.build<CacheInfo, CacheEntry>(
          (QueryExecutor executor) => CacheDatabase(executor),
          _defaultCacheFile(file),
          logStatements: logStatements,
          setup: databaseSetup,
          cachePreparedStatements: cachePreparedStatements)
      .then((adapter) => SqliteCacheStore(adapter, codec: codec));
}