Skip to content

Commit f6afc88

Browse files
committed
DOC: information about connection
1 parent 8ffdd40 commit f6afc88

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

docs/guide-devel/src/main/asciidoc/chapters/database-overview.adoc

+28
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,34 @@ Maritme
182182
|LONGVARBINARY |16MB = 16777215 bits
183183
|====
184184

185+
=== Connection
186+
187+
.Connection MySQL
188+
----
189+
com.mysql.cj.jdbc.Driver
190+
jdbc:mysql://localhost:3306/kriolopos?characterEncoding=utf8
191+
----
192+
193+
.Connection MariaDB
194+
----
195+
org.mariadb.jdbc.Driver
196+
jdbc:mariadb://localhost:3306/kriolopos?characterEncoding=utf8
197+
jdbc:mariadb://localhost:3306/{DB_SCHEMA_NAME}?characterEncoding=utf8
198+
----
199+
200+
.Connection HSQLDB
201+
----
202+
org.hsqldb.jdbcDriver
203+
jdbc:hsqldb:file:C:\Users\kriol\kriolopos-db;shutdown=true
204+
jdbc:hsqldb:file:" + (new File(new File(System.getProperty("user.home")), AppLocal.APP_DB + "-db")).getAbsolutePath() + ";shutdown=true"
205+
----
206+
207+
.Connection
208+
----
209+
jdbc:derby:~/kriolospos/posdb;create=true
210+
----
211+
212+
185213
=== References
186214

187215
* https://mariadb.com/kb/en/silent-column-changes/

0 commit comments

Comments
 (0)