Tamino API for .NET Version 8.2.2
 —  Tamino API for .NET  —

Programming with the Tamino API for .NET

An application can access XML documents that are stored in a Tamino database in one of two ways:

The latter choice, i.e. using .NET datasets, is generally recommended for applications that process less complex ("flat") XML document structures. In this case, the application uses the TaminoDataAdapter class, as described in the chapter Working with Datasets and the TaminoDataAdapter.

In order to process Tamino documents using the System.Xml classes, the application works directly with the core classes such as TaminoConnection and TaminoCommand. Before it can process Tamino documents, the application must:

  1. Create a TaminoConnection object (see Working with Connections);

  2. Get a TaminoCommand or TaminoSchemaCommand object from the TaminoConnection object (see Working with Commands).

The following chapters describe how to perform particular tasks.

../graphics/gr_b_sm.gif Working with Connections
../graphics/gr_b_sm.gif Working with Commands
../graphics/gr_b_sm.gif Inserting, Retrieving, Updating and Deleting XML Documents
../graphics/gr_b_sm.gif Handling Responses and TaminoExceptions
../graphics/gr_b_sm.gif Performing Queries and Update Queries
../graphics/gr_b_sm.gif Processing Query Results
../graphics/gr_b_sm.gif Processing Transactions
../graphics/gr_b_sm.gif Working with Datasets and the TaminoDataAdapter
../graphics/gr_b_sm.gif Security
../graphics/gr_b_sm.gif Encoding
../graphics/gr_b_sm.gif Processing Tamino Schema Commands
../graphics/gr_b_sm.gif Working with Non-XML Data
../graphics/gr_b_sm.gif Working with URIs
../graphics/gr_b_sm.gif Processing Diagnostics

Top of page