I have the Problem that
while(rs.next()) {
System.out.println(rs.getInt(1)+ " "+rs.getTimestamp(2)+" "+rs.getString(3)+ " "+rs.getInt(4));
}
stops at count 1000. I could not figure out how to increase this number.
I also tried to modify my statemant. But when i say select * from db where COMP_SENO is >= 1000 i get the error java.sql.SQLException: Can't parse.
I am using Java and the Paradox Driver.
|
Trial version limitations are listed at here:
SELECT queries return the first 1000 rows in the result set.
|
thank you for the Fast answer.
Do you have maybe a solution for the second Problem of Kyrill?
|
you need to remove the is
|
select * from db where COMP_SENO >= 1000
|