lunes, 19 de septiembre de 2011

Libodbc++ Mini Tutorial

As some of you know, I'm as obsessed over C++ as I'm crazy about Python. C++ programs (as a good friend told me once) are like art masterpieces: elegant, classy and not everybody can understand them ;).


I've been developing Python software for some time now and I've come across pretty good libraries and modules. One of them is Django, and specially it's ORM. Django is a great piece of software that allows you to build awesome web applications faster than saying “I love Perl's catalyst”. The ORM is also awesome on its own, letting you, amongst other neat things, write connectors that integrate with its codebase  pretty easy (sometime I'll write about the iSeries connector I wrote, with introspection and select clauses). 


Why did I start this post talking about C++? Well, the reason why is because I want an ORM for C++. Obviously, I know I'm not going to get anywhere near a Django ORM or Ruby's ActiveRecord, but something can be done. I'm aware of some libraries that provide some ORM functionality already like LiteSQL (not the same as SQLite, of course), QxORM, ODB, Hiberlite, etc. but I really didn't dig any of them because some of them only support one RDBMS (eg. SQLite or PostgreSQL), some can only be used with Qt (ouch!), some require their unique type of mapping file specification, or use a kind of magic that simply is more like voodoo than anything else.


So, I set my mind to design and develop an ORM library for C++, that will sit on top of ODBC (so we can resolve the any RDBMS problem), and will make use libodbc++ to connect to the underlaying ODBC implementation (in my case, unixODBC). The name of this ORM will be SeORM, as in SuppaEZ-ORM (expect a github push anytime soon), and it's aim is to provide an easy-to-use, and easy-to-integrate ORM library so you can (initially) provide basic Object to DB communication (however, don't expect a full blown ORM, cause it just won't happen).


Although this writing served to announce it,  the original motive for this post was to talk a bit about libodbc++, instead of telling you about SeORM. While researching libodbc++, I came across a ton of threads and questions regarding the usage of libodbc++. It seems like a full tutorial is missing and that basic usage must be derived from other ODBC libraries (mostly in C) or from the source code for libodbc++. So, I thought about writing a small tutorial (that will be followed by a more complete one, later on), on using libodbc++.


Small tutorial on libodbc++


As the only RDBMS I have available is PostgreSQL (do you need something else?), I will base this tutorial on using libodbc++ to communicate with PostgreSQL. If you are using another RDBMS, you can change the PostgreSQL specific parts and suit it up to your tech.

Let's create a DB with a basic table:


template1=# CREATE DATABASE test;
CREATE DATABASE
template1=# \c test
You are now connected to database "test".
test=# CREATE TABLE temp (id int, name varchar(100));
CREATE TABLE

So, by now we should have a new DB and a table called temp with two columns (one integer and a varchar one).


You are free now to make some inserts there, and/or create a user to manage your new DB. As this is a small test, I'll leave postgres as the user to connect to the RDBMS.


Now, we are going to need our odbc*.ini files. Let's start with the odbcinst.ini which is the file that holds the locations and definitions for the ODBC drivers.


neurogeek@kafka ~ $ cat /etc/unixODBC/odbcinst.ini

[ODBC]
Trace=yes
TraceFile=/tmp/odbc_log.txt

[PostgreSQL]
driver=/usr/lib/psqlodbcw.so
setup=/usr/lib/psqlodbcw.so

The [ODBC] section is global, and this one tells unixODBC (BTW, I'm using unixODBC), that it should trace all calls as to debug ODBC connections. If you don't want to debug your connections or you are setting this in production mode, just omit this section (*PLEASE*).

The [PostgreSQL] basically tells unixODBC that you have a driver that you are going to be referencing using that name (PostgreSQL) and that the shared library for that driver is located at /usr/lib/psqlodbcw.so.

That's our odbcinst.ini. Now, let's create our DSN.

neurogeek@kafka ~ $ cat /etc/unixODBC/odbc.ini
[TEST]
driver=PostgreSQL
Servername=localhost
Username=postgres
Password=********
Port=5432
Database=test

Here's my odbc.ini for this tutorial. You define a [TEST] section (just a name, can be anything you want except ODBC, I guess). You write the driver, Servername, Username, Password, Port, Database information (pretty self-explanatory) and you are set. As per ODBC tutorials and articles, you could omit some of these configuration parameters and provide them when you are creating the connection in the code.


Now that we have everything set up, at least ODBC-wise, let's start by emerging libodbc++.


neurogeek@kafka ~ $ emerge -av libodbc++


These are the packages that would be merged, in order:
Calculating dependencies... done!


[ebuild   R   ~] dev-db/libodbc++-0.2.5-r1  0 kB [1]


Total: 1 package (1 reinstall), Size of downloads: 0 kB
Portage tree and overlays:
[0] /usr/portage
[1] /usr/local/portage


Once we emerge this library, we are going to have access to libodbc++.so.


Our test C++ program is below. What it does is: get access to a DriverManager instance and open a Connection to a given DSN (here you could specify some other parameters like password, if you didn't provide it in the odbc.ini config file).


Then you create a query (statement) and execute it, gettin a ResultSet you can iterate and get the results of your columns.


//================================================================
// Name        : OdbcTest.cpp
// Author      : Jesus Rivero (Neurogeek) //<jesus.riveroa@gmail.com ,
//                   neurogeek@gentoo.org>
// Version     : 0.1
// Copyright   : 2011 Jesus Rivero
// Description : Example on how to use ODBC in C++
//=================================================================
#include #include #include #include #include using namespace std; using namespace odbc; int main(int argc, char **argv) {     //Get the Driver manager
    DriverManager *dm;
    //Open the connection, specifiying the DSN.     Connection *c = dm->getConnection("DSN=Prueba");     //Create the Query     PreparedStatement *s = c->prepareStatement(                  ODBCXX_STRING_CONST("SELECT id, name FROM temp"));
    ResultSet *r;     //Execute the Query     s->execute();
    //Get initial ResultSet     r = s->getResultSet();
    while(r->next())     {
        //Extract column information         cout << "Column (Id): " << r->getInt("id") << endl;         cout << "Column (Name): " << r->getString("name") << endl;     }     //Clean everything     delete r;     delete s;     delete c;         return 0; }



There are a lot of other things you could do with libodbc++, like accessing Database and Table metadata (yes like column names and types) and other pretty neat stuff.


I hope this serves you well. As soon as I advance with SeORM, I'll post more stuff about it and libodbc++.


Happy coding!

5 comentarios:

  1. Hi,

    I am using gentoo and unixODBC-2.3.0 and libodbc++-0.2.5. I am trying to configure ODBC for postgresql to manage a database. When creating the odbcinst.ini file, I noticed that I do not have the /usr/lib/psqlodbcw.so file. If I specify the driver as /usr/lib/libodbc.so, when I run echo "select 1" | isql -v test (like your example) I get the following error:


    [IM004][unixODBC][Driver Manager]Driver's SQLAllocHandle on SQL_HANDLE_HENV failed [ISQL]ERROR: Could not SQLConnect


    What am I missing here?

    Thanks

    ResponderEliminar
  2. Hey theAsteriskUser,

    If you are missing /usr/lib/psqlodbcw.so, then is because you are missing the PostgreSQL ODBC driver and you need that one to make the code here work.

    The PostgreSQL ODBC driver is in the Postgresql Experimental Overlay:

    http://overlays.gentoo.org/proj/postgresql/browser/experimental/dev-db/psqlodbc

    The package is called dev-db/psqlodbc

    Install that, it provides the missing file.

    ResponderEliminar
    Respuestas
    1. Due to http://psqlodbc.projects.postgresql.org/release.html There was 9.1.100 released. So ebuild in that overlay is too old (it didn't compile with my postgresql-9.1 and unixODBC-2.3.1). So I renew it. You can find ebuild in my personal overlay see git://github.com/hoxnox/hoxnox-portage-overlay.git.

      Eliminar
  3. Neurogeek, thanks! You saved my day!

    ResponderEliminar
    Respuestas
    1. Hi Kim,

      Glad to hear that!

      Regarding the new version, I'll see if I can push it to Gentoo. Thanks a lot for the heads up!.

      Eliminar