Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 799 Bytes

File metadata and controls

34 lines (27 loc) · 799 Bytes

DBSQLExecute

Description

Executes a SQL in the specified database connected to the current document. Note! The resultSetInstance have to be deleted with call to 'DBSQLExecuteDelete'

FUNCTION DBSQLExecute(
				database             : STRING;
				SQLQuery             : DYNARRAY[] of CHAR;
				VAR outColumnCnt     : LONGINT;
				VAR outResultSetInst : LONGINT): BOOLEAN;
def vs.DBSQLExecute(database, SQLQuery):
    return (BOOLEAN, outColumnCnt, outResultSetInst)

Parameters

Name Type Description
database STRING
SQLQuery DYNARRAY[] of CHAR
outColumnCnt LONGINT
outResultSetInst LONGINT

Examples

DBSQL

Version

Availability: from Vectorworks 2011

Category