sqlite
https://en.wikipedia.org/wiki/sqlite
sqlite (@H_404_14@/??s?kju???l?la?t/,[4]@H_404_14@/?si?kw?l.la?t/[5]) is a relational database management system contained in a C programming library. In contrast to many other database management systems,sqlite is not a client–server database engine. Rather,it is embedded into the end program.
http://www.runoob.com/sqlite/sqlite-tutorial.html
sqlite 是一个软件库,实现了自给自足的、无服务器的、零配置的、事务性的 sql 数据库引擎。sqlite 是在世界上最广泛部署的 sql 数据库引擎。sqlite 源代码不受版权限制。
小巧玲珑,又不失关系数据库的功能, 使得其成为一个部署广泛的嵌入式数据库, 可以嵌入到任何一个应用程序中使用。
https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/001432010494717e1db78cd172e4d52b853e7fd38d6985c000
sqlite是一种嵌入式数据库,它的数据库就是一个文件。由于sqlite本身是C写的,而且体积很小,所以,经常被集成到各种应用程序中,甚至在iOS和Android的App中都可以集成。
DJango内置的演示数据库,或者开发情况下使用的数据库,就是使用这个软件。
管理工具:
此网页推荐5个
https://www.oschina.net/news/43608/5-popular-and-free-sqlite-management-tools
亲自尝试, 使用sqlite Administrator挺好用的。下载之后,绿色直接可用。
https://sqliteadmin.orbmu2k.de/
Features:
- Create / Modify / Delete Tables by Wizard
- Create / Modify / Delete Indices by Wizard
- Create / Modify / Delete Views by Wizard
- Create / Modify / Delete Triggers by Wizard
- sql Code Completion that supports table aliases
- sql Code Highlighting
- sql Error Locating
- Import Data from CSV Files
- Export Data ( XLS / CSV / HTML / XML )
- Store User Queries into Database
- Search for User Queries
- Store Images into Blob Fields ( JPG / BMP )
- Show sql of each Database Item
- Migrate sqlite2 Databases to sqlite3
- Try to keep Indices and Triggers after modifying a Table