2008/7/21, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
>
> Hi,
Hello,
>
> Can anyone tell me how many rows of data the table can grow to? I have an old 
> database from 1980-2007, that I wish to import from.
if you are using an hsql integrated database, here's what the doc says :
org.hsqldb.jdbc
Class jdbcDatabaseMetaData
java.lang.Object
  org.hsqldb.jdbc.jdbcDatabaseMetaData
...
getMaxColumnsInTable
public int getMaxColumnsInTable()
                         throws java.sql.SQLExceptionRetrieves the
maximum number of columns this database allows in a table.

HSQLDB-Specific Information:
HSQLDB does not impose a "known" limit. The hard limit is the maximum
length of a Java array (java.lang.Integer.MAX_VALUE); this method
always returns 0.


Specified by:
getMaxColumnsInTable in interface java.sql.DatabaseMetaData
Returns:
the maximum number of columns allowed; a result of zero means that
there is no limit or the limit is not known
Throws:
java.sql.SQLException - if a database access error occurs

It seems that java.lang.Integer.MAX_VALUE = (2^31) - 1
>
> Thanks,
> Liz
>
>
Manuel

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to