Title here
Summary here
MariaDb 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.
public class MariaDbOdbcConnectionManager : OdbcConnectionManager, IConnectionManager<OdbcConnection, OdbcTransaction>, IConnectionManager, IDisposable public MariaDbOdbcConnectionManager() public MariaDbOdbcConnectionManager(OdbcConnectionString connectionString)| Type | Name | Description |
|---|---|---|
| OdbcConnectionString | connectionString |
public MariaDbOdbcConnectionManager(string connectionString)| Type | Name | Description |
|---|---|---|
| string | connectionString |
Cretes a clone of the current connection manager
public override IConnectionManager Clone()| Type | Description |
|---|---|
| IConnectionManager | A instance copy of the current connection manager |