Title here
Summary here
A database source defines either a table or sql query that returns data from a database. Multiple database are supported. Use the corresponding connection manager that fits to your database.
SqlConnectionManager connMan = new SqlConnectionManager("Data Source=localhost");
DbSource<MyRow> source = new DbSource<MyRow>(connMan, "dbo.table");
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager |
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | |
string | tableName |
Type | Name | Description |
---|---|---|
string | tableName |