Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A small C++ wrapper for the native C ODBC API | Requires C++14 since v2.12

License

NotificationsYou must be signed in to change notification settings

nanodbc/nanodbc

Repository files navigation

nanodbc-banner

A small C++ wrapper for the native C ODBC API. Please see theonline documentation foruser information, example usage, propaganda, and detailed source level documentation.

GitHub releaseGitHub commitsLicenseGitter

Build Status

BranchLinux/OSXWindowsCoverageCoverity
mainmainmaincodecovcoverity_scan

Note: The Coverity status uses thecoverity_scan branch.Whenmain has had a significant amount of work pushed to it,merge those changes intocoverity_scan as well to keep the status up to date.

Philosophy

The native C API for working with ODBC is exorbitantly verbose, ridiculously complicated, andfantastically brittle. nanodbc addresses these frustrations! The goal for nanodbc is to makedevelopers happy. Common tasks should be easy, requiring concise and simple code.

Thelatest C++ standards andbest practices areenthusiastically incorporated to make the library as future-proof as possible. To accommodateusers who can not use the latest and greatest,semantic versioning andrelease notes will clarify required C++ features and/or standards for particular versions.

Design Decisions

All complex objects in nanodbc follow thepimpl (Pointer to IMPLementation) idiom toprovide separation between interface and implementation, value semantics, and a cleannanodbc.hheader file that includes nothing but standard C++ headers.

nanodbc wraps ODBC code, providing a simpler way to do the same thing. We try to be as featurefulas possible, but I can't guarantee you'll never have to write supporting ODBC code. Personally, Ihave never had to do so.

Major features beyond what's already supported by ODBC are not within the scope of nanodbc. This iswhere thenano part of nanodbc becomes relevant: This library isas minimal as possible. Thatmeans no dependencies beyond standard C++ and typical ODBC headers and libraries to link against.No features unsupported by existing ODBC API calls.

Building

nanodbc is intentionally small enough that you can drag and drop the header and implementationfiles into your project and run with it. For those that want it, I have also providedCMake files which build a library object, or build and run the included tests.The CMake files will also support out of source builds.

Tests use theCatch test framework, and CMake will automatically fetch the latest versionof Catch for you at build time. To build the nanodbc and the tests you will also need to haveeitherunixODBC oriODBC installed and discoverable by CMake.This is easy on OS X where you can useHomebrew to install unixODBC withbrew install unixodbc,or use the system provided iODBC if you have OS X 10.9 or earlier.

The tests attempt to connect to aSQLite database, so you will have to have that and aSQLite ODBC driver installed. At the time of this writing, there happens to be a niceSQLite ODBC driver available from Christian Werner's website, also available viaHomebrew assqliteobdc! The tests expect to find a data source namedsqlite on *nix systems andSQLite3 ODBC Driver on Windows systems. For example, yourodbcinst.ini file on OS X must have asection like the following.

[sqlite]Description             = SQLite3 ODBC DriverSetup                   = /usr/lib/libsqlite3odbc-0.93.dylibDriver                  = /usr/lib/libsqlite3odbc-0.93.dylibThreading               = 2

Example Build Process

It's most convenient to create a build directory for an out of source build, but this isn'trequired. After you've used cmake to generate your Makefiles,make nanodbc will build your sharedobject.make check will build and run the tests. You can also install nanodbc to your systemusingmake install.

If the tests fail, please don't hesitate toreport it by creating an issuewith your detailed test log (prepend yourmake command withenv CTEST_OUTPUT_ON_FAILURE=1 toenable verbose output please).

cd path/to/nanodbc/repositorymkdir buildcd buildcmake [Build Options] ..make# creates shared librarymake nanodbc# creates shared librarymake tests# builds the testsmaketest# runs the testsmake check# builds and then runs testsmake examples# builds all the example programsmake install# installs nanodbc.h and shared library

Build Options

The following build options are available viaCMake command-line option-D. If youare not using CMake to build nanodbc, you will need to set the corresponding-D compile defineflags yourself.

All boolean options follow the CMakeOPTION default value convention:if no initial value is provided,OFF is used.

Use the standard CMake option-DBUILD_SHARED_LIBS=ON to build nanodbc as shared library.

If you need to use theNANODBC_ENABLE_BOOST=ON option, you will have to configure yourenvironment to useBoost.

CMake OptionPossible ValuesDetails
NANODBC_DISABLE_ASYNCOFF orONDisable all async features. May resolve build issues in older ODBC versions.
NANODBC_DISABLE_EXAMPLESOFF orONDo not build examples.
NANODBC_DISABLE_INSTALLOFF orONDo not generate install target.
NANODBC_DISABLE_LIBCXXOFF orONDo not use libc++, if available on the system.
NANODBC_DISABLE_TESTSOFF orONDo not build tests.
NANODBC_ENABLE_BOOSTOFF orONUse Boost for Unicode string convertions (requiresBoost.Locale). Workaround to issue#24.
NANODBC_ENABLE_UNICODEOFF orONEnable Unicode support.nanodbc::string becomesstd::u16string orstd::u32string.
NANODBC_ENABLE_WORKAROUND_NODATAOFF orONEnableSQL_NO_DATA workaround to issue#43.
NANODBC_OVERALLOCATE_CHAROFF orONOverallocate auto-bound n/var/char buffers to accomodate retrieving Unicode data in VARCHAR columns#219.
NANODBC_ODBC_VERSIONSQL_OV_ODBC3[...]Forces ODBC version to use. Default isSQL_OV_ODBC3_80 if available, otherwiseSQL_OV_ODBC3.

