diff --git a/examples/database/sqlite_encryption_pragma/SQLite_Encryption_Pragma.ex-meta b/examples/database/sqlite_encryption_pragma/SQLite_Encryption_Pragma.ex-meta index 32775df134..8f1ae73706 100644 --- a/examples/database/sqlite_encryption_pragma/SQLite_Encryption_Pragma.ex-meta +++ b/examples/database/sqlite_encryption_pragma/SQLite_Encryption_Pragma.ex-meta @@ -1,5 +1,5 @@ { "SQLite_Encryption_Pragma" : { "Category" : "DBase", - "Keywords" : ["DBase","SQLite3","Encryption","Pragma","Needs Work"], - "Description" : "Simple SQLite3 Demo with Encryption and Pragma. Creation of an SQLite3 Database, Encrypting, Changing the key, Creating Tables, Index and adding rows, performing queries.\n\nIs, however, broken on Unix systems because its assumes the sqlite3 library is called sqlite3.dll ! Leaving it here for now as it probably works under Windows but needs fixing!\n\nSee the included readme.txt file.\n"} + "Keywords" : ["DBase","SQLite3","Encryption","Pragma"], + "Description" : "Simple SQLite3 Demo with Encryption and Pragma. Creation of an SQLite3 Database, Encrypting, Changing the key, Creating Tables, Index and adding rows, performing queries.\n\nUses a hard wired sqlite3 library name only on Windows.\n\nSee the included readme.txt file.\n"} } \ No newline at end of file diff --git a/examples/database/sqlite_encryption_pragma/unit1.pas b/examples/database/sqlite_encryption_pragma/unit1.pas index a31b187c53..b0199387ea 100644 --- a/examples/database/sqlite_encryption_pragma/unit1.pas +++ b/examples/database/sqlite_encryption_pragma/unit1.pas @@ -442,8 +442,8 @@ end; procedure TForm1.FormCreate(Sender: TObject); begin - // Ensure we're using the local sqlite3.dll - SQLiteLibraryName := 'sqlite3.dll'; + // Ensure we're using the local sqlite3.dll, other OS will be OK. + {$ifdef WINDOWS}SQLiteLibraryName := 'sqlite3.dll';{$endif} // Set the path to the database SQLite3Connection1.DatabaseName := 'new.db';