Subject | RE: [Firebird-Java] JDK1.4 |
---|---|
Author | Ken Richard |
Post date | 2002-03-13T15:37:43Z |
The changes are just to the interfaces - not to any of the
functionality. I hope to get a chance to test the compiled driver with
my app soon...
Index: client-java/src/org/firebirdsql/jdbc/FBCallableStatement.java
===================================================================
RCS file:
/cvsroot/firebird/client-java/src/org/firebirdsql/jdbc/FBCallableStateme
nt.java,v
retrieving revision 1.9
diff -r1.9 FBCallableStatement.java
772c772
< public URL getURL(int colIndex) throws SQLException,
MalformedURLException {
---
< public URL getURL(String colName) throws SQLException,
MalformedURLException {
---
< public void setURL(String param1, URL param2) throws SQLException,
MalformedURLException {
---
Index: client-java/src/org/firebirdsql/jdbc/FBDatabaseMetaData.java
===================================================================
RCS file:
/cvsroot/firebird/client-java/src/org/firebirdsql/jdbc/FBDatabaseMetaDat
a.java,v
retrieving revision 1.17
diff -r1.17 FBDatabaseMetaData.java
323a324,334
===================================================================
RCS file:
/cvsroot/firebird/client-java/src/org/firebirdsql/jdbc/FBResultSet.java,
v
retrieving revision 1.19
diff -r1.19 FBResultSet.java
3116c3116
< public URL getURL(int param1) throws SQLException,
MalformedURLException {
---
< public URL getURL(String param1) throws SQLException,
MalformedURLException {
---
===================================================================
RCS file:
/cvsroot/firebird/client-java/src/org/firebirdsql/jdbc/FBSQLInput.java,v
retrieving revision 1.3
diff -r1.3 FBSQLInput.java
373c373
< public URL readURL() throws SQLException, MalformedURLException {
---
functionality. I hope to get a chance to test the compiled driver with
my app soon...
Index: client-java/src/org/firebirdsql/jdbc/FBCallableStatement.java
===================================================================
RCS file:
/cvsroot/firebird/client-java/src/org/firebirdsql/jdbc/FBCallableStateme
nt.java,v
retrieving revision 1.9
diff -r1.9 FBCallableStatement.java
772c772
< public URL getURL(int colIndex) throws SQLException,
MalformedURLException {
---
> public URL getURL(int colIndex) throws SQLException {786c786
< public URL getURL(String colName) throws SQLException,
MalformedURLException {
---
> public URL getURL(String colName) throws SQLException {1130a1131,1142
>throws SQLException {
> /**
> *
> * @param param1 <description>
> * @param param2 <description>
> * @exception java.sql.SQLException <description>
> */
> public void setNull(String param1, int param2, String param3)
> // TODO: implement this java.sql.CallableStatement method1245c1257
> throw new SQLException("not yet implemented");
> }
>
< public void setURL(String param1, URL param2) throws SQLException,
MalformedURLException {
---
> public void setURL(String param1, URL param2) throws SQLException{
Index: client-java/src/org/firebirdsql/jdbc/FBDatabaseMetaData.java
===================================================================
RCS file:
/cvsroot/firebird/client-java/src/org/firebirdsql/jdbc/FBDatabaseMetaDat
a.java,v
retrieving revision 1.17
diff -r1.17 FBDatabaseMetaData.java
323a324,334
>Index: client-java/src/org/firebirdsql/jdbc/FBResultSet.java
>
>
> /** @TODO */
> public boolean supportsStatementPooling() throws SQLException {
> return false;
> }
> /** @TODO */
> public boolean locatorsUpdateCopy() throws SQLException {
> return false;
> }
===================================================================
RCS file:
/cvsroot/firebird/client-java/src/org/firebirdsql/jdbc/FBResultSet.java,
v
retrieving revision 1.19
diff -r1.19 FBResultSet.java
3116c3116
< public URL getURL(int param1) throws SQLException,
MalformedURLException {
---
> public URL getURL(int param1) throws SQLException {3128c3128
< public URL getURL(String param1) throws SQLException,
MalformedURLException {
---
> public URL getURL(String param1) throws SQLException {Index: client-java/src/org/firebirdsql/jdbc/FBSQLInput.java
===================================================================
RCS file:
/cvsroot/firebird/client-java/src/org/firebirdsql/jdbc/FBSQLInput.java,v
retrieving revision 1.3
diff -r1.3 FBSQLInput.java
373c373
< public URL readURL() throws SQLException, MalformedURLException {
---
> public URL readURL() throws SQLException {