mirror of
https://github.com/Wisser/Jailer.git
synced 2026-05-21 03:18:11 -05:00
Updated H2 DBMS from version 1.3.160 to 1.3.175
This commit is contained in:
+2
-2
@@ -12,8 +12,8 @@ Informix Dynamic Server;jdbc:informix-sqli://<HOST>:<PORT>/<DB>:INFORMIXSERVER=<
|
||||
InstantDB (v3.13 and earlier);jdbc:idb:<DB>;jdbc.idbDriver
|
||||
InstantDB (v3.14 and later);jdbc:idb:<DB>;org.enhydra.instantdb.jdbc.idbDriver
|
||||
Interbase (InterClient Driver);jdbc:interbase://<HOST>/<DB>;interbase.interclient.Driver
|
||||
H2 embedded (Java SQL database);jdbc:h2:<DB-File>;org.h2.Driver;lib/h2-1.3.160.jar
|
||||
H2 TCP (Java SQL database);jdbc:h2:tcp://<HOST>/<DB-File>;org.h2.Driver;lib/h2-1.3.160.jar
|
||||
H2 embedded (Java SQL database);jdbc:h2:<DB-File>;org.h2.Driver;lib/h2-1.3.175.jar
|
||||
H2 TCP (Java SQL database);jdbc:h2:tcp://<HOST>/<DB-File>;org.h2.Driver;lib/h2-1.3.175.jar
|
||||
HyperSQL;jdbc:hsqldb:<file|hsql|http>:<DB>;org.hsqldb.jdbcDriver
|
||||
# Microsoft SQL Server (jTDS);jdbc:jtds:sqlserver://<server>[:<port>][/<database>];net.sourceforge.jtds.jdbc.Driver;lib/jtds-1.3.1.jar
|
||||
# Microsoft SQL Server (JTurbo Driver);jdbc:JTurbo://<HOST>:<PORT>/<DB>;com.ashna.jturbo.driver.Driver
|
||||
|
||||
|
Binary file not shown.
@@ -42,7 +42,7 @@ public class APIExample {
|
||||
new BasicDataSource(
|
||||
"org.h2.Driver", "jdbc:h2:demo-scott", "sa", "",
|
||||
POOL_SIZE,
|
||||
new File("lib/h2-1.3.160.jar")),
|
||||
new File("lib/h2-1.3.175.jar")),
|
||||
null,
|
||||
APIExample.class.getResource("Demo-Scott"),
|
||||
APIExample.class.getResource("Demo-Scott.csv"),
|
||||
@@ -54,7 +54,7 @@ public class APIExample {
|
||||
new BasicDataSource(
|
||||
"org.h2.Driver", "jdbc:h2:demo-scott-subset", "sa", "",
|
||||
10,
|
||||
new File("lib/h2-1.3.160.jar")));
|
||||
new File("lib/h2-1.3.175.jar")));
|
||||
|
||||
/**
|
||||
* Exports data related with employee "SCOTT"
|
||||
|
||||
@@ -32,7 +32,7 @@ public class LocalDatabaseConfiguration {
|
||||
private String password = "";
|
||||
|
||||
private String driver = "org.h2.Driver";
|
||||
private String lib = "lib/h2-1.3.160.jar";
|
||||
private String lib = "lib/h2-1.3.175.jar";
|
||||
|
||||
/**
|
||||
* @return the localPKType
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<!-- Configuration of the local database -->
|
||||
<localDatabase>
|
||||
<databaseFolder>local</databaseFolder>
|
||||
<lib>lib/h2-1.3.160.jar</lib>
|
||||
<lib>lib/h2-1.3.175.jar</lib>
|
||||
<driver>org.h2.Driver</driver>
|
||||
<urlPattern>jdbc:h2:%s;LOG=0;UNDO_LOG=0</urlPattern>
|
||||
<localPKType>VARCHAR</localPKType>
|
||||
@@ -1127,6 +1127,7 @@ union all
|
||||
<binaryPattern>x'%s'</binaryPattern>
|
||||
<avoidLeftJoin>false</avoidLeftJoin>
|
||||
<useInlineViewsInDataBrowser>false</useInlineViewsInDataBrowser>
|
||||
<estimatedRowCountQuery>select TABLE_NAME, ROW_COUNT_ESTIMATE from INFORMATION_SCHEMA.TABLES where TABLE_SCHEMA = '%s'</estimatedRowCountQuery>
|
||||
<virtualColumnsQuery>SELECT TABLE_NAME, COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA='${SCHEMA}' AND IS_COMPUTED</virtualColumnsQuery>
|
||||
<identifierQuoteString>"</identifierQuoteString>
|
||||
<explainPrepare></explainPrepare>
|
||||
|
||||
@@ -526,7 +526,7 @@ public class DbConnectionDialog extends javax.swing.JDialog {
|
||||
ConnectionInfo ci = new ConnectionInfo(executionContext);
|
||||
ci.alias = "Demo Scott";
|
||||
ci.driverClass = "org.h2.Driver";
|
||||
ci.jar1 = "lib" + File.separator + "h2-1.3.160.jar";
|
||||
ci.jar1 = "lib" + File.separator + "h2-1.3.175.jar";
|
||||
ci.url = "jdbc:h2:" + Environment.newFile("demo-scott").getPath();
|
||||
ci.user = "sa";
|
||||
ci.password = "";
|
||||
@@ -538,7 +538,7 @@ public class DbConnectionDialog extends javax.swing.JDialog {
|
||||
ConnectionInfo ci = new ConnectionInfo(executionContext);
|
||||
ci.alias = "Demo Sakila";
|
||||
ci.driverClass = "org.h2.Driver";
|
||||
ci.jar1 = "lib" + File.separator + "h2-1.3.160.jar";
|
||||
ci.jar1 = "lib" + File.separator + "h2-1.3.175.jar";
|
||||
ci.url = "jdbc:h2:" + Environment.newFile("demo-sakila").getPath();
|
||||
ci.user = "sa";
|
||||
ci.password = "";
|
||||
|
||||
Reference in New Issue
Block a user