CentOS 8.5にSQLite3.26をインストールする

2021年12月21日

環境
OSバージョンの確認
# cat /etc/redhat-release
CentOS Linux release 8.5.2111

SQLiteのインストールの方法
1.システムパッケージをアップデートします

# sudo dnf update

2.SQLiteをインストールします
# sudo dnf install sqlite

3.SQLiteバージョンを確認します

# sqlite3 -version
3.26.0 2018-12-01 12:34:55 bf8c1b2b7a5960c282e543b9c293686dccff272512d08865f4600fb58238alt1

4.SQLiteを実行します
データベースを作成します

# sqlite3 sample.db
SQLite version 3.26.0 2018-12-01 12:34:55
Enter ".help" for usage hints.
sqlite>

テーブルを作成します(create文)
sqlite> create table usertbl(userid int(5),username varchar(128));

データを挿入します(insert文)
sqlite> insert into usertbl values(10001,’山田太郎’);

データを確認します(select文)
sqlite> select * from usertbl;
10001|山田太郎

5.ログアウト
sqlite> .exit

CentOS8

Posted by arkgame