| Home | How To | Online Documentation | Support | Download | Order |
|
|
SACommand(); SACommand( SAConnection *pConnection , const SAString &sCmd = SAString(), SACommandType_t eCmdType = SA_CmdUnknown ); Both of these constructors initialize a new SACommand object. ParameterspConnection. A pointer to the SAConnection object to be associated with the SACommand object.
sCmd. A SAString object represents command text string (an SQL statement or a stored procedure name). If it is NULL or an empty string, no command text is associated with the command, and you have to call setCommandText method later. eCmdType. Type of a command. eCmdType parameter can have one of the following values from SACommandType_t enum:
RemarksYou can create SACommand object associated with an existing connection, and set command text and command type in constructor (Syntax 2). It's not necessary to set a command type explicitly. But if you still have any reason to do it, use one of the SACommandType_t constants. If you use the constructor with no parameters, it creates a new SACommand object with no connection and no command text. To associate a connection with the command and set command text call setConnection and setCommandText methods. Server specific notesNo specific information. See alsosetConnection, setCommandText, SACommandType_t Problems and QuestionsIf you haven't found the answer to your questions or have some problems on using the Library, please, send e-mail to howto@sqlapi.com. |
|||||||||||||||||||