Executes an SQL statement on a new connection from the connection pool or if in transaction mode the current connection. ConnectionController.Start or ConnectionController.Finished do not have to be called.

Namespace: DatabaseObjects
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
[ObsoleteAttribute("Use DatabaseObjects.ConnectionScope")]
public int ExecuteNonQueryWithConnect(
	ISQLStatement objSQLStatement
)
Visual Basic
<ObsoleteAttribute("Use DatabaseObjects.ConnectionScope")> _
Public Function ExecuteNonQueryWithConnect ( _
	objSQLStatement As ISQLStatement _
) As Integer
Visual C++
public:
[ObsoleteAttribute(L"Use DatabaseObjects.ConnectionScope")]
int ExecuteNonQueryWithConnect(
	ISQLStatement^ objSQLStatement
)

Parameters

objSQLStatement
Type: DatabaseObjects.SQL..::..ISQLStatement

[Missing <param name="objSQLStatement"/> documentation for "M:DatabaseObjects.Database.ConnectionController.ExecuteNonQueryWithConnect(DatabaseObjects.SQL.ISQLStatement)"]

Return Value

[Missing <returns> documentation for "M:DatabaseObjects.Database.ConnectionController.ExecuteNonQueryWithConnect(DatabaseObjects.SQL.ISQLStatement)"]

See Also