dBase database in the PmAdo object
- In preconfigured Database connection parameters it is necessary to modify the filename and path to the database files folder.
The
PmAdois created, containing the
DtiOper method on the
Methods page. This method represents the basic inteface for working with database tables and can be used, for example, by the
Preconfiguration "Panel with editable table viewer of data source" viewer.
The interface uses the
ADO technology that can be extended by additional functionality:
Example1:
Creates new table data with columns nTime (time), 'flags' (integer) and 'value1' (real number).
VBScriptSelect and copy to clipboard
pMe.DbExecute "", "CREATE TABLE data (nTime CHAR, flags NUMERIC, value1 FLOAT)", ""
Example2:
Remove table data
VBScriptSelect and copy to clipboard
pMe.DbExecute "", "DROP TABLE data", ""