Contents
H2
The main features of H2 are:
- Very fast, open source, JDBC API
- Embedded and server modes; in-memory databases
- Browser based Console application
- Small footprint: around 2.5 MB jar file size
SpringBoot
pom.xml
application.yaml
Use H2 database
Toggle line numbers
1 java -cp h2-2.3.232.jar org.h2.tools.Shell -url "jdbc:h2:file:./chucknorrisdb" -user "xx" -password "xx"
2 show tables;
3 select * from tablex;
4 exit