You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by rh...@apache.org on 2006/09/08 17:35:37 UTC

svn commit: r441540 [4/6] - in /db/derby/code/branches/10.2/java: client/ client/org/apache/derby/client/am/ client/org/apache/derby/jdbc/ drda/org/apache/derby/impl/drda/ engine/org/apache/derby/impl/jdbc/ engine/org/apache/derby/impl/sql/catalog/ eng...

Modified: db/derby/code/branches/10.2/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/parameterMapping.out
URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.2/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/parameterMapping.out?view=diff&rev=441540&r1=441539&r2=441540
==============================================================================
--- db/derby/code/branches/10.2/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/parameterMapping.out (original)
+++ db/derby/code/branches/10.2/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/parameterMapping.out Fri Sep  8 08:35:32 2006
@@ -1901,28 +1901,28 @@
 CREATE PROCEDURE PMP.TYPE_AS(IN P1 CHAR(60), INOUT P2 CHAR(60), OUT P3 CHAR(60)) LANGUAGE JAVA PARAMETER STYLE JAVA NO SQL  EXTERNAL NAME 'org.apache.derbyTesting.functionTests.util.ProcedureTest.pmap'
 INOUT CHAR(60) registerOutParameter(Types.TINYINT) -- OK
 OUT CHAR(60) registerOutParameter(Types.TINYINT) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type byte.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type byte.
 INOUT CHAR(60) registerOutParameter(Types.SMALLINT) -- OK
 OUT CHAR(60) registerOutParameter(Types.SMALLINT) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type short.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type short.
 INOUT CHAR(60) registerOutParameter(Types.INTEGER) -- OK
 OUT CHAR(60) registerOutParameter(Types.INTEGER) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type int.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type int.
 INOUT CHAR(60) registerOutParameter(Types.BIGINT) -- OK
 OUT CHAR(60) registerOutParameter(Types.BIGINT) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type long.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type long.
 INOUT CHAR(60) registerOutParameter(Types.REAL) -- OK
 OUT CHAR(60) registerOutParameter(Types.REAL) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type float.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type float.
 INOUT CHAR(60) registerOutParameter(Types.FLOAT) -- OK
 OUT CHAR(60) registerOutParameter(Types.FLOAT) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type double.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type double.
 INOUT CHAR(60) registerOutParameter(Types.DOUBLE) -- OK
 OUT CHAR(60) registerOutParameter(Types.DOUBLE) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type double.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type double.
 INOUT CHAR(60) registerOutParameter(Types.DECIMAL) -- OK
 OUT CHAR(60) registerOutParameter(Types.DECIMAL) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type java.math.BigDecimal.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type java.math.BigDecimal.
 INOUT CHAR(60) registerOutParameter(Types.NUMERIC) -- OK
 OUT CHAR(60) registerOutParameter(Types.NUMERIC) -- OK
 INOUT CHAR(60) registerOutParameter(Types.BIT) -- OK
@@ -1945,13 +1945,13 @@
 OUT CHAR(60) registerOutParameter(Types.VARBINARY) -- XCL25
 INOUT CHAR(60) registerOutParameter(Types.DATE) -- OK
 OUT CHAR(60) registerOutParameter(Types.DATE) -- OK
-P2=SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+P2=SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT CHAR(60) registerOutParameter(Types.TIME) -- OK
 OUT CHAR(60) registerOutParameter(Types.TIME) -- OK
-P2=SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+P2=SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT CHAR(60) registerOutParameter(Types.TIMESTAMP) -- OK
 OUT CHAR(60) registerOutParameter(Types.TIMESTAMP) -- OK
-P2=SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+P2=SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT CHAR(60) registerOutParameter(Types.CLOB) -- XCL25
 OUT CHAR(60) registerOutParameter(Types.CLOB) -- XCL25
 INOUT CHAR(60) registerOutParameter(Types.BLOB) -- XCL25
@@ -2139,28 +2139,28 @@
 CREATE PROCEDURE PMP.TYPE_AS(IN P1 VARCHAR(60), INOUT P2 VARCHAR(60), OUT P3 VARCHAR(60)) LANGUAGE JAVA PARAMETER STYLE JAVA NO SQL  EXTERNAL NAME 'org.apache.derbyTesting.functionTests.util.ProcedureTest.pmap'
 INOUT VARCHAR(60) registerOutParameter(Types.TINYINT) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.TINYINT) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type byte.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type byte.
 INOUT VARCHAR(60) registerOutParameter(Types.SMALLINT) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.SMALLINT) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type short.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type short.
 INOUT VARCHAR(60) registerOutParameter(Types.INTEGER) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.INTEGER) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type int.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type int.
 INOUT VARCHAR(60) registerOutParameter(Types.BIGINT) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.BIGINT) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type long.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type long.
 INOUT VARCHAR(60) registerOutParameter(Types.REAL) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.REAL) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type float.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type float.
 INOUT VARCHAR(60) registerOutParameter(Types.FLOAT) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.FLOAT) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type double.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type double.
 INOUT VARCHAR(60) registerOutParameter(Types.DOUBLE) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.DOUBLE) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type double.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type double.
 INOUT VARCHAR(60) registerOutParameter(Types.DECIMAL) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.DECIMAL) -- OK
