Hi All,
I have a Mysql question.
I have a line of code to select MySql records between 2 values.
This only returns 10 records.
If I use the same line in the Mysql server console
mysql$ SELECT * FROM table1 WHERE sumID BETWEEN 500 AND 600;
I get 100 records..
It appears that B4J is not passing the full request to MySql.
Any one have any clues?
Thanks
I have a Mysql question.
I have a line of code to select MySql records between 2 values.
B4X:
Dim cursor As ResultSet = gSql.ExecQuery("SELECT * FROM "&dbTable&" WHERE sumID BETWEEN 500 AND 600 ")
This only returns 10 records.
If I use the same line in the Mysql server console
mysql$ SELECT * FROM table1 WHERE sumID BETWEEN 500 AND 600;
I get 100 records..
It appears that B4J is not passing the full request to MySql.
Any one have any clues?
Thanks