SQLite3でデータベースを作成する
環境
Windows10 64bit
SQLite 3.37
1.データベースの作成
書式
sqlite3 データベース名
使用例
「info.sqlite3」 という名前のデータベースを作成します
C:\pg\sqlite3>sqlite3 info.sqlite3
SQLite version 3.37.0 2021-11-27 14:13:22
Enter “.help" for usage hints.
sqlite>
2.テーブルの作成
書式
create table テーブル名(カラム1,カラム2,xx);
操作例
sqlite> create table user(uid,uname);
3.接続していたデータベースから切断します
sqlite> .exit
4.データベースへの接続
書式
sqlite3 データベース名
使用例
C:\pg\sqlite3>sqlite3 info.sqlite3
SQLite version 3.37.0 2021-11-27 14:13:22
Enter “.help" for usage hints.
テーブルを確認します
sqlite> .tables
user