Warning, /sdk/codevis/thirdparty/soci/docs/languages/ada/index.md is written in an unsupported language. File is not indexed.

0001 # Ada Bindings
0002 
0003 * [Concepts](concepts.md)
0004 * [Idioms](idioms.md)
0005 * [API Reference](reference.md)
0006 
0007 ## Introduction
0008 
0009 SOCI-Ada is a database access library for Ada.
0010 
0011 The library itself is a wrapper for the selected functionality of the SOCI library, which is a C++ database access library recognized for its high quality and innovative interface.
0012 
0013 The SOCI-Ada library offers the following features to the Ada community:
0014 
0015 * Modular design based on dynamic backend loading. Thanks to this feature, new backends implemented within the context of the main SOCI project are immediately available for Ada programmers without any additional work. A large community of C++ users can help ensure that the new backends are well tested in a variety of environments and usage scenarios.
0016 * Native backends for major database servers ensure optimal performance and minimize configuration overhead and complexity that is usually associated with other database access methods.
0017 * Direct support for bulk operations allow to achieve high performance with queries that operate on large data sets.
0018 * Very liberal open-source license ([Boost, accepted by Open Source Initiative](http://www.opensource.org/licenses/bsl1.0.html)) that encourages both commercial and non-commercial use.
0019 * Easy to use and compact interface.
0020 
0021 Currently the following database servers are directly supported via their native interfaces:
0022 
0023 * Oracle
0024 * PostgreSQL
0025 * MySQL
0026 
0027 Other backends exist in the SOCI Git repository and can be provided with future version of the library.
0028 
0029 ## Compilation
0030 
0031 In order to use SOCI-Ada, compile the C++ parts first (core and required backends).
0032 
0033 *Note:* SOCI header files are not needed to use SOCI-Ada, only compiled SOCI libraries (core and relevant backend) need to exist to build and use SOCI-Ada programs.
0034 
0035 The SOCI-Ada library itself is a single package named `SOCI`. This package can be just imported in the target project as is or pre-built to the binary form if required.
0036 
0037 In order to link the user programs the `-lsoci_core -lstdc++` linker options need to be provided on the Unix/Linux platforms.