Access Violation / TSmartQuery component with option DefaultValues set to true
Posted: Tue 29 Dec 2015 10:58
Hi ODAC Support Team,
My installed components:
- ODAC 9.6.21 for RAD Studio XE7
- C++ Builder XE 7 with Update 1
- all Oracle Versions
- Simple project:
1 OraSession ,
1 SmartQuery ( DefaultValues option set to true )
While opening the SmartQuery, i got an access violation in dac210.bpl.
If i change the SQL text in, all works fine.
Thank you
My installed components:
- ODAC 9.6.21 for RAD Studio XE7
- C++ Builder XE 7 with Update 1
- all Oracle Versions
- Simple project:
1 OraSession ,
1 SmartQuery ( DefaultValues option set to true )
Code: Select all
SmartQuery1->OptionsDS->DefaultValues = true;
SmartQuery1->SQL->Text = "SELECT tablespace_name FROM dba_tablespaces ";
SmartQuery1->Open(); // --> GPF
If i change the SQL text in,
Code: Select all
SELECT * FROM dba_tablespaces
Thank you