Difference between revisions of "SQLCOMMIT()"

From Lianjapedia
Jump to: navigation, search
Line 13: Line 13:
 
The SQLCOMMIT() function operates on the ODBC connection specified by <nStatementHandle>.
 
The SQLCOMMIT() function operates on the ODBC connection specified by <nStatementHandle>.
  
{| class="wikitable" width=100%
+
{| class="wikitable" width="100%"
!width=30%|Keywords||width=70%|Description
+
!width="30%"|Keywords||width="70%"|Description
 
|-
 
|-
 
|nStatementHandle||Statement handle to the connection
 
|nStatementHandle||Statement handle to the connection

Revision as of 10:16, 31 January 2013

Purpose

Commit a transaction

Syntax

SQLCOMMIT(<nStatementHandle>)

See Also

SQLCANCEL(), SQLCOLUMNS(), SQLCONNECT(), SQLDISCONNECT(), SQLERROR(), SQLEXEC(), SQLGETPROP() SQLMORERESULTS(), SQLPREPARE(), SQLROLLBACK(), SQLSETPROP(), SQLSTRINGCONNECT(), SQLTABLES(), SQLTRANSACTION()

Description

The SQLCOMMIT() function is used to commit a transaction. The SQLCOMMIT() function is only required when SQLTRANSACTION() is in effect on the connection.

The SQLCOMMIT() function operates on the ODBC connection specified by <nStatementHandle>.

Keywords Description
nStatementHandle Statement handle to the connection

Example

nStatHand=sqlconnect("awhr")
if nStatHand < 1
	messagebox("Cannot make connection", 16, "SQL Connect Error")
else
	messagebox("Connection made", 48, "SQL Connect Message")
	sqltransaction(nStatHand)
	sqlexec(nStatHand,"insert into dbo.doc1 (account_no, lastname, balance) values ('00889','Brown', 12000)")
	if messagebox("Commit Insert?",36,"Transaction") = 6
		sqlcommit(nStatHand)
	else
		sqlrollback(nStatHand)
	endif
	sqlexec(nStatHand,"select * from dbo.doc1")
	list
	sqldisconnect(nStatHand)
endif