Applies To: |
|
Summary: |
Question: I have a large SQL command I need to pass to SQLExec() function. But the command is bigger than cicode can handle. How can I process this command? |
Solution: |
You may pass long SQL commands by using
the SQLSet() and SQLAppend() functions to build up the required
strings and then call the SQLExec() function. For example:
SQLSet(hSQL, "SELECT *"); For more information see the online help on SQLSet() and SQLAppend(). |
Keywords: |
Related Links
Attachments