Update of /cvsroot/squirrel-sql/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15139
Modified Files:
ResultSetDataSet.java
Log Message:
compiler nit
Index: ResultSetDataSet.java
===================================================================
RCS file: /cvsroot/squirrel-sql/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/ResultSetDataSet.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** ResultSetDataSet.java 6 Feb 2004 16:24:27 -0000 1.11
--- ResultSetDataSet.java 7 Apr 2004 02:53:35 -0000 1.12
***************
*** 254,258 ****
// when they try to save the data to the DB
boolean isNullable = true;
! if (md.isNullable(idx) == md.columnNoNulls)
isNullable = false;
--- 254,258 ----
// when they try to save the data to the DB
boolean isNullable = true;
! if (md.isNullable(idx) == ResultSetMetaData.columnNoNulls)
isNullable = false;
|