UserID property

Specifies an authenticated user for the database.

Syntax
Visual Basic

Public Property UserID As String
C#

public string  UserID  { get; set; }
Property value

A string specifying a database user ID. The default value is a null reference (Nothing in Visual Basic).

Remarks

User IDs are case-insensitive.

Databases are initially created with a single authenticated user named DBA.

If both the user ID and password are not supplied, the user DBA with password sql are used. To make the database more secure, change the user DBA's password or create new users (using ULConnection.GrantConnectTo) and remove the DBA user (using ULConnection.RevokeConnectFrom).

See also