SQLiteSpy - A fast and compact GUI database manager for SQLite

http://www.yunqa.de/delphi/doku.php/products/sqlitespy/index

SQLiteSpy is a fast and compact GUI database manager for SQLite. It reads SQLite3 files and executes SQL against them. Its graphical user interface makes it very easy to explore, analyze, and manipulate SQLite3 databases.

  • Database at a Glance – The schema treeview displays all items contained in a database, including tables, columns, indexes and triggers. Press F5 to update the schema tree, double-click a table or view to display its data, use the context menu for frequently used commands.
  • Grid Cell Editing – Table cells are editable in the grid: Display a table via the schema treeview, select a cell and press F2 to invoke the editor. Then modify and confirm to write your changes back to the table.
  • Data Type Display – The native SQL data types are displayed with different background colors to help detect type errors. Type errors can cause performance degradation or wrong SELECT result sets if NULL values are confused with empty strings.
  • Full Unicode – SQLiteSpy fully supports SQLite‘s Unicode capabilities. Data display and entry is completely realized as Unicode, including SQL commands.
  • Multiple SQL Edits – Modern tabs are used to edit and display multiple SQL queries for easy comparison of query statements and results. SQL queries are executed by typing or loading them into the SQL edit. Then press F9 to run the query, or CTRL+F9 to run the current line or selection only.
  • Time Measurement – SQL execution time is automatically measured and displayed to help optimize queries.
  • Regular Expressions – The SQL keyword REGEXP is supported and adds the complete regular expression syntax of Perl 5.10 to SQLiteSpy. The implementation was realized using the DIRegEx library.
  • Mathematical SQL Functions – The following mathematical SQL functions are available in addition to the SQLite default: ACOS(), ASIN(), ATAN(), ATAN(), ATAN2(), CEIL(), CEILING(), COS(), COT(), DEGREES(), EXP(), FLOOR(), LN(), LOG(), LOG(), LOG2(), LOG10(), MOD(), PI(), POW(), RADIANS(), SIGN(), SIN(), SQRT(), TAN(), TRUNCATE().
  • Data Compression – The SQL functions COMPRESS() applies zlib‘s deflate to any text orBLOB value. The raw deflate data stream is returned. UNCOMPRESS() inflates this stream back to the original. Integers, Doubles, and Nulls are returned unchanged.
  • Compact Result Storage – The internal data storage mechanism uses SQLite‘s native data types for optimal compatibility. As a result, SQLiteSpy uses far less memory than other SQLite managers and handles large tables much more efficiently.
  • Built-in SQLite Engine – SQLiteSpy comes as a single file executable with the SQLite database engine already build into the application. There is no need to distribute anyDLLs, which makes SQLiteSpy easy to deploy with customers.
  • Encryption Support – SQLiteSpy can read and modify encrypted database files generated by DISQLite3DISQLite3 implements its own native AES encryption which is not compatible with the commercial SQLite Encryption Extension (SSE) or any such implementation offered by other 3rd parties.
  • Loadable Extensions – SQLiteSpy loads runtime extension modules compiled with with "fastcall" (C++ Builder) or "register" (Delphi) calling conventions. Extensions can be loaded for the current database via SELECT load_extension(‘FileName.dll‘); or automatically for all databases by entering extension file names to the Options dialog.
  • Easy Install & Uninstall – To run SQLiteSpy, just extract the SQLiteSpy.exe file to any directory and execute the file. No installation is needed – when first started, the program creates a single file SQLiteSpy.db3 (a SQLite3 database) to store options and settings. It does not write any other files or to the registry. Uninstalling is as simple as deleting two files only: The application‘s executable and its options database file.
  • Freeware – SQLiteSpy is Freeware for personal and educational use. If you are using SQLiteSpy commercially, your donation is welcome to promote the ongoing development of this software. Thank you!

If you like to contribute to SQLiteSpy: Please post comments, suggestions, feature requests and bug reports to the mailing list. Thanks to all who have already shared their encouragement and ideas!

时间: 2024-11-08 09:18:33

SQLiteSpy - A fast and compact GUI database manager for SQLite的相关文章

[转]Amazon DynamoDB – a Fast and Scalable NoSQL Database Service Designed for Internet Scale Applications

This article is from blog of Amazon CTO Werner Vogels. -------------------- Today is a very exciting day as we release Amazon DynamoDB, a fast, highly reliable and cost-effective NoSQL database service designed for internet scale applications. Dynamo

通过fsharp探索Enterprise Library 6 DataBase 1.3 Sqlite

使用Enterprise Library就是为了尽可能少的开发常用组件.数据库在选择的过程中常会面临部署,版权,个人喜好等诸多考量.最佳的处理方法就是添加一层数据抽象层,再切换Enterprise的过程中进行无缝衔接.由于我的笔记本跑的越来越慢,又想尝试一下使用Sqlite所以,就用Sqlite做例子. 我用的是Enterprise Library 6.0原本以为只需要简单的配置就可以进行实验,没想到GitHub上Sqlite提供的Sqlite兼容组件到Enterprise Library 4.

Using SQLite database in your Windows 10 apps

MVP可以在channel 9上传视频了,所以准备做个英文视频传上去分享给大家,本文做稿子. Hello everyone, As we all know, SQLite is a great and popular local database running one mobile devices. Consider of its powerful and useful features, lots of apps use SQLite database as the main way of 

Android多线程下安全访问数据库(Concurrent Database Access)

Assuming you have your own SQLiteOpenHelper: 1 public class DatabaseHelper extends SQLiteOpenHelper { ... } Now you want to write data to database in separate threads: 1 // Thread 1 2 Context context = getApplicationContext(); 3 DatabaseHelper helper

Kernel parameters for Db2 database server installation (Linux and UNIX)

Db2 11.1 For root installations, the database manager uses a formula to automatically adjust kernel parameter settings and eliminate the need for manual updates to these settings. Before you begin You must have root authority to modify kernel paramet

Android5.0上运行SQLite数据库出现attempt to write a readonly database的解决方案

场景 Jni下编译SQLite源码作为数据库,在测试手机:型号(Redmi Note 2) Android版本(5.0.2 LRX22G)系统下使用,尝试写数据库的时候,返回错误信息:attempt to write a readonly database 解决 在sqlite.c文件中查找 ino_t ino; /* Inode number */ 修改为 unsigned long long ino; /* Inode number */ 错误说明 Store inodes in unsig

pycham database查看db.sqlites文件 无内容解决方法

初学django,使用pycharm IDE的时候,通过使用默认的sqlites数据库,执行问makemigration 和migrate操作之后,控制台正常输出类似如下结果,按照道理应该生成了数据表文件: 文件列表中已经生成了db.sqlite文件,Pycharm右侧有个database工具栏,可以通过此工具查看该文件 打开该工具,把文件拖放到这里,就会现场如图这样的列表: 这个截图是我修复后的截图,原来的没有,原来不正常的是是只显示db 和 Schemas,没有中间的+ schema #1

Web SQL Database实例

1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 </head> 7 <body onload="init()"> 8 <table> 9 <tr> 10 <td>姓名:</td&

Java开源框架推荐(全)

Build Tool Tools which handle the buildcycle of an application. Apache Maven - Declarative build and dependency management which favors convention over configuration. It's preferable to Apache Ant which uses a rather procedural approach and can be di