Nested Transactions; Saving Recordsets As Xml - Omron CX-Supervisor User Manual

Hide thumbs Also See for CX-Supervisor:
Table of Contents

Advertisement

Saving Recordsets as XML

12-7-1 Nested Transactions

Note:
Note:
12-8
Saving Recordsets as XML
196
modifications to data in a connection, regardless of the Recordset. A
transaction is started by calling DBExecute with the 'BeginTrans' command.
From that point, any request to add, modify or delete records are stored
instead of being immediately processed. The Transaction is completed either
by calling DBExecute with the 'CommitTrans' command, which processes all
the stored requests in one go, or by calling DBExecute with the
'RollbackTrans' command, which discards all the stored requests leaving the
database as it was when the Transaction started.
Transactions may be nested, that is a new transaction may be started before
the preceding transaction has been completed. In this case, any
'CommitTrans' or 'RollbackTrans' commands relate to the most recently
started transaction, and any further 'CommitTrans or 'RollbackTrans'
commands relate to the transaction begun before it.
Care should be taken to ensure that each 'BeginTrans' is matched with a
'CommitTrans' or 'RollbackTrans' to ensure that your work is saved or
discarded as required. If there are any pending transactions when a
connection is closed, the user will be prompted to either commit or rollback
these outstanding transactions. A DBExecute command 'TransCount' is
available which returns the number of pending transactions.
Not all Providers support use of Transactions.
Using the DBExecute() 'Save' command any Recordset may be saved as an
XML file, to be imported in to another application. XML resembles and
complements HTML. XML describes data, such as city name, temperature
and barometric pressure, and HTML defines tags that describe how the data
should be displayed, such as with a bulleted list or a table. XML, however,
allows developers to define an unlimited set of tags, bringing great flexibility to
authors, who can decide which data to use and determine its appropriate
standard or custom tags.
Example: XML is used to describe an Employees phone list:
<EmployeeList>
<Entry>
<Employee>John Jones</Employee>
<Phone>555-1213</Phone>
<Type>Mobile</Type>
</Entry>
<Entry>
<Employee>Sally Mae</Employee>
<Phone>555-1217</Phone>
<Type>Business Fax</Type>
</Entry>
</EmployeeList>
You can use an application with a built in XML parser, such as Microsoft®
Internet Explorer 5 to view XML documents in the browser just as you would
view HTML pages.
SECTION 12 Databases

Advertisement

Table of Contents
loading

This manual is also suitable for:

Cx-supervisor 3.1

Table of Contents