TOracleDataSet.Datasource

jayouzts

Member
I am currently migrating from BDE to DOA

I have several existing TQuery Components that have a Datasource property.

I would like the TOracleDataSet component to have its datasource property to be identical to that TQuery it is replacing

Is there a way to set the TOracleDataSet.Datasource property at Design time?

If not, whats the best way to set it at runtime. The command

OracleDataSet1.Datasource:=Datasource1 gives me a "cannot assign to read only property" error.

The command
OracleDataSet1.Datasource.Assign(Datasource1)

gives me an access violation error at runtime.
 
A TOracleDataSet does not have a DataSource porperty. What exactly did you want to use it for?

------------------
Marco Kalter
Allround Automations
 
Back
Top