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

--no commit message

--no commit message
上级 2ff730e9
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
*/ */
package org.h2.tools; package org.h2.tools;
import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.io.OutputStream; import java.io.OutputStream;
...@@ -116,6 +117,9 @@ public class Backup { ...@@ -116,6 +117,9 @@ public class Backup {
try { try {
in = FileUtils.openFileInputStream(fileName); in = FileUtils.openFileInputStream(fileName);
IOUtils.copyAndCloseInput(in, zipOut); IOUtils.copyAndCloseInput(in, zipOut);
} catch (FileNotFoundException e) {
// the file could have been deleted in the meantime
// ignore this (in this case an empty file is created)
} finally { } finally {
IOUtils.closeSilently(in); IOUtils.closeSilently(in);
} }
......
...@@ -150,14 +150,9 @@ java org.h2.test.TestAll timer ...@@ -150,14 +150,9 @@ java org.h2.test.TestAll timer
/* /*
find send mail source code?
Roadmap: Roadmap:
History: History:
User defined variables are now supported. Examples: SET @VAR=10;CALL @VAR.
This can be used for running totals as in:
select x, set(@t, ifnull(@t, 0) + x) from system_range(1, 10)
Test Recovery with MAX_LOG_FILE_SIZE=1; test with various log file sizes Test Recovery with MAX_LOG_FILE_SIZE=1; test with various log file sizes
...@@ -169,6 +164,8 @@ Add a link to the google code bug page ...@@ -169,6 +164,8 @@ Add a link to the google code bug page
test DbStarter test DbStarter
find send mail source code?
---- ----
A file is sent although the Japanese translation has not been completed yet. A file is sent although the Japanese translation has not been completed yet.
---- ----
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论