NT Server 4.0 SP6 & Oracle 8.1.5 & DOA 3.4.5
on P166 / 96MB RAM computer
In my app I need sorting which I implement through
wwDBGrid's title buttons.
After several successive clicks on title I get an ORA-03113 error.
Seems it happens with all tables or views and needs from 3 to about 5-6
clicks on different columns.
The following is an example sequence:
Select * from USER$ t /* initial opening/
Select * from USER$ t ORDER BY USER# ASC /* normal */
Select * from USER$ t ORDER BY USER# DESC /* normal */
Select * from USER$ t ORDER BY USER# ASC /* normal */
Select * from USER$ t ORDER BY NAME DESC /* ORA-03113 error: end-of-file ... */
The same is true even if for each of above statements dynamically generate
new TOracleDataSet instance (all within single session).
I tried all I could by manipulating with pertaining OracleSession and OracleDataSet
properties but mainly in vain. Though I observed that enabled CountAllRecords
aggravates the situation - crash becomes faster.
Is it a bug or something?
on P166 / 96MB RAM computer
In my app I need sorting which I implement through
wwDBGrid's title buttons.
After several successive clicks on title I get an ORA-03113 error.
Seems it happens with all tables or views and needs from 3 to about 5-6
clicks on different columns.
The following is an example sequence:
Select * from USER$ t /* initial opening/
Select * from USER$ t ORDER BY USER# ASC /* normal */
Select * from USER$ t ORDER BY USER# DESC /* normal */
Select * from USER$ t ORDER BY USER# ASC /* normal */
Select * from USER$ t ORDER BY NAME DESC /* ORA-03113 error: end-of-file ... */
The same is true even if for each of above statements dynamically generate
new TOracleDataSet instance (all within single session).
I tried all I could by manipulating with pertaining OracleSession and OracleDataSet
properties but mainly in vain. Though I observed that enabled CountAllRecords
aggravates the situation - crash becomes faster.
Is it a bug or something?