sqlite相关工具使用

sqlite3可视化工具

1、sudo apt-get install sqlitebrowser

2、sudo apt-get install sqliteman

3、sqlitestudio需要去官网下载(我这里不管是2x还是3x都无法编译通过,不知道其具体原因)(注:2x gui使用tk tcl, 3x gui使用qt并用c++重写)
所以就直接下载编译好的程序,在运行时如果有如下错误:

yingc@yingc:~/git/sqlitestudio$ ./sqlitestudio-2.1.5.bin
couldn't load file "/tmp/tclPVerDP": libXss.so.1: cannot open shared object file: No such file or directory
    while executing
"load /home/yingc/git/sqlitestudio/sqlitestudio-2.1.5.bin/lib/tk8.5/../libtk8.5.so Tk"
    ("package ifneeded Tk 8.5.12" script)
    invoked from within
"package require Tk 8.5.11"
    invoked from within
"set ::PKG(Tk) [package require Tk 8.5.11]"
    (file "/home/yingc/git/sqlitestudio/sqlitestudio-2.1.5.bin/lib/sqlitestudio/main.tcl" line 213)
    invoked from within
"source /home/yingc/git/sqlitestudio/sqlitestudio-2.1.5.bin/lib/sqlitestudio/main.tcl"
    ("package ifneeded sqlitestudio 2.1.5" script)
    invoked from within
"package require sqlitestudio"
    (file "/home/yingc/git/sqlitestudio/sqlitestudio-2.1.5.bin/main.tcl" line 6)

处理方案:
sudo apt-get install -y libtcltk-ruby
原文地址:https://www.cnblogs.com/jingzhishen/p/6053548.html