Back Previous Next


Linguist data package - new

Syntax:

	new transaction

Keyword handler:

   net.eclecity.linguist.data.keyword.DataKNew.class

Runtime handler(s):

   net.eclecity.linguist.data.handler.DataHNew.class

Function:

Start a new transaction. The application server logic in this package maintains a cache of all records that have been used by the application, and only updates the SQL server when a commit instruction is given, clearing the cache. The new instruction is a kind of initializer that creates a special transaction object without which no operations can be performed on the database. If you want to abandon an entire set of transactions without committing them, the new command will do that for you.

Example(s):

   new transaction


Back Previous Next