This is used as the default connection type when manually instantiating an SQLSelect, SQLDelete, SQLUpdate or SQLInsert command (which all inherit from SQLStatement) and is set by the last Database.Connect function's ConnectionType argument. However, the Database class does not rely on this property as the ConnectionType property is set before any SQL statements are executed. This allows different Database instances to use different databases.

Namespace: DatabaseObjects.SQL
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
public static Database..::..ConnectionType DefaultConnectionType { get; set; }
Visual Basic
Public Shared Property DefaultConnectionType As Database..::..ConnectionType
	Get
	Set
Visual C++
public:
static property Database..::..ConnectionType DefaultConnectionType {
	Database..::..ConnectionType get ();
	void set (Database..::..ConnectionType value);
}

See Also