Roald Andresen
Member²
I have a table definition looking like this:
create or replace type T2 as object
(
C2 varchar2(30),
N2 number
);
create or replace type T1 as object
(
C1 varchar2(10),
N1 number,
O1 T2
);
create table testtab of T1;
Furthermore, I have a TOracleDataSet object DS with sql:
"select t.*, t.rowid from testtab t"
When calling DS.Open, I get ORA-03113.
The database is fine. No errors in the SQL trace. The TOracleSession object looses its connection with the database, but can easily connect again immideately afterwards.
I'm running Oracle 9.2.0.1.0 and DOA 3.4.6.3.
Kind regards,
Roald
create or replace type T2 as object
(
C2 varchar2(30),
N2 number
);
create or replace type T1 as object
(
C1 varchar2(10),
N1 number,
O1 T2
);
create table testtab of T1;
Furthermore, I have a TOracleDataSet object DS with sql:
"select t.*, t.rowid from testtab t"
When calling DS.Open, I get ORA-03113.
The database is fine. No errors in the SQL trace. The TOracleSession object looses its connection with the database, but can easily connect again immideately afterwards.
I'm running Oracle 9.2.0.1.0 and DOA 3.4.6.3.
Kind regards,
Roald