Title here
Summary here
SAP HANA Connection manager for an ODBC connection based on ADO.NET. 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 HanaOdbcConnectionManager : OdbcConnectionManager, IConnectionManager<OdbcConnection, OdbcTransaction>, IConnectionManager, IDisposable public HanaOdbcConnectionManager() public HanaOdbcConnectionManager(OdbcConnectionString connectionString)| Type | Name | Description |
|---|---|---|
| OdbcConnectionString | connectionString |
public HanaOdbcConnectionManager(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 |