提交 a53bdf8b authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 19f3d874
...@@ -15,6 +15,7 @@ wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp ...@@ -15,6 +15,7 @@ wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
wrapper.java.classpath.1=wrapper.jar wrapper.java.classpath.1=wrapper.jar
wrapper.java.classpath.2=../bin/h2.jar wrapper.java.classpath.2=../bin/h2.jar
wrapper.java.classpath.3=%H2DRIVERS% wrapper.java.classpath.3=%H2DRIVERS%
wrapper.java.classpath.4=%CLASSPATH%
# Java Library Path (location of Wrapper.DLL or libwrapper.so) # Java Library Path (location of Wrapper.DLL or libwrapper.so)
wrapper.java.library.path.1= wrapper.java.library.path.1=
......
...@@ -36,6 +36,12 @@ Hypersonic SQL or HSQLDB. H2 is built from scratch. ...@@ -36,6 +36,12 @@ Hypersonic SQL or HSQLDB. H2 is built from scratch.
<h3>Version 1.0 (Current)</h3> <h3>Version 1.0 (Current)</h3>
<h3>Version 1.0 / TODO (Build TODO)</h3><ul>
<li>Deleting database files didn't work for Windows if the database was on the root directory of a drive.
</li><li>The Polish translation is available. Thanks a lot to Tomek!
</li><li>Windows service: the CLASSPATH was not included when starting the service. Fixed.
</ul>
<h3>Version 1.0 / 2007-06-17 (Build 50)</h3><ul> <h3>Version 1.0 / 2007-06-17 (Build 50)</h3><ul>
<li>File names starting with ~ are now in the user directory (Java system property user.home) <li>File names starting with ~ are now in the user directory (Java system property user.home)
</li><li>New Console starter application uses the JDK 1.6 system tray functionality if available, </li><li>New Console starter application uses the JDK 1.6 system tray functionality if available,
......
...@@ -41,9 +41,10 @@ public class ConnectionInfo { ...@@ -41,9 +41,10 @@ public class ConnectionInfo {
} }
// TODO document these settings // TODO document these settings
String[] connectionTime = new String[]{ String[] connectionTime = new String[]{
"PASSWORD", "USER", "STORAGE", "FILE_LOCK", "CIPHER", "DB_CLOSE_ON_EXIT", "ACCESS_MODE_LOG", "ACCESS_MODE_DATA", "AUTOCOMMIT",
"IGNORE_UNKNOWN_SETTINGS", "IFEXISTS", "RECOVER", "CREATE", "CACHE_TYPE", "CIPHER", "CREATE", "CACHE_TYPE",
"ACCESS_MODE_LOG", "ACCESS_MODE_DATA" "DB_CLOSE_ON_EXIT", "FILE_LOCK", "IGNORE_UNKNOWN_SETTINGS", "IFEXISTS",
"PASSWORD", "RECOVER", "STORAGE", "USER"
}; };
for(int i=0; i<connectionTime.length; i++) { for(int i=0; i<connectionTime.length; i++) {
String key = connectionTime[i]; String key = connectionTime[i];
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论