Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
swdev:sqlite:start [2018/04/26 21:33] smayr [Create Database] |
swdev:sqlite:start [2018/07/18 14:07] (current) smayr [References] |
||
---|---|---|---|
Line 3: | Line 3: | ||
* [[http:// | * [[http:// | ||
* [[http:// | * [[http:// | ||
+ | * [[https:// | ||
Line 21: | Line 22: | ||
$ sqlite3 mydatabase.db | $ sqlite3 mydatabase.db | ||
sqlite> CREATE TABLE product ( | sqlite> CREATE TABLE product ( | ||
- | | + | |
- | | + | |
| | ||
| | ||
Line 35: | Line 36: | ||
sqlite> .import C:/ | sqlite> .import C:/ | ||
</ | </ | ||
+ | |||
+ | == Alter Table == | ||
+ | <code bash> | ||
+ | ALTER TABLE table_name | ||
+ | ADD new_column_name column_definition; | ||
+ | </ | ||
+ | |||
+ | == SQLite Client == | ||
+ | * [[swdev: | ||
== References == | == References == | ||
* CLI: [[http:// | * CLI: [[http:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// |