Forum Moderators: open
"SELECT * from sometable LIMIT 20;" works perfectly, returning only 20 results through the ASP script.
"SELECT * from sometable LIMIT 20, 20;" should return results 21 through 40, but ASP only picks up 21 through 30.
"SELECT * from sometable LIMIT 20, 40;" should return results 41 through 60, but ASP reports EOF.
From researching online this seems to be a common problem for ASP type people using mySQL, but as yet I cannot find any reports of solving the problem.
For the record, converting to PHP is not an option at this stage, or perhaps ever, so I need to find an ASP solution to this problem. Anyone got any ideas?
Onya
Woz
I found the problem, it was located midway between Chair and Keyboard. ;)
Remember I said I was converting ASP/Access to ASP/mySQL? I ended up paring the scripting back to the bone and building it up again, and found a legacy line of code that, whilst good for Access, was Baaaad for mySQL.
Problem solved.
Onya
Woz