[HOME]: [Mac OS X]: [MacPython]: [Emacs]: [生存報告記]:

SQLite

目次

概要

公式サイト

関連サイト

インストール

SQlite3 full-text-search and some python on OSX | Confessions of acat

SQLite CVSTrac

curl -O http://www.sqlite.org/sqlite-3.6.20.tar.gz
tar xvfz sqlite-3.6.20.tar.gz
cd sqlite-3.6.20
CFLAGS="-DSQLITE_ENABLE_FTS3=1" ./configure
make
sudo make install

sqlite3
create virtual table t using fts3;

設定

利用方法

GUI

Emacs

Emacs29以上であれば、以下のコマンドでDBファイルを開くとsqlite-modeが開始する

M-x sqlite-mode-open-file

TUI

基本操作は標準添付のsqlite3コマンドで問題ないはずだが、高度な操作は他のツールがあった方が良いかもしれない

自分はDB操作はEmacsで操作してしまうが、TUIも検討中

メモ

litestream

参考サイト


CategoryDatabase