Title here
Summary here
Postgres Connection manager for an ODBC connection. ODBC by default does not support a Bulk Insert - inserting big amounts of data is translated into a
insert into (...) values (..),(..),(..) statements.
This means that inserting big amounts of data in a database via Odbc can be much slower than using the native connector. Also be careful with the batch size - some databases have limitations regarding the length of sql statements. Reduce the batch size if you encounter issues here.
Type | Name | Description |
---|---|---|
OdbcConnectionString | connectionString |
Type | Name | Description |
---|---|---|
string | connectionString |
Cretes a clone of the current connection manager
Type | Description |
---|---|
IConnectionManager | A instance copy of the current connection manager |