Note About iODBC

Under Windowssizeof(wchar_t) == sizeof(SQLWCHAR) == 2, yet on Unix systemssizeof(wchar_t) == 4. On unixODBC,sizeof(SQLWCHAR) == 2 while on iODBC,sizeof(SQLWCHAR) == sizeof(wchar_t) == 4. This leads to incompatible ABIs between applicationsand drivers. If building against iODBC and the build optionNANODBC_USE_UNICODE isON, thennanodbc::string will bestd::u32string. InALL other cases it will bestd::u16string.

The CI builds do not exercise a Unicode-enabled iODBC driver. As such there is no guaranteethat tests will pass in entirety on a system using iODBC. My recommendation is to use unixODBC.If you must use iODBC, considerdisabling unicode mode to avoidwchar_t issues.


Contributing

Code Style

clang-format version 15 handles all C++ code formatting for nanodbc.See our.clang-format configuration file for details on the style andcurrently required version ofclang-format specified in the comment at the top of the fileThe scriptutility/style.sh formats all code in the repository automatically.

To runclang-format against the whole nanodbc codebase:

./utility/style.sh

To runclang-format on a single file use the following.

clang-format -i /path/to/file

Please auto-format all code submitted in Pull Requests.

Source Level Documentation

Source level documentation provided viaGitHub's gh-pages is availableatnanodbc.io. To re-build and update it, preform the following stepsfrom thedoc/README.md file.

Quick Setup for Testing or Development Environments

To get up and running with nanodbc as fast as possible consider using the providedDockerfile anddocker-compose.yml orVagrantfile.

For example, to spin up adocker container suitable for testing and development of nanodbc:

$cd /path/to/nanodbc$ docker build -t nanodbc.# To build using the nanodbc already source within the container$ docker run -it nanodbc /bin/bash# Alternatively, mount the nanodbc repository into the container as a volume$ docker run -v"$(pwd)":"/opt/$(basename$(pwd))" -it nanodbc /bin/bash# Then, enter the source directory and build nanodbc:root@hash:/# mkdir -p /opt/nanodbc/buildroot@hash:/# cd /opt/nanodbc/buildroot@hash:/opt/nanodbc/build# cmake ..root@hash:/opt/nanodbc/build# make nanodbc

Or, spin up the complete multi-container environment with database services:

cd /path/to/nanodbcdocker-compose builddocker-compose up -ddockerexec -it nanodbc /bin/bash

Or, to build and ssh into avagrant VM (using VirtualBox for example) use:

cd /path/to/nanodbcvagrant upvagrant sshvagrant@vagrant-ubuntu-precise-64:~$ git clone https://github.com/nanodbc/nanodbc.gitvagrant@vagrant-ubuntu-precise-64:~$ mkdir -p nanodbc/build&&cd nanodbc/buildvagrant@vagrant-ubuntu-precise-64:~$ CXX=g++-5 cmake ..vagrant@vagrant-ubuntu-precise-64:~$ make nanodbc

Tests

One of important objectives is to maintain nanodbc covered with tests. New contributionssubmitted via Pull Requests must include corresponding tests. This is important to ensurethe quality of new features.

The good news is that adding tests is easy!

The tests structure:

  • tests/base_test_fixture.h includes a set of common test cases.
  • tests/<database>_test.cpp is a source code for an independent test program that includes both,common and database-specific test cases.

To add new test case:

  1. Intests/base_test_fixture.h file, add a new test case method tobase_test_fixtureclass (e.g.void my_feature_test()).
  2. In eachtests/<database>_test.cpp file, copy and paste theTEST_CASE_METHOD boilerplate,updating name, tags, etc.

If a feature requires a database-specific test case for each database, then skip thetests/base_test_fixture.h step and write a dedicated test case directly intests/<database>_test.cpp file.

Publish and Release Process

Once your localmain branch is ready for publishing(i.e.semantic versioning), use theutility/publish.sh script. This scriptbumps the major, minor, or patch version, then updates the repository'sVERSION.txt file, adds a"Preparing" commit, and creates git tags appropriately. For example to make a minor update youwould run./utility/publish.sh minor.Review files of CMake configuration, documentation and Sphinx configuration,and update version number wherever necessary.

Important: Always updateCHANGELOG.md with information about new changes,bug fixes, and features when making a new release.Use the./utility/changes.sh script to aid in your composition of this document.The publish script itself will attempt to verify that the changelog file has been properly updated.

To do this manually instead, use the following steps — for example a minor update from2.9.x to2.10.0:

  1. echo "2.10.0" > VERSION.txt
  2. git add VERSION.txt
  3. git commit -m "Preparing 2.10.0 release."
  4. git tag -f "v2.10.0"
  5. git push -f origin "v2.10.0"

Next, switch togh-pages branch, build latest documentation, commit and push.

Finally, announce the new release to the public.

Future work

Good to Have / Want Someday

  • Refactor tests to follow BDD pattern.
  • Update codebase to use more C++14 idioms and patterns.
  • Write more tests with the goal to have much higher code coverage.
  • More tests for a large variety of drivers. Include performance tests.
  • Clean upbind_* family of functions, reduce any duplication.
  • Improve documentation: The main website and API docs should be more responsive.
  • Provide more examples in documentation, more details, and point out any gotchas.
  • Versioned generated source level API documentation formaster and previous releases.
  • Add "HOWTO Build" documentation for Windows, OS X, and Linux.

MIT ©lexicalunit, mloskot andcontributors.


[8]ページ先頭

©2009-2025 Movatter.jp