DBSETLUSER
Sets the username in the LOGINREC structure.
Syntax
RETCODE DBSETLUSER (
PLOGINREC loginrec,
LPCSTR username );
where
-
loginrec
-
Is a pointer to a LOGINREC structure, which is passed as a parameter to dbopen. To get one of these pointers, call dblogin.
-
username
-
Is the username that is sent to SQL Server. It must be a null-terminated character string. The maximum length of the string is 30 characters, not including the null-terminating character. SQL Server uses it to determine who is attempting the connection. The SQL Server usernames are defined in the syslogins table in the master database.
Returns
SUCCEED or FAIL.
Remarks
For DBSETLUSER to have any effect, it must be called before dbopen.
See Also
dblogin, dbopen, DBSETLAPP, DBSETLHOST, DBSETLPWD