Adding JMCR-Stable version
[Benchmarks_CSolver.git] / JMCR-Stable / real-world application / derby-10.3.2.1 / java / tools / org / apache / derby / loc / toolsmessages.properties
diff --git a/JMCR-Stable/real-world application/derby-10.3.2.1/java/tools/org/apache/derby/loc/toolsmessages.properties b/JMCR-Stable/real-world application/derby-10.3.2.1/java/tools/org/apache/derby/loc/toolsmessages.properties
new file mode 100644 (file)
index 0000000..db67e8f
--- /dev/null
@@ -0,0 +1,268 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more\r
+# contributor license agreements.  See the NOTICE file distributed with\r
+# this work for additional information regarding copyright ownership.\r
+# The ASF licenses this file to You under the Apache License, Version 2.0\r
+# (the "License"); you may not use this file except in compliance with\r
+# the License.  You may obtain a copy of the License at\r
+#\r
+#     http://www.apache.org/licenses/LICENSE-2.0\r
+#\r
+# Unless required by applicable law or agreed to in writing, software\r
+# distributed under the License is distributed on an "AS IS" BASIS,\r
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+# See the License for the specific language governing permissions and\r
+# limitations under the License.\r
+\r
+# Directory org/apache/derby/tools\r
+# From JDBCDisplayUtil.java\r
+UT_Error0=\ (errorCode = {0})\r
+UT_NoSqlst=(no SQLState)\r
+UT_NoMessa=(no message)\r
+UT_Error012=ERROR {0}: {1}{2}\r
+UT_NoSqlst_7=(no SQLState)\r
+UT_NoMessa_8=(no message)\r
+UT_Warni01=WARNING {0}: {1}\r
+UT_1RowInserUpdatDelet=1 row inserted/updated/deleted\r
+UT_0RowsInserUpdatDelet={0} rows inserted/updated/deleted\r
+UT_StateExecu=Statement executed.\r
+UT_0RowsSelec={0} rows selected\r
+UT_1RowSelec=1 row selected\r
+UT_Resul0=+ ResultSet #{0} +\r
+UT_JDBCDisplayUtil_16=++++++++++++++++\r
+UT_JDBCDisplayUtil_17=+\r
+UT_NoCurreRow=No current row\r
+UT_NoCurreRow_19=No current row\r
+UT_Resul0_20=ResultSet #{0}\r
+# Directory org/apache/derby/impl/tools/ij\r
+# From Main.java\r
+IJ_IjErroResoNo=IJ ERROR: resource not found: {0}\r
+IJ_IjErroFileNo=IJ ERROR: file not found: {0}\r
+IJ_IjErroUnabTo=IJ ERROR: unable to reset output to: {0}\r
+IJ_IjErroMaxiVa=IJ ERROR: maximumDisplayWidth value {0} is not a value integer.\r
+# From ij.jj\r
+IJ_Pass=PASS\r
+IJ_Fail=FAIL\r
+IJ_Unx=\ **** UNX\r
+IJ_NoConneAvail=No connections available.\r
+IJ_CurreConne=* = current connection\r
+IJ_NoCurreConne=No current connection\r
+IJ_TestsRun0Pass12Fail34=Tests run: {0}   pass: {1} ({2}%)   fail: {3} ({4}%)\r
+IJ_UnexpResulUnx01=***** UNEXPECTED RESULTS,   unx: {0} ({1}%) *****\r
+IJ_HelpText=\\r
+\ \n\\r
+\ Supported commands include:\n\\r
+\ \n\\r
+\  PROTOCOL 'JDBC protocol' [ AS ident ];\n\\r
+\                               -- sets a default or named protocol\n\\r
+\  DRIVER 'class for driver';   -- loads the named class\n\\r
+\  CONNECT 'url for database' [ PROTOCOL namedProtocol ] [ AS connectionName ];\n\\r
+\                               -- connects to database URL\n\\r
+\                               -- and may assign identifier\n\\r
+\  SET CONNECTION connectionName; -- switches to the specified connection\n\\r
+\  SHOW CONNECTIONS;            -- lists all connections\n\\r
+\  AUTOCOMMIT [ ON | OFF ];     -- sets autocommit mode for the connection\n\\r
+\  DISCONNECT [ CURRENT | connectionName | ALL ];\n\\r
+\                               -- drop current, named, or all connections;\n\\r
+\                               -- the default is CURRENT\n\\r
+\ \n\\r
+\  SHOW SCHEMAS;                -- lists all schemas in the current database\n\\r
+\  SHOW [ TABLES | VIEWS | PROCEDURES | SYNONYMS ] { IN schema };\n\\r
+\                               -- lists tables, views, procedures or synonyms\n\\r
+\  SHOW INDEXES { IN schema | FROM table };\n\\r
+\                               -- lists indexes in a schema, or for a table\n\\r
+\  DESCRIBE name;               -- lists columns in the named table\n\\r
+\ \n\\r
+\  COMMIT;                      -- commits the current transaction\n\\r
+\  ROLLBACK;                    -- rolls back the current transaction\n\\r
+\ \n\\r
+\  PREPARE name AS 'SQL-J text'; -- prepares the SQL-J text\n\\r
+\  EXECUTE { name | 'SQL-J text' } [ USING { name | 'SQL-J text' } ] ;\n\\r
+\                               -- executes the statement with parameter\n\\r
+\                               -- values from the USING result set row\n\\r
+\  REMOVE name;                 -- removes the named previously prepared statement\n\\r
+\ \n\\r
+\  RUN 'filename';              -- run commands from the named file\n\\r
+\ \n\\r
+\  ELAPSEDTIME [ ON | OFF ];    -- sets elapsed time mode for ij\n\\r
+\  MAXIMUMDISPLAYWIDTH integerValue;\n\\r
+\                               -- sets the maximum display width for\n\\r
+\                               -- each column to integerValue\n\\r
+\ \n\\r
+\  ASYNC name 'SQL-J text';     -- run the command in another thread\n\\r
+\  WAIT FOR name;               -- wait for result of ASYNC'd command\n\\r
+\ \n\\r
+\  GET [SCROLL INSENSITIVE] CURSOR name AS 'SQL-J query';\n\\r
+\                               -- gets a cursor (JDBC result set) on the query\n\\r
+\                               -- SCROLL cursors are only available \n\\r
+\                               -- in JDBC 2.0 and higher. \n\\r
+\                               -- (Cursor scroll type is ignored in JDBC 1.X.) \n\\r
+\  NEXT name;                   -- gets the next row from the named cursor\n\\r
+\  FIRST name;                  -- gets the first row from the named scroll cursor\n\\r
+\  LAST name;                   -- gets the last row from the named scroll cursor\n\\r
+\  PREVIOUS name;               -- gets the previous row from the named scroll cursor\n\\r
+\  ABSOLUTE integer name;       -- positions the named scroll cursor at the absolute row number\n\\r
+\                               -- (A negative number denotes position from the last row.) \n\\r
+\  RELATIVE integer name;       -- positions the named scroll cursor relative to the current row\n\\r
+\                               -- (integer is number of rows)\n\\r
+\  AFTER LAST name;             -- positions the named scroll cursor after the last row\n\\r
+\  BEFORE FIRST name;           -- positions the named scroll cursor before the first row\n\\r
+\  GETCURRENTROWNUMBER name;    -- returns the row number for the current position of the named scroll cursor\n\\r
+\                               -- (0 is returned when the cursor is not positioned on a row.) \n\\r
+\  CLOSE name;                  -- closes the named cursor\n\\r
+\  LOCALIZEDDISPLAY [ ON | OFF ];\n\\r
+\                               -- controls locale sensitive data representation\n\\r
+\ \n\\r
+\  EXIT;                        -- exits ij\n\\r
+\  HELP;                        -- shows this message\n\\r
+\ \n\\r
+\ Any unrecognized commands are treated as potential SQL-J commands and executed directly.\n\\r
+\ \n\r
+# From ijException.java\r
+IJ_IllegalStatementName={0} is an illegal name for a statement\r
+IJ_NotYetImpl=Not yet implemented\r
+IJ_AlreHaveACon=Already have a connection named {0}\r
+IJ_ExceRunnComm=Exception running command: {0}\r
+IJ_UnabToGetWar=Unable to get warnings for connection\r
+IJ_CoulNotLocaC=Could not locate class for procotol, {0}\r
+IJ_CoulNotLocaC_5=Could not locate class {0}\r
+IJ_FailToDisc=Failed to disconnect\r
+IJ_DrivNotClasN=Driver not class name {0}\r
+IJ_FileNotFoun=File not found\r
+IJ_CannotCloseInFile=Cannot close ij input file, {0}\r
+IJ_IsNotAlloOnA={0} is not allowed on a forward only cursor.\r
+IJ_GetcCallFail=getConnection call failed\r
+IJ_Ioex=IOException: {0}\r
+IJ_NeedToDiscFi=Need to disconnect first\r
+IJ_NoAsynStatEx=No async statement exists with the name {0}\r
+IJ_NoConnExisWi=No connection exists with the name {0}\r
+IJ_NoProtExisWi=No protocol exists with the name {0}\r
+IJ_NoSuchTable=No table exists with the name {0}\r
+IJ_IsOnlySuppIn={0} is only supported in JDBC 2.0 and greater.\r
+IJ_UsinClauHadN=Using clause had no results\r
+IJ_UnabToEsta=Unable to establish {0}\r
+IJ_UnabToGetWar_19=Unable to get warnings for result set\r
+IJ_ResoNotFoun=Resource not found\r
+IJ_ScroCursAre1=Scroll cursors are only supported with JDK1.2 and higher.\r
+IJ_HoldCursAre4=Holdability can not be changed using jdbc3.0 apis in JDKs lower than JDK1.4.\r
+IJ_UnabToGetWar_22=Unable to get warnings for statement\r
+IJ_WaitForStatI=Wait for statement interrupted: {0}\r
+IJ_0IsAnInvaVal=0 is an invalid value for ABSOLUTE <integer> <cursorname>\r
+# From ijFatalException.java\r
+IJ_FataExceTerm=Fatal Exception; terminating\r
+IJ_Fata01=FatalException: {0}: {1}\r
+# From ijResultImpl.java\r
+IJ_Con0=CON::{0}\r
+IJ_Stm0=STM::{0}\r
+IJ_Row0=ROW::{0}\r
+IJ_Vec0=VEC::{0}\r
+IJ_Mul0=MUL::{0}\r
+IJ_Exc0=EXC::{0}\r
+IJ_MRS0=MRS::{0}\r
+IJ_Rse0=RST::{0}\r
+IJ_Unkn0=UNKNOWN::{0}\r
+# From util.java\r
+IJ_UsageJavaComCloudToolsIjPPropeInput=Usage: java org.apache.derby.tools.ij [-p propertyfile] [-ca connectionAttributePropertyFile] [inputfile]\r
+IJ_IjWarniAutocMayCloseUsingResulSet=IJ WARNING: Autocommit may close using result set\r
+# From utilMain.java\r
+IJ_IjVers30C199=ij version {0}\r
+IJ_ElapTime0Mil=ELAPSED TIME = {0} milliseconds\r
+IJ_IjErro0=IJ ERROR: {0}\r
+IJ_JavaErro0=JAVA ERROR: {0}\r
+IJ_ElapTime0Mil_4=ELAPSED TIME = {0} milliseconds\r
+IJ_IjErro0_5=IJ ERROR: {0}\r
+IJ_IjErro0_6=IJ ERROR: {0}\r
+IJ_JavaErro0_7=JAVA ERROR: {0}\r
+IJ_Erro0=\ (errorCode = {0})\r
+IJ_NoSqls=(no SQLState)\r
+IJ_NoMess=(no message)\r
+IJ_Erro012=ERROR {0}: {1}{2}\r
+# From xaHelper.java\r
+IJ_Reco0InDoubT=Recovered {0} in doubt transactions\r
+IJ_Tran01=Transaction {0} : {1}\r
+IJ_IlleValu=ILLEGAL VALUE\r
+IJ_01SeeLog={0} : {1} (see derby.log)\r
+IJ_Pool=PooledConnection\r
+IJ_XAClass=EmbeddedXADataSource not in classpath, please put derby.jar file in your classpath\r
+IJ_XANoI=EmbeddedXADataSource cannot be instantiated, please put derby.jar file in your classpath\r
+# From ParseException.java\r
+IJ_EncoAtLineColu=Encountered "{0}" at line {1}, column {2}\r
+# From TokenMgrError.java\r
+IJ_LexiErroAtLine0Colu1=Lexical error at line {0}, column {1}.  Encountered: {2}after :"{3}"\r
+TL_incorCase=Case of the Derby attribute is incorrect.\r
+TL_unknownAtt=Attribute is unknown to Derby.\r
+TL_trueFalse=Value should be set to true/false.\r
+TL_dupAtt=Attribute is a duplicate.\r
+TL_urlLabel1=URL Attribute {0}{1}{2}\r
+# Directory org/apache/derby/tools\r
+# From dblook.java\r
+DBLOOK_MissingLocale=Resources not found for current locale; switching to {0}.\r
+DBLOOK_Usage=\\r
+\ \n\\r
+\ USAGE:\n\ java org.apache.derby.tools.dblook -d <sourceDBUrl> [OPTIONS]\n\n\\r
+\ \twhere the source URL is the full URL, including the connection protocol\n\\r
+\ \tand any connection attributes that might apply.  For example, use\n\\r
+\ \t'jdbc:derby:myDB', or 'jdbc:derby://localhost:1527/myDB;user=usr;'. \n\n\\r
+\ \toptions include: \n\n\\r
+\ \t-z <schemaName> to specify a schema to which the DDL generation\n\\r
+\ \t should be limited.  Only database objects with that schema will have\n\\r
+\ \t their DDL generated.\n\n\\r
+\ \t-t <tableOne> <tableTwo> ... to specify a list of tables for which\n\\r
+\ \t the DDL will be generated; any tables not in the list will be ignored.\n\n\\r
+\ \t-td <value> to specify what should be appended to the end\n\\r
+\ \t of each DDL statement.\n\t\tThis defaults to ';'.\n\n\\r
+\ \t-noview to prevent the generation of DDL for views.\n\n\\r
+\ \t-append to keep from overwriting the output files.\n\n\\r
+\ \t-verbose to have error messages printed to the console (in addition\n\\r
+\ \t to the log file).  If not specified, errors will only be printed to the\n\\r
+\ \t log file.\n\n\\r
+\ \t-o <filename> to specify the file name to which the generated DDL\n\\r
+\ \t will be written.\n\\r
+\ \t\tIf not specified, default is the console.\\r
+\ \n\r
+DBLOOK_FileCreation=This file was created using Derby's dblook utility.\r
+DBLOOK_OutputLocation=Output will be sent to file {0}\n\r
+DBLOOK_Timestamp=Timestamp: {0}\r
+DBLOOK_DBName=Source database is: {0}\r
+DBLOOK_DBUrl=Connection URL is: {0}\r
+DBLOOK_TargetTables=The dblook utility will consider only specified tables.\r
+DBLOOK_TargetSchema=Specified schema is: {0}\r
+# Directory org/apache/derby/tools/impl/dblook\r
+DBLOOK_TablesHeader=DDL Statements for tables\r
+DBLOOK_ChecksHeader=DDL Statements for checks\r
+DBLOOK_IndexesHeader=DDL Statements for indexes\r
+DBLOOK_JarsHeader=DDL Statements for jars\r
+DBLOOK_KeysHeader=DDL Statements for keys\r
+DBLOOK_PrimUniqueHeader=primary/unique\r
+DBLOOK_ForeignHeader=foreign\r
+DBLOOK_FunctionHeader=DDL Statements for functions\r
+DBLOOK_SchemasHeader=DDL Statements for schemas\r
+DBLOOK_StoredProcHeader=DDL Statements for stored procedures\r
+DBLOOK_SynonymHeader=DDL Statements for Synonyms\r
+DBLOOK_TriggersHeader=DDL Statements for triggers\r
+DBLOOK_ViewsHeader=DDL Statements for views\r
+DBLOOK_TablePrivHeader=GRANT statements for tables\r
+DBLOOK_ColumnPrivHeader=GRANT statements for columns\r
+DBLOOK_RoutinePrivHeader=GRANT statements for routines\r
+DBLOOK_Jar_Note=\\r
+**** NOTE **** In order for jar files to be loaded correctly,\n\\r
+-- you must either 1) ensure that the DBJARS directory (created\n\\r
+-- automatically by dblook) exists where it was created (i.e. at\n\\r
+-- the path shown in the statements below), or else 2) change the\n\\r
+-- path in the statements below to reflect the current location of\n\\r
+-- DBJARS.  If the DBJARS directory does not exist, or if it\n\\r
+-- has been moved and the path is not correct, the following DDL\n\\r
+-- statements will throw errors, and the jar files will NOT be\n\\r
+-- loaded.\r
+DBLOOK_FailedToLoadJar=Failed to load jar file {0}\r
+DBLOOK_DefaultSchema=Reverting back to default schema 'APP'\r
+DBLOOK_AtLeastOneDebug=\\r
+-- Note: At least one unexpected error/warning message was\n\\r
+-- encountered during DDL generation.  See dblook.log\n\\r
+-- to review the message(s).\n\\r
+\n\r
+# Directory org/apache/derby/tools/iapi\r
+RUN_Usage=Usage:\n\\r
+java -jar derbyrun.jar ij [-p propertiesfile] [sql script]\n\\r
+java -jar derbyrun.jar sysinfo [-cp ...] [-cp help] \n\\r
+java -jar derbyrun.jar dblook [args] (or no arguments for usage)\n\\r
+java -jar derbyrun.jar server [args] (or no arguments for usage)\r