Difference between ODBC / Wire Protocol Drivers and Native Programming
Superior performance over competing drivers - DataDirect Connect for ODBC wire protocol drivers offer significant advantages over native ODBC programming.
Advantages of Using ODBC / Wire Protocol Drivers | Disadvantages of Native Programming |
---|---|
Faster than native programming This is possible because DataDirect drivers include many performance features such as network optimization. For example, DataDirect uses compressed data packets that are allowed by the architecture of our drivers, but not by the native interface the database uses. This means significantly fewer packets are transmitted across the wire, resulting in better application performance. In addition, DataDirect drivers don't use database client libraries to communicate with the database as other drivers do, instead accessing it directly through the database's wire protocol. This eliminates the extra processing that occurs within the performance-inhibiting client libraries. | Coding to the native API of the database actually results in slower application performance than when using the ODBC interface and DataDirect wire protocol ODBC drivers. |
More flexible DataDirect ODBC drivers also offer many interoperability features such as SQL Levelingthat make coding to different databases even easier. | Requires unique, non-portable code in the language of each database the application requires. In a heterogeneous database environment, this can add considerably to development costs. |
Improves developer productivity ODBC has other programming advantages:
| Coding to the native interface of each database is time consuming. |
Lowers support costs And because DataDirect wire protocol drivers don't require database client libraries, you don't have to update these libraries every time there's a change to the database version. | You need different experts for each database you want to code to. |
Improves performance and maintenance of existing applications It also lowers your support costs because you don't have to update your applications every time there are changes to the underlying databases. | There are few options to improve the performance of a maturing application. Generally this has to come via a technical innovation in software or hardware. |