Class wwHTTPSQL

This class can be used to Execute SQL statements on a Web Server and return the results back as a cursor to the client application. Any SQL command as well as calling a method on the remote server SQL handler object (essentailly allowing remote method calls) are supported.

wwHTTPSQL works by calling a server piece that must be created with a few lines of code at a give URL. This URL must be specified on the client and implemented on the server. The server piece in turn implements the wwHTTPSQLServer class which handles the remote SQL request.

Note

This class is based on wwHTTP and thus inherits all of wwHTTP's HTTP properties to allow you to configure things like username/password and proxy configuration. Typical properties you'll want to access are: nConnectTimeout, cUserName, cPassword,cHTTPProxyName,cHTTPProxyUsername, cHTTPProxyPassword

Note that the wwHTTPSQL/wwHTTPSQLServer pair is a generic processing engine and can be used independently of Web Connection. In fact the class can be used in a non-HTTP environment. For example you could use this same mechanism in a Message Queue or Event based system where the messages are passed using XML. Since both the client and server use XML for messages the transport mechanism is completely switchable.

Relation wwHttp wwHttpSql

Remarks

This class is used by wwBusiness when nDataMode is set to 4 (Web Data).

This class works in conjunction of a server side wwHTTPSQLServer implementation which means a Web Server running a Visual FoxPro backend is required. This means Web Connection, ASP with a COM object etc. in addition to running whatever backend SQL engine is running.

Class Members

MemberDescription
AddSQLParameter Adds named parameters that can be used in SQL statements or commands. Parameters are marshalled to the server and recreated on the server running the SQL statement on the server. SQL Server will use…
o.AddSQLParameter(lcName,lvValue,lcType,llReturn)
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…
o.Execute(lcSQL)
GetSQLReturnValue Returns a named parameter that was sent in as an output parameter in AddSQLParameter.
o.GetSQLReturnValue(lcVarName)
CreateRequestXml This low level method creates an XML request from the current object's property state into the cRequestXml property. This is a low level method used internally, but can be used externally to create…
o.CreateRequestXml()
CreateRequestXml This low level method parses the XML in the cResponseXml property and extracts the results into a cursor, return value or Error message depending on the type of query and result. This is a low level…
o.CreateResponseXml()
cConnectString An ODBC connectstring that can be used on the server side to connect to the data-source.
cRequestXML Contains the request XML sent to the Web server after the call is complete.
cResponseXML The XML response from the Web Server. Actually this is the raw HTTP response, so if the server responded with HTML or a server error you can see it here, while the various error mechanisms handle…
cServerUrl The URL on the server to call to execute the SQL statement.
lUTF8 Flag to tell the server to return the XML result travelling over the wire in UTF8 format. This flag usually is not required as the data coming from the server is automatically converted into a…
nMaxBufferSize The maximum size in bytes of the data buffer to return from the server. This is the size of the XML string that's sent down from the server. If this string exceeds this size the server returns an…
nResultMode Determines how cursors are returned from the object. 0 - VFP Cursor* 2 - XML (no cursor) By default VFP cursor data is returned and the cResponseXML property is always set with the raw XML…
vReturnValue The return value from a stored procedure or Fox method call.
nTransportMode Determines how cursors are sent over the wire from the server side. **0 - XML * (default if not specified) using wwXML 1 - VFP 7 CURSORTOXML/XMLTOCURSOR 2 - EncodeDBF() encoded VFP cursors ** 2…

Assembly: wwHttpSql.prg


See also

Class wwHTTPSQLServer

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