G
Guest
I've made a program that fetches data from an ODBC data source. Everything works fine when the table contains only a few rows. The problem is that when there are many rows (6000, in this case), the program terminates with the following OdbcException
"ERROR [26000] [ATI][OpenRDA ODBC]Error initializing the cache for disk storage
The SQL statement is simple
"SELECT * FROM Items;
If the SQL statement is reduced to this
"SELECT ItemID,ItemNumber,QuantityOnHand,ValueOnHand FROM Items;
then it works, fetching all 6000 rows. But, this is not useful to me in this form. I could hack my way through, fetching 4 columns at a time, and patching them together at the end, but that would stink
Does anyone know why this error is occuring? Even better, how can I fix this problem
Thanks
Mike
"ERROR [26000] [ATI][OpenRDA ODBC]Error initializing the cache for disk storage
The SQL statement is simple
"SELECT * FROM Items;
If the SQL statement is reduced to this
"SELECT ItemID,ItemNumber,QuantityOnHand,ValueOnHand FROM Items;
then it works, fetching all 6000 rows. But, this is not useful to me in this form. I could hack my way through, fetching 4 columns at a time, and patching them together at the end, but that would stink
Does anyone know why this error is occuring? Even better, how can I fix this problem
Thanks
Mike