tempDirectory property

  1. @override
String? tempDirectory
inherited

Accesses the sqlite3_temp_directory variable.

Note that this operation might not be safe if a database connection is being used at the same time in different isolates.

See also: https://www.sqlite.org/c3ref/temp_directory.html

Implementation

@override
String? get tempDirectory => bindings.sqlite3_temp_directory;
  1. @override
void tempDirectory=(String? value)
inherited

Accesses the sqlite3_temp_directory variable.

Note that this operation might not be safe if a database connection is being used at the same time in different isolates.

See also: https://www.sqlite.org/c3ref/temp_directory.html

Implementation

@override
set tempDirectory(String? value) => bindings.sqlite3_temp_directory = value;