File tree 1 file changed +28
-0
lines changed
docs/guide-devel/src/main/asciidoc/chapters
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,34 @@ Maritme
182
182
|LONGVARBINARY |16MB = 16777215 bits
183
183
|====
184
184
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
+
185
213
=== References
186
214
187
215
* https://mariadb.com/kb/en/silent-column-changes/
You can’t perform that action at this time.
0 commit comments