wwHTTPSQL::Execute

This high level method handles calling the remote server with the property settings made on the current object.

Implicitly calls CreateRequestXml and ParseResultXml and makes the HTTP calls 'in between'.

Generally this is the only method that you will use with this component.

o.Execute(lcSQL)

number of records returned or 0 for non exec commands. -1 on error. Also ALWAYS check lError.

Parameters

lcSQL
Sql string to be executed on the server

Example

foxpro
foxpro
oHSQL = CREATEOBJECT("wwHTTPSQL") oHSQL.cServerUrl = "http://localhost/wconnect/wc.dll?http~httpsql" oHSQL.cSQLCursor = "TDevelopers" * ** Plain SQL statements lnCount = oHSQL.Execute("select * from wwDevRegistry") ? lnCount IF oHSQL.lError ? oHSQL.cErrorMsg ELSE BROWSE ENDIF

See also

Class wwHTTPSQL

© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic