Stay Hungry,Stay Foolish!

SQLite

SQLite

https://en.wikipedia.org/wiki/SQLite

SQLite (/ˌɛsˌkjuːˌɛlˈlt/,[4] /ˈskwəl.lt/[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中都可以集成。

Python就内置了SQLite3,所以,在Python中使用SQLite,不需要安装任何东西,直接使用。

DJango内置的演示数据库,或者开发情况下使用的数据库,就是使用这个软件。

 

管理工具:

此网页推荐5个

https://www.oschina.net/news/43608/5-popular-and-free-sqlite-management-tools

 

亲自尝试, 使用SQLite Administrator挺好用的。下载之后,绿色直接可用。

https://sqliteadmin.orbmu2k.de/

支持csv文件在导入到表格中。

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

另一个工具:

https://sqlitebrowser.org/blog/version-3-11-2-released/

 

posted @ 2019-04-22 23:43  lightsong  阅读(548)  评论(0编辑  收藏  举报
Life Is Short, We Need Ship To Travel