「Sqlite」の版間の差分
ナビゲーションに移動
検索に移動
| 2行目: | 2行目: | ||
[[Database]] | | [[Database]] | | ||
===管理ツール=== | ===管理ツール=== | ||
| + | ---- | ||
*[[SQLite Database Browser|SQLite Database Browser]] | *[[SQLite Database Browser|SQLite Database Browser]] | ||
*[[SQLiteStudio|SQLiteStudio]] | *[[SQLiteStudio|SQLiteStudio]] | ||
===データ型=== | ===データ型=== | ||
| + | ---- | ||
*http://www.dbonline.jp/[[sqlite]]/type/index1.html | *http://www.dbonline.jp/[[sqlite]]/type/index1.html | ||
*テーブル作成時に、列ごとのデータ型を指定しなくてもよい(混在可能) | *テーブル作成時に、列ごとのデータ型を指定しなくてもよい(混在可能) | ||
| 16行目: | 18行目: | ||
==プログラムからの用例== | ==プログラムからの用例== | ||
| + | ---- | ||
===[[Python]]=== | ===[[Python]]=== | ||
| + | ---- | ||
*[[Python 標準ライブラリ概観|Python sqlite3を利用する]] | *[[Python 標準ライブラリ概観|Python sqlite3を利用する]] | ||
| + | ===[[Excel VBA]]=== | ||
| + | *[https://github.com/govert/SQLiteForExcel SQLiteForExcel] | ||
2021年9月26日 (日) 09:02時点における版
sqlite
Database |
管理ツール
データ型
- http://www.dbonline.jp/sqlite/type/index1.html
- テーブル作成時に、列ごとのデータ型を指定しなくてもよい(混在可能)
- ただし、内部的には、次のいずれかに区別されている。
- 列にデータ型を指定することも可能
<blockquote>INTEGER 型の列が プライマリーキーの場合、値が自動生成される</blockquote>
プログラムからの用例
Python
Excel VBA
© 2006 矢木浩人