Code

utils dbi: Added initial version.
authorSebastian Harl <sh@tokkee.org>
Mon, 10 Dec 2012 14:37:48 +0000 (15:37 +0100)
committerSebastian Harl <sh@tokkee.org>
Mon, 10 Dec 2012 14:37:48 +0000 (15:37 +0100)
commit5709c4b683e73cbe5592a1d5e705342cbd3205d1
treeef663d499795cad9465abab4f0abf41efc8e360f
parentbf3b8e60b2fdc493c4e04b05ce67abf69ca9a4ff
utils dbi: Added initial version.

This module provides helper functions for using libdbi. Currently, data types
and functions for managing connection options, a database connection as well
as a generic query helper are available.

The query helper (sc_dbi_exec_query()) uses a specified callback function to
handle each row as returned from the SQL query. A custom data-type (based on
the libdbi data-types) is used to pass the query results to the handler
callback.
configure.ac
src/Makefile.am
src/include/utils/dbi.h [new file with mode: 0644]
src/utils/dbi.c [new file with mode: 0644]