Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 1.0 API Reference » ULConnectionParms class

Password property Next Page

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).

Exceptions
See also