Class ConnectionUriBuilder

    Definition

    Namespace:
    Tizen.Data.Tdbc
    Assembly:
    Tizen.Data.Tdbc.dll

    Provides a simple way to create and manage the contents of connection uri used by the Connection class.

    public class ConnectionUriBuilder : NameValueCollection, ICollection, IEnumerable, IDeserializationCallback, ISerializable
    Inheritance
    object
    System.Collections.Specialized.NameObjectCollectionBase
    System.Collections.Specialized.NameValueCollection
    ConnectionUriBuilder
    Implements
    System.Collections.ICollection
    System.Collections.IEnumerable
    System.Runtime.Serialization.IDeserializationCallback
    System.Runtime.Serialization.ISerializable

    Constructors

    View Source

    ConnectionUriBuilder()

    The constructor of ConnectionUriBuilder class.

    Declaration
    public ConnectionUriBuilder()

    Properties

    View Source

    Driver

    Gets or sets name of the driver.

    Declaration
    public string Driver { get; set; }
    Property Value
    Type Description
    string
    View Source

    Host

    Gets or sets the host name or IP address of a database server.

    Declaration
    public string Host { get; set; }
    Property Value
    Type Description
    string
    View Source

    this[string]

    Gets or sets value of key.

    Declaration
    public string this[string key] { get; set; }
    Parameters
    Type Name Description
    string key
    Property Value
    Type Description
    string
    View Source

    Password

    Gets or sets the name of the password of the user.

    Declaration
    public string Password { get; set; }
    Property Value
    Type Description
    string
    View Source

    Port

    Gets or sets port number of database server.

    Declaration
    public int Port { get; set; }
    Property Value
    Type Description
    int
    Exceptions
    Type Condition
    System.ArgumentOutOfRangeException

    The port number is out of range.

    View Source

    Uri

    Gets the Uri object.

    Declaration
    public Uri Uri { get; }
    Property Value
    Type Description
    System.Uri
    View Source

    UserName

    Gets or sets the name of the user that accesses the database.

    Declaration
    public string UserName { get; set; }
    Property Value
    Type Description
    string

    Implements

    System.Collections.ICollection
    System.Collections.IEnumerable
    System.Runtime.Serialization.IDeserializationCallback
    System.Runtime.Serialization.ISerializable
    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX