Properties of the Transaction Object control

Transaction Object properties provide the information necessary to connect to a particular database.

In a Web page, you specify values for ActiveX properties using the HTML PARAM element.

<PARAM VALUE=value NAME="propertyname"></PARAM>

Properties

Property

Value

AutoCommit

Number. The automatic commit indicator. Values are:

  • 0 – Do not commit automatically after every database activity.

  • 1 – Commit automatically after every database activity.

dbParm

String. JDBC connection information. The typical connection string includes values for Driver and URL.

For example, this connection string uses the Sybase JConnect driver and connects to SQL Anywhere running on the local machine (localhost):

"Driver='com.sybase.jdbc3.jdbc.SybDriver',URL='jdbc:sybase:Tds:localhost:7373'"

Lock

String. The isolation level.

For information on appropriate values for JDBC, see Connecting to Your Database.

LogId

String. The name or ID of the user who will be logging on to the server.

LogPassword

String. The password that will be used to log in to the server.