07-21-2019, 10:09 AM
If you open the ADO table explicitly, it will also open the underlying ADO connection if not connected.
This is normal and expected.
BTW, it is better to use ADOQuery components because you can retrieve only the used fields and records and not the whole table. Also, if you are loading the DataSet content and don't intend to use it again, it is a good practice to open the DataSet, use it (i.e. load the records into the list box) and close it in one single operation.
This is normal and expected.
BTW, it is better to use ADOQuery components because you can retrieve only the used fields and records and not the whole table. Also, if you are loading the DataSet content and don't intend to use it again, it is a good practice to open the DataSet, use it (i.e. load the records into the list box) and close it in one single operation.

