tempDirectory property
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.
Implementation
@override
String? get tempDirectory => bindings.sqlite3_temp_directory;
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.
Implementation
@override
set tempDirectory(String? value) => bindings.sqlite3_temp_directory = value;