[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/utils CleanUp.java,1.1,1.2 DB.java,1.7,1.8 RS.j
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:11
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/utils
Modified Files:
CleanUp.java DB.java RS.java
Log Message:
Synced development
Index: CleanUp.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/CleanUp.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** CleanUp.java 6 Nov 2001 23:03:14 -0000 1.1
--- CleanUp.java 22 Aug 2002 20:06:37 -0000 1.2
***************
*** 11,19 ****
}
! protected void reset() {
statements.clear();
}
! protected void regStatement(Statement s) throws Exception {
statements.add(s);
}
--- 11,19 ----
}
! public void reset() {
statements.clear();
}
! public void regStatement(Statement s) throws Exception {
statements.add(s);
}
Index: DB.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/DB.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** DB.java 5 Apr 2002 14:37:52 -0000 1.7
--- DB.java 22 Aug 2002 20:06:37 -0000 1.8
***************
*** 360,363 ****
--- 360,364 ----
*/
public void procMethod(ObjectStore obj,String method,String[] vals,IDRSScript idrs) throws Exception {
+ System.out.println("In procmethod");
Object[] finalVals = new Object[vals.length];
Class[] clss = obj.getMethodTypes(method);
***************
*** 374,391 ****
for (i=0;i<vals.length;i++) {
cls = clss[i];
-
-
-
-
val1 = ObjectStore.getValue(cls,vals[i],this.con,idrs);
-
cls = val1.getClass();
-
finalVals[i] = val1;
-
-
-
}
if (direction == DB.OUTPUT) {
rs = (ResultSet) obj.execMethod(method,finalVals);
--- 375,384 ----
for (i=0;i<vals.length;i++) {
cls = clss[i];
val1 = ObjectStore.getValue(cls,vals[i],this.con,idrs);
cls = val1.getClass();
finalVals[i] = val1;
}
if (direction == DB.OUTPUT) {
+ System.out.println("executing method");
rs = (ResultSet) obj.execMethod(method,finalVals);
Index: RS.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/utils/RS.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** RS.java 18 Sep 2001 03:18:57 -0000 1.3
--- RS.java 22 Aug 2002 20:06:37 -0000 1.4
***************
*** 673,676 ****
--- 673,711 ----
return null;
}
+
+ public java.net.URL getURL(int param) throws java.sql.SQLException {
+ return null;
+ }
+
+ public java.net.URL getURL(String str) throws java.sql.SQLException {
+ return null;
+ }
+
+ public void updateArray(int param, java.sql.Array array) throws java.sql.SQLException {
+
+ }
+
+ public void updateArray(String str, java.sql.Array array) throws java.sql.SQLException {
+
+ }
+
+ public void updateBlob(int param, java.sql.Blob blob) throws java.sql.SQLException {
+ }
+
+ public void updateBlob(String str, java.sql.Blob blob) throws java.sql.SQLException {
+ }
+
+ public void updateClob(String str, java.sql.Clob clob) throws java.sql.SQLException {
+ }
+
+ public void updateClob(int param, java.sql.Clob clob) throws java.sql.SQLException {
+ }
+
+ public void updateRef(String str, java.sql.Ref ref) throws java.sql.SQLException {
+ }
+
+ public void updateRef(int param, java.sql.Ref ref) throws java.sql.SQLException {
+ }
+
}
|