Yunqa • The Delphi Inspiration

Delphi Components and Applications

User Tools

Site Tools


wiki:sqlitespy:index

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
wiki:sqlitespy:index [2021/02/27 16:00] – [Feature Suggestions] zorrowiki:sqlitespy:index [2021/03/01 11:37] – Answer "no auto-save on exit" feature suggestion admin
Line 15: Line 15:
  
   * No auto-save on exit. There is the Read-only option, but any modification is auto-saved on exit which may be problematic, especially for beginners who aren't aware and expect a save confirmation on exit and possibly a save item in the menu.   * No auto-save on exit. There is the Read-only option, but any modification is auto-saved on exit which may be problematic, especially for beginners who aren't aware and expect a save confirmation on exit and possibly a save item in the menu.
 +    * The SQLite database engine does not know the idea of "save on exit". It writes all database changes directly to disk by default. One way to prevent this is to execute ''BEGIN TRANSACTION;'' before other SQL commands. When done, and before closing SQLiteSpy, execute ''COMMIT TRANSACTION;'' to save your changes.
  
   * Command-line version of the SQLiteSpy's SQLite engine (including math/regexp functions etc) with the ability to read from stdin or to be used as a shell.   * Command-line version of the SQLiteSpy's SQLite engine (including math/regexp functions etc) with the ability to read from stdin or to be used as a shell.
Line 29: Line 30:
  
   * Use external SQLite DLL (for custom SQLite builds).   * Use external SQLite DLL (for custom SQLite builds).
- +    * A SQLiteSpy version which uses an external sqlite3.dll as external database engine is available from the author upon request.
-A SQLiteSpy version which uses an external sqlite3.dll as external database engine is available from the author upon request.+
  
   * Add a command-line option to also open a given text file in the editor (on top of the existing param for opening a given DB).   * Add a command-line option to also open a given text file in the editor (on top of the existing param for opening a given DB).
  
-  * On File Menu, 'Vaccuum Database'+  * On File Menu, 'Vacuum Database'
- +    * The ''VACUUM;'' SQL command is available as a menu item at ''Menu -> Execute -> Vacuum Database''.
-VACUUM DATABASE is available as a menu command at ''Menu -> Execute -> Vacuum Database''.+
wiki/sqlitespy/index.txt · Last modified: 2021/03/27 13:23 by admin