It depends on how you are connected - ODBC or ADO. The SQLEXEC( ) Function Help File extry shows these examples:
Code:
* Call a stored procedure with no parameters.
SQLEXEC(m.lnConn, 'sp_who', 'activeusers')
BROWSE
* Execute stored procedure with an INPUT parameter.
SQLEXEC(m.lnConn, 'exec byroyalty ?lnPercent','HalfOffAuthors')
with regards to the connection, does it differ if i were to use ADO or ODBC connection??
with regards to the parameters that you have stated above, the 'activeusers' - is this the name of the table where the records are supposed to be extracted from??
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.