QuickObjects.DBLibrary Send comments on this topic.
DatabaseObject Constructor
See Also 
Akal.QuickObjects.DBLibrary Namespace > DatabaseObject Class : DatabaseObject Constructor

DatabaseObject

Default constructor for this class.

Overload List

OverloadDescription
DatabaseObject Constructor()DatabaseObject

Default constructor for this class.  

DatabaseObject Constructor(String)

DatabaseObject

Constructor for this class takes a connection String as the parameter.

Sets the connectionString property value with the value passed in as the parameter.

Parameters:
Description
System.StringPassed in value is used to set the ConnectionString property.


DatabaseObject dbObj = new DatabaseObject(myConnectionStringVariable);
 
DatabaseObject Constructor(String,DatabaseTypes)

DatabaseObject

Constructor for this class takes a connection String as the parameter and the type of database to which this object will be connecting.

Parameters:
Description
connStringSets the connectionString property value with the value passed in.
dBTypeSets the DBType property value with the value passed in.


DatabaseObject dbObj = new DatabaseObject(myConnectionStringVariable, DatabaseTypes.SqlServer2005);
 

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also