Skip to content

Commit 6ce3f00

Browse files
Mateusz Czeladkaclaude
andcommitted
docs: add H2 database connection documentation for test data
Added README.md with instructions for connecting to the devkit H2 database, including connection details and usage examples. Updated devkit database file. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 1832fe3 commit 6ce3f00

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

testData/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# H2 Database Connection
2+
3+
## Connecting to Local H2 Database
4+
5+
To connect to the local H2 database using the H2 Shell:
6+
7+
```bash
8+
java -cp h2-2.2.224.jar org.h2.tools.Shell
9+
```
10+
11+
When prompted, enter the following connection details:
12+
13+
```
14+
URL: jdbc:h2:./devkit.db
15+
Driver: [Enter] (org.h2.Driver - default)
16+
User: rosetta_db_admin
17+
Password: weakpwd#123
18+
```
19+
20+
Once connected, you can run SQL commands such as:
21+
22+
```sql
23+
show tables;
24+
```

testData/devkit.db.mv.db

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)