dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteConnection Class / Clone Method

In This Topic
    Clone Method (SQLiteConnection)
    In This Topic
    Creates a new object that is a copy of the current instance.
    Syntax
    'Declaration
     
    Public Function Clone() As Object
    public object Clone()

    Return Value

    A new SQLiteConnection object.
    Remarks

    Creates a new SQLiteConnection object with the properties that have the same values as those of the original object. However, changing properties of the new object has no influence on the values of the same properties of the original object.

    Note that state of the new instance is always Closed, regardless of the state of original instance.

    See Also