Skip to content

Commit 3c6c194

Browse files
authored
Introduce SQLite3 support (#16)
* treewide: bring initial sqlite support * add_component: introduce support for sqlite3 types * add_components: cleanup debug code * login: don't generate sqlite file if don't exists * sidebar: ts support and remove new db button in sqlite * readme: update readme
1 parent 59647a4 commit 3c6c194

File tree

19 files changed

+1449
-247
lines changed

19 files changed

+1449
-247
lines changed

.gitignore

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1+
# MacOS file
12
.DS_Store
3+
4+
# Node modules
25
node_modules
3-
/build
6+
7+
8+
# Sveltekit temp folder
49
/.svelte-kit
510
/package
11+
12+
# Configurations
613
.env
714
.env.*
815
!.env.example
9-
.vercel
10-
.output
11-
*.zip
16+
17+
18+
# Build artifacts
19+
*.zip
20+
/build
21+
22+
# Test DB sqlite3
23+
test.db

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66

77
## Porting of phpMyAdmin to Node.JS
88

9-
nodeMyAdmin want to replace phpMyAdmin using Sveltekit instead of the old PHP.
9+
A svelte-kit based alternative to phpMyAdmin with multi DB support
1010

1111
# Features
1212

1313
- MySQL/MariaDB support
1414
- PostgreSQL beta support(Modify record is currently broken and don't change record, Search in table return all records, delete records is broken and delete all records BE CAREFUL, Add table don't work)
1515
- MSSQL support
16+
- SQLite3 support
1617
- Creation of database
1718
- Creation of tables
1819
- View records or structure of tables, Add records, Search in tables, Truncate and Drop a table

0 commit comments

Comments
 (0)