-P2=SQLSTATE(22018): SQL Exception: Invalid character string format for type java.math.BigDecimal.
+P2=SQLSTATE(22018): java.sql.SQLException: Invalid character string format for type java.math.BigDecimal.
 INOUT VARCHAR(60) registerOutParameter(Types.NUMERIC) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.NUMERIC) -- OK
 INOUT VARCHAR(60) registerOutParameter(Types.BIT) -- OK
@@ -2183,13 +2183,13 @@
 OUT VARCHAR(60) registerOutParameter(Types.VARBINARY) -- XCL25
 INOUT VARCHAR(60) registerOutParameter(Types.DATE) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.DATE) -- OK
-P2=SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+P2=SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT VARCHAR(60) registerOutParameter(Types.TIME) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.TIME) -- OK
-P2=SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+P2=SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT VARCHAR(60) registerOutParameter(Types.TIMESTAMP) -- OK
 OUT VARCHAR(60) registerOutParameter(Types.TIMESTAMP) -- OK
-P2=SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+P2=SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT VARCHAR(60) registerOutParameter(Types.CLOB) -- XCL25
 OUT VARCHAR(60) registerOutParameter(Types.CLOB) -- XCL25
 INOUT VARCHAR(60) registerOutParameter(Types.BLOB) -- XCL25
@@ -2806,13 +2806,13 @@
 OUT DATE registerOutParameter(Types.BIT) -- XCL25
 INOUT DATE registerOutParameter(Types.CHAR) -- OK
 OUT DATE registerOutParameter(Types.CHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT DATE registerOutParameter(Types.VARCHAR) -- OK
 OUT DATE registerOutParameter(Types.VARCHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT DATE registerOutParameter(Types.LONGVARCHAR) -- OK
 OUT DATE registerOutParameter(Types.LONGVARCHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT DATE registerOutParameter(Types.VARBINARY) -- XCL25
 OUT DATE registerOutParameter(Types.VARBINARY) -- XCL25
 INOUT DATE registerOutParameter(Types.DATE) -- OK
@@ -2823,7 +2823,7 @@
 OUT DATE registerOutParameter(Types.TIME) -- XCL25
 INOUT DATE registerOutParameter(Types.TIMESTAMP) -- OK
 OUT DATE registerOutParameter(Types.TIMESTAMP) -- OK
-P2=SQLSTATE(22005): SQL Exception: An attempt was made to get a data value of type 'java.sql.Time' from a data value of type 'DATE'.
+P2=SQLSTATE(22005): java.sql.SQLException: An attempt was made to get a data value of type 'java.sql.Time' from a data value of type 'DATE'.
 INOUT DATE registerOutParameter(Types.CLOB) -- XCL25
 OUT DATE registerOutParameter(Types.CLOB) -- XCL25
 INOUT DATE registerOutParameter(Types.BLOB) -- XCL25
@@ -3032,13 +3032,13 @@
 OUT TIME registerOutParameter(Types.BIT) -- XCL25
 INOUT TIME registerOutParameter(Types.CHAR) -- OK
 OUT TIME registerOutParameter(Types.CHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT TIME registerOutParameter(Types.VARCHAR) -- OK
 OUT TIME registerOutParameter(Types.VARCHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT TIME registerOutParameter(Types.LONGVARCHAR) -- OK
 OUT TIME registerOutParameter(Types.LONGVARCHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT TIME registerOutParameter(Types.VARBINARY) -- XCL25
 OUT TIME registerOutParameter(Types.VARBINARY) -- XCL25
 INOUT TIME registerOutParameter(Types.DATE) -- XCL25
@@ -3259,13 +3259,13 @@
 OUT TIMESTAMP registerOutParameter(Types.BIT) -- XCL25
 INOUT TIMESTAMP registerOutParameter(Types.CHAR) -- OK
 OUT TIMESTAMP registerOutParameter(Types.CHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT TIMESTAMP registerOutParameter(Types.VARCHAR) -- OK
 OUT TIMESTAMP registerOutParameter(Types.VARCHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT TIMESTAMP registerOutParameter(Types.LONGVARCHAR) -- OK
 OUT TIMESTAMP registerOutParameter(Types.LONGVARCHAR) -- OK
-SQLSTATE(22007): SQL Exception: The syntax of the string representation of a datetime value is incorrect.
+SQLSTATE(22007): java.sql.SQLException: The syntax of the string representation of a datetime value is incorrect.
 INOUT TIMESTAMP registerOutParameter(Types.VARBINARY) -- XCL25
 OUT TIMESTAMP registerOutParameter(Types.VARBINARY) -- XCL25
 INOUT TIMESTAMP registerOutParameter(Types.DATE) -- OK