dbsetluser

DB Library for C

DB Library for C

dbsetluser

Sets the username in the LOGINREC structure.

Syntax

RETCODE DBSETLUSER (
PLOGINREC
loginrec,
LPCSTR
username );

Arguments

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 Microsoft® SQL Server™ 2000. 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

dbsetlhost

dbopen

dbsetlpwd

dbsetlapp