Add SQLite page

This commit is contained in:
James Skemp 2023-08-13 20:21:59 -05:00
parent a0abaf6b81
commit 7a71d6dcaa
2 changed files with 13 additions and 0 deletions

View File

@ -12,6 +12,7 @@
- [macOS Commands](./macos.md)
- [T-SQL](./tsql.md)
- [PostgreSQL](./postgresql.md)
- [SQLite](./sqlite.md)
- [Angular](./angular.md)
- [.NET](./dotnet.md)
- [Go](./golang.md)

12
src/sqlite.md Normal file
View File

@ -0,0 +1,12 @@
# SQLite
For a CLI on Windows, [download](https://www.sqlite.org/download.html) sqlite-tools-win32-x86-___.zip
## Import a tsv file into a new database.
This assumes the tsv has a header row.
```powershell
.open files.sqlite3
.mode tabs
.import files.tsv files
```