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

--no commit message

--no commit message
上级 b47d3936
......@@ -21,17 +21,17 @@ import org.h2.message.TraceObject;
import org.h2.util.IOUtils;
import org.h2.value.Value;
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
import java.sql.NClob;
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Represents a CLOB value.
*/
public class JdbcClob extends TraceObject implements Clob
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
, NClob
//## Java 1.6 end ##
## Java 1.6 end ##*/
{
private Value value;
......
......@@ -43,13 +43,13 @@ import org.h2.value.ValueLob;
import org.h2.value.ValueNull;
import org.h2.value.ValueString;
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
import java.sql.Array;
import java.sql.NClob;
import java.sql.Struct;
import java.sql.SQLXML;
import java.sql.SQLClientInfoException;
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* <p>
......@@ -1362,7 +1362,7 @@ public class JdbcConnection extends TraceObject implements Connection {
*
* @return the object
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public NClob createNClob() throws SQLException {
try {
int id = getNextId(TraceObject.CLOB);
......@@ -1374,36 +1374,36 @@ public class JdbcConnection extends TraceObject implements Connection {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Create a new empty SQLXML object.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public SQLXML createSQLXML() throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Create a new empty Array object.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public Array createArrayOf(String typeName, Object[] elements)
throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Create a new empty Struct object.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public Struct createStruct(String typeName, Object[] attributes)
throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Returns true if this connection is still valid.
......@@ -1426,61 +1426,61 @@ public class JdbcConnection extends TraceObject implements Connection {
/**
* [Not supported] Set a client property.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void setClientInfo(String name, String value)
throws SQLClientInfoException {
throw new SQLClientInfoException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Set the client properties.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void setClientInfo(Properties properties) throws SQLClientInfoException {
throw new SQLClientInfoException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Get the client properties.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public Properties getClientInfo() throws SQLClientInfoException {
throw new SQLClientInfoException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Set a client property.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public String getClientInfo(String name) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Return an object of this class if possible.
*
* @param iface the class
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public <T> T unwrap(Class<T> iface) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Checks if unwrap can return an object of this class.
*
* @param iface the class
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public boolean isWrapperFor(Class< ? > iface) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Create a clob value from this reader.
......
......@@ -10,9 +10,9 @@ import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
import java.sql.RowIdLifetime;
//## Java 1.6 end ##
## Java 1.6 end ##*/
import java.sql.SQLException;
import org.h2.constant.SysProperties;
......@@ -2698,23 +2698,23 @@ public class JdbcDatabaseMetaData extends TraceObject implements DatabaseMetaDat
*
* @return ROWID_UNSUPPORTED
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public RowIdLifetime getRowIdLifetime() {
debugCodeCall("getRowIdLifetime");
return RowIdLifetime.ROWID_UNSUPPORTED;
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Gets the list of schemas.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public ResultSet getSchemas(String catalog, String schemaPattern)
throws SQLException {
debugCodeCall("getSchemas");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Returns whether the database supports calling functions using the call syntax.
......@@ -2747,45 +2747,45 @@ public class JdbcDatabaseMetaData extends TraceObject implements DatabaseMetaDat
/**
* [Not supported] Return an object of this class if possible.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public <T> T unwrap(Class<T> iface) throws SQLException {
debugCodeCall("unwrap");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Checks if unwrap can return an object of this class.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public boolean isWrapperFor(Class< ? > iface) throws SQLException {
debugCodeCall("isWrapperFor");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Gets the list of function columns.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public ResultSet getFunctionColumns(String catalog, String schemaPattern,
String functionNamePattern, String columnNamePattern)
throws SQLException {
debugCodeCall("getFunctionColumns");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Gets the list of functions.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public ResultSet getFunctions(String catalog, String schemaPattern,
String functionNamePattern) throws SQLException {
debugCodeCall("getFunctions");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* INTERNAL
......
......@@ -218,22 +218,22 @@ implements ParameterMetaData
/**
* [Not supported] Return an object of this class if possible.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public <T> T unwrap(Class<T> iface) throws SQLException {
debugCodeCall("unwrap");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Checks if unwrap can return an object of this class.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public boolean isWrapperFor(Class< ? > iface) throws SQLException {
debugCodeCall("isWrapperFor");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* INTERNAL
......
......@@ -50,11 +50,11 @@ import org.h2.value.ValueString;
import org.h2.value.ValueTime;
import org.h2.value.ValueTimestamp;
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
import java.sql.RowId;
import java.sql.NClob;
import java.sql.SQLXML;
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Represents a prepared statement.
......@@ -1231,11 +1231,11 @@ public class JdbcPreparedStatement extends JdbcStatement implements PreparedStat
/**
* [Not supported] Sets the value of a parameter as a row id.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void setRowId(int parameterIndex, RowId x) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Sets the value of a parameter.
......@@ -1295,7 +1295,7 @@ public class JdbcPreparedStatement extends JdbcStatement implements PreparedStat
* @param x the value
* @throws SQLException if this object is closed
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void setNClob(int parameterIndex, NClob x) throws SQLException {
try {
if (isDebugEnabled()) {
......@@ -1313,7 +1313,7 @@ public class JdbcPreparedStatement extends JdbcStatement implements PreparedStat
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Sets the value of a parameter as a Clob.
......@@ -1398,11 +1398,11 @@ public class JdbcPreparedStatement extends JdbcStatement implements PreparedStat
/**
* [Not supported] Sets the value of a parameter as a SQLXML object.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void setSQLXML(int parameterIndex, SQLXML x) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* INTERNAL
......
......@@ -26,11 +26,11 @@ import java.util.Calendar;
import java.util.HashMap;
import java.util.Map;
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
import java.sql.NClob;
import java.sql.RowId;
import java.sql.SQLXML;
//## Java 1.6 end ##
## Java 1.6 end ##*/
import org.h2.constant.ErrorCode;
import org.h2.constant.SysProperties;
......@@ -3053,22 +3053,22 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
*
* @param columnIndex (1,2,...)
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public RowId getRowId(int columnIndex) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Returns the value of the specified column as a row id.
*
* @param columnName the name of the column label
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public RowId getRowId(String columnName) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Updates a column in the current or insert row.
......@@ -3076,11 +3076,11 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
* @param columnIndex (1,2,...)
* @param x the value
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateRowId(int columnIndex, RowId x) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Updates a column in the current or insert row.
......@@ -3088,11 +3088,11 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
* @param columnName the name of the column label
* @param x the value
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateRowId(String columnName, RowId x) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Returns the current result set holdability.
......@@ -3163,7 +3163,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/**
* [Not supported]
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateNClob(int columnIndex, NClob x) throws SQLException {
try {
if (isDebugEnabled()) {
......@@ -3174,12 +3174,12 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported]
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateNClob(int columnIndex, Reader x) throws SQLException {
try {
if (isDebugEnabled()) {
......@@ -3190,12 +3190,12 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported]
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateNClob(int columnIndex, Reader x, long length)
throws SQLException {
try {
......@@ -3207,12 +3207,12 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported]
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateNClob(String columnName, Reader x)
throws SQLException {
try {
......@@ -3224,12 +3224,12 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported]
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateNClob(String columnName, Reader x, long length)
throws SQLException {
try {
......@@ -3241,12 +3241,12 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported]
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateNClob(String columnName, NClob x) throws SQLException {
try {
if (isDebugEnabled()) {
......@@ -3257,7 +3257,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
......@@ -3267,7 +3267,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
* @return the value
* @throws SQLException if the column is not found or if the result set is closed
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public NClob getNClob(int columnIndex) throws SQLException {
try {
int id = getNextId(TraceObject.CLOB);
......@@ -3278,7 +3278,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Returns the value of the specified column as a Clob.
......@@ -3287,7 +3287,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
* @return the value
* @throws SQLException if the column is not found or if the result set is closed
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public NClob getNClob(String columnName) throws SQLException {
try {
int id = getNextId(TraceObject.CLOB);
......@@ -3298,45 +3298,45 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
throw logAndConvert(e);
}
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Returns the value of the specified column as a SQLXML object.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public SQLXML getSQLXML(int columnIndex) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Returns the value of the specified column as a SQLXML object.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public SQLXML getSQLXML(String columnName) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Updates a column in the current or insert row.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateSQLXML(int columnIndex, SQLXML xmlObject)
throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Updates a column in the current or insert row.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void updateSQLXML(String columnName, SQLXML xmlObject)
throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Returns the value of the specified column as a String.
......@@ -3473,22 +3473,22 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/**
* [Not supported] Return an object of this class if possible.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public <T> T unwrap(Class<T> iface) throws SQLException {
debugCode("unwrap");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Checks if unwrap can return an object of this class.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public boolean isWrapperFor(Class< ? > iface) throws SQLException {
debugCode("isWrapperFor");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* INTERNAL
......
......@@ -431,22 +431,22 @@ public class JdbcResultSetMetaData extends TraceObject implements ResultSetMetaD
/**
* [Not supported] Return an object of this class if possible.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public <T> T unwrap(Class<T> iface) throws SQLException {
debugCodeCall("unwrap");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Checks if unwrap can return an object of this class.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public boolean isWrapperFor(Class< ? > iface) throws SQLException {
debugCodeCall("isWrapperFor");
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* INTERNAL
......
......@@ -871,20 +871,20 @@ public class JdbcStatement extends TraceObject implements Statement {
/**
* [Not supported] Return an object of this class if possible.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public <T> T unwrap(Class<T> iface) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Checks if unwrap can return an object of this class.
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public boolean isWrapperFor(Class< ? > iface) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* Returns whether this object is poolable.
......
......@@ -25,9 +25,9 @@ import javax.sql.XADataSource;
import org.h2.jdbc.JdbcConnection;
import org.h2.message.TraceObject;
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
import org.h2.message.Message;
//## Java 1.6 end ##
## Java 1.6 end ##*/
import org.h2.util.StringUtils;
/**
......@@ -341,22 +341,22 @@ implements XADataSource, DataSource, ConnectionPoolDataSource, Serializable, Ref
*
* @param iface the class
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public <T> T unwrap(Class<T> iface) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Checks if unwrap can return an object of this class.
*
* @param iface the class
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public boolean isWrapperFor(Class< ? > iface) throws SQLException {
throw Message.getUnsupportedException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* INTERNAL
......
......@@ -28,9 +28,9 @@ import org.h2.util.StringUtils;
import org.h2.message.TraceObject;
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
import javax.sql.StatementEventListener;
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* This class provides support for distributed transactions.
......@@ -397,22 +397,22 @@ implements XAConnection, XAResource, JdbcConnectionListener
*
* @param listener the new statement event listener
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void addStatementEventListener(StatementEventListener listener) {
throw new UnsupportedOperationException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* [Not supported] Remove a statement event listener.
*
* @param listener the statement event listener
*/
//## Java 1.6 begin ##
/*## Java 1.6 begin ##
public void removeStatementEventListener(StatementEventListener listener) {
throw new UnsupportedOperationException();
}
//## Java 1.6 end ##
## Java 1.6 end ##*/
/**
* INTERNAL
......
......@@ -5,7 +5,7 @@ a.lynxNotSupported=Web taray&\#305;c&\#305;n&\#305;z HTML Frames'i desteklemiyor
a.password=&\#350;ifre
a.remoteConnectionsDisabled=Ba&\#351;ka bilgisayarlardan, veri taban&\#305;na ba&\#287;lanma izni hen&\#252;z ayarlanmam&\#305;&\#351; ('webAllowOthers').
a.title=H2 Konsolu
a.tools=\#Tools
a.tools=Ara&\#231;lar
a.user=Kullan&\#305;c&\#305; ad&\#305;
admin.executing=Aktif
admin.ip=IP
......@@ -29,8 +29,8 @@ adminSave=Kaydet
adminSessions=Aktif ba&\#287;lant&\#305;lar
adminShutdown=Kapat
adminTitle=H2 Konsol ayarlar&\#305;
adminTranslateHelp=\#Translate or improve the translation of the H2 Console.
adminTranslateStart=\#Translate
adminTranslateHelp=H2 Kullan&\#305;c&\#305; aray&\#252;z&\#252;n&\#252; (H2 Konsol) dilinize &\#231;evirin yada &\#231;eviriyi d&\#252;zeltin.
adminTranslateStart=&\#199;eviri
helpAction=Aksiyon
helpAddAnotherRow=Yeni bir sat&\#305;r ekle
helpAddDrivers=Veritaban&\#305; s&\#252;r&\#252;c&\#252;s&\#252; ekle
......@@ -57,7 +57,7 @@ login.driverNotFound=&\#304;stenilen veri taban&\#305; s&\#252;r&\#252;c&\#252;s
login.goAdmin=Se&\#231;enekler
login.jdbcUrl=JDBC URL
login.language=Dil
login.login=Gir
login.login=Giri&\#351;
login.remove=Sil
login.save=Kaydet
login.savedSetting=Kay&\#305;tl&\#305; ayarlar
......@@ -96,45 +96,45 @@ toolbar.refresh=G&\#252;ncelle&\#351;tir
toolbar.rollback=De&\#287;i&\#351;iklikleri geri al
toolbar.run=&\#304;&\#351;lemi y&\#252;r&\#252;t
toolbar.sqlStatement=SQL komutu
tools.backup=\#Backup
tools.backup.help=\#Creates a backup of a database.
tools.changeFileEncryption=\#ChangeFileEncryption
tools.changeFileEncryption.help=\#Allows changing the database file encryption password and algorithm.
tools.cipher=\#Cipher (AES or XTEA)
tools.commandLine=\#Command line
tools.convertTraceFile=\#ConvertTraceFile
tools.convertTraceFile.help=\#Converts a .trace.db file to a Java application and SQL script.
tools.createCluster=\#CreateCluster
tools.createCluster.help=\#Creates a cluster from a standalone database.
tools.databaseName=\#Database name
tools.decryptionPassword=\#Decryption password
tools.deleteDbFiles=\#DeleteDbFiles
tools.deleteDbFiles.help=\#Deletes all files belonging to a database.
tools.directory=\#Directory
tools.encryptionPassword=\#Encryption password
tools.javaDirectoryClassName=\#Java directory and class name
tools.recover=\#Recover
tools.recover.help=\#Helps recovering a corrupted database.
tools.restore=\#Restore
tools.restore.help=\#Restores a database backup.
tools.result=\#Result
tools.run=\#Run
tools.runScript=\#RunScript
tools.runScript.help=\#Runs a SQL script.
tools.script=\#Script
tools.script.help=\#Allows to convert a database to a SQL script for backup or migration.
tools.scriptFileName=\#Script file name
tools.serverList=\#Server list
tools.sourceDatabaseName=\#Source database name
tools.sourceDatabaseURL=\#Source database URL
tools.sourceDirectory=\#Target directory
tools.sourceFileName=\#Source file name
tools.sourceScriptFileName=\#Source script file name
tools.targetDatabaseName=\#Target database name
tools.targetDatabaseURL=\#Target database URL
tools.targetFileName=\#Target file name
tools.targetScriptFileName=\#Target script file name
tools.traceFileName=\#Trace file name
tools.backup=Yedekle
tools.backup.help=Bir veritaban&\#305;n&\#305;n yedeklemesini yapar.
tools.changeFileEncryption=DosyaKodla
tools.changeFileEncryption.help=Veritaban&\#305;n&\#305;n dosya kodlama &\#351;ifresi ve t&\#252;r&\#252;n&\#252; belirler.
tools.cipher=&\#350;ifreleme t&\#252;r&\#252; (AES yada XTEA)
tools.commandLine=Komut
tools.convertTraceFile=TraceDosyasiD&\#246;n&\#252;&\#351;t&\#252;r
tools.convertTraceFile.help=Verilen bir trace.db dosyas&\#305;n&\#305; Java uygulamas&\#305;na ve SQL-Beti&\#287;e &\#231;evirir.
tools.createCluster=K&\#252;meYarat
tools.createCluster.help=Ba&\#287;&\#305;ms&\#305;z bir veritaban&\#305;ndan bir k&\#252;me (Cluster) yarat&\#305;r.
tools.databaseName=Veritaban&\#305;n&\#305;n ad&\#305;
tools.decryptionPassword=Kod &\#231;&\#246;zme &\#351;ifresi
tools.deleteDbFiles=Veritaban&\#305;Dosyalar&\#305;n&\#305;Sil
tools.deleteDbFiles.help=Bir veritaban&\#305;na ait b&\#252;t&\#252;n dosyalar&\#305; siler.
tools.directory=Dizelge
tools.encryptionPassword=Kodlama &\#351;ifresi
tools.javaDirectoryClassName=Java dizelge ve s&\#305;n&\#305;f ad&\#305;
tools.recover=Kurtar
tools.recover.help=Bozuk bir veritaban&\#305;n&\#305;n kurtar&\#305;lmas&\#305;na yard&\#305;mc&\#305; olur.
tools.restore=YenidenY&\#252kle
tools.restore.help=Bir veritaban&\#305;n&\#305;n yedeklemesini yeniden y&\#252;kler.
tools.result=Sonu&\#231;
tools.run=&\#304;&\#351;lemi y&\#252;r&\#252;t
tools.runScript=Betik&\#199;al&\#305;&\#351;t&\#305;r
tools.runScript.help=Bir betik dosyas&\#305; &\#231;al&\#305;&\#351;t&\#305;r&\#305;r.
tools.script=Betik
tools.script.help=Bir veritaban&\#305;n&\#305;n yedekleme yada ta&\#351;&\#305;ma ama&\#231;l&\#305; SQL-Beti&\#287;e &\#231;evrilmesini sa&\#287;lar
tools.scriptFileName=Betik dosya ad&\#305;
tools.serverList=Hizmet&\#231;i listesi
tools.sourceDatabaseName=Kaynak veritaban&\#305;n&\#305;n ad&\#305;
tools.sourceDatabaseURL=Kaynak veritaban&\#305;n&\#305;n URL'u
tools.sourceDirectory=Kaynak dizelge
tools.sourceFileName=Kaynak dosya ad&\#305;
tools.sourceScriptFileName=Kaynak betik dosya ad&\#305;
tools.targetDatabaseName=Hedef veritaban&\#305;n&\#305;n ad&\#305;
tools.targetDatabaseURL=Hedef veritaban&\#305;n&\#305;n URL'u
tools.targetFileName=Hedef dosya ad&\#305;
tools.targetScriptFileName=Hedef betik dosya ad&\#305;
tools.traceFileName=Trace dosya ad&\#305;
tree.admin=Y&\#246;netici
tree.current=G&\#252;ncel de&\#287;er
tree.hashed=Hash tabanl&\#305;
......
......@@ -219,7 +219,7 @@ function update() {
<input type="hidden" name="tool" id="tool" value=""/>
<input type="hidden" name="args" id="args" value=""/>
<h4>${text.tools.commandLine}:</h4>
java -cp h2.jar org.h2.tools.<span id="toolName"></span>
java -cp h2*.jar org.h2.tools.<span id="toolName"></span>
<span id="toolOptions">${tool}</span>
</div>
......
......@@ -1010,9 +1010,11 @@ public abstract class TestBase {
ArrayList list1 = new ArrayList();
ArrayList list2 = new ArrayList();
while (rs1.next()) {
assertTrue(rs2.next());
String s1 = rs1.getString(1);
list1.add(s1);
if (!rs2.next()) {
fail("expected: " + s1);
}
String s2 = rs2.getString(1);
list2.add(s2);
}
......
......@@ -531,11 +531,11 @@ public class TestCases extends TestBase {
stat = conn.createStatement();
ResultSet rs = stat.executeQuery("SELECT * FROM TEST ORDER BY ID");
rs.next();
assertEquals(rs.getInt(1), 1);
assertEquals(rs.getString(2), "Hello");
assertEquals(1, rs.getInt(1));
assertEquals("Hello", rs.getString(2));
rs.next();
assertEquals(rs.getInt(1), 3);
assertEquals(rs.getString(2), "Break");
assertEquals(3, rs.getInt(1));
assertEquals("Break", rs.getString(2));
conn.close();
}
......
......@@ -131,20 +131,20 @@ public class TestIndex extends TestBase {
stat.execute("CREATE INDEX IDX_ND ON TEST(ID DESC)");
rs = conn.getMetaData().getIndexInfo(null, null, "TEST", false, false);
rs.next();
assertEquals(rs.getString("ASC_OR_DESC"), "D");
assertEquals(rs.getInt("SORT_TYPE"), SortOrder.DESCENDING);
assertEquals("D", rs.getString("ASC_OR_DESC"));
assertEquals(SortOrder.DESCENDING, rs.getInt("SORT_TYPE"));
stat.execute("INSERT INTO TEST SELECT X FROM SYSTEM_RANGE(1, 30)");
rs = stat.executeQuery("SELECT COUNT(*) FROM TEST WHERE ID BETWEEN 10 AND 20");
rs.next();
assertEquals(rs.getInt(1), 11);
assertEquals(11, rs.getInt(1));
reconnect();
rs = conn.getMetaData().getIndexInfo(null, null, "TEST", false, false);
rs.next();
assertEquals(rs.getString("ASC_OR_DESC"), "D");
assertEquals(rs.getInt("SORT_TYPE"), SortOrder.DESCENDING);
assertEquals("D", rs.getString("ASC_OR_DESC"));
assertEquals(SortOrder.DESCENDING, rs.getInt("SORT_TYPE"));
rs = stat.executeQuery("SELECT COUNT(*) FROM TEST WHERE ID BETWEEN 10 AND 20");
rs.next();
assertEquals(rs.getInt(1), 11);
assertEquals(11, rs.getInt(1));
stat.execute("DROP TABLE TEST");
conn.close();
}
......
/*
* Copyright 2004-2008 H2 Group. Multiple-Licensed under the H2 License,
* Copyright 2004-2008 H2 Group. Multiple-Licensed under the H2 License,
* Version 1.0, and under the Eclipse Public License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
......@@ -18,16 +18,16 @@ import org.h2.util.ByteUtils;
* removes trailing spaces.
*/
public class CheckTextFiles {
// must contain "+" otherwise this here counts as well
private static final String COPYRIGHT = "Copyright 2004-2008 " + "H2 Group.";
private static final String LICENSE = "Multiple-Licensed " + "under the H2 License";
private static final String[] SUFFIX_CHECK = new String[] { "html", "jsp", "js", "css", "bat", "nsi",
private static final String[] SUFFIX_CHECK = new String[] { "html", "jsp", "js", "css", "bat", "nsi",
"java", "txt", "properties", "sql", "xml", "csv", "Driver" };
private static final String[] SUFFIX_IGNORE = new String[] { "gif", "png", "odg", "ico", "sxd",
private static final String[] SUFFIX_IGNORE = new String[] { "gif", "png", "odg", "ico", "sxd",
"layout", "res", "win", "jar", "task", "svg", "MF", "sh", "DS_Store" };
private boolean failOnError;
private boolean allowTab, allowCR = true, allowTrailingSpaces = true;
private int spacesPerTab = 4;
......@@ -39,7 +39,7 @@ public class CheckTextFiles {
/**
* This method is called when executing this application from the command
* line.
*
*
* @param args the command line parameters
*/
public static void main(String[] args) throws Exception {
......@@ -113,7 +113,7 @@ public class CheckTextFiles {
* copyright, license, incorrect source switches, trailing white space,
* newline characters, tab characters, and characters codes (only characters
* below 128 are allowed).
*
*
* @param file the file to check
* @param fix automatically fix newline characters and trailing spaces
* @param checkLicense check the license and copyright
......
......@@ -572,4 +572,5 @@ localization olivier hprof jps jstack qua processor casting brasilia leap
daylight vision declarative shape formula webapp catalina study impact
statisticlog activeobjects manske redeployment michael kaspersky datatext
bleyl donald conservative offsets diabetes ansorg allocating osmond gluco
joachim mysqladmin sudo mysqld
\ No newline at end of file
joachim mysqladmin sudo mysqld indicator wire ring relates expedites
approximated approximation dvan
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论