Difference between revisions of "Libdbi"

From CBLFS
Jump to navigationJump to search
(New page: {| style="text-align: left; background-color: AliceBlue;" |-valign="top" !Download Source: | http://downloads.sourceforge.net/libdbi/libdbi-0.8.3.tar.gz |} ---- {{Package-Introduction|li...)
 
Line 10: Line 10:
  
 
== Dependencies ==
 
== Dependencies ==
 +
 +
{{Note|To make this library usable you must also have [[Libdbi-Drivers]] installed}}
  
 
== Non-Multilib ==
 
== Non-Multilib ==

Revision as of 10:58, 14 September 2008

Download Source: http://downloads.sourceforge.net/libdbi/libdbi-0.8.3.tar.gz

Introduction to Libdbi

libdbi implements a database-independent abstraction layer in C, similar to the DBI/DBD layer in Perl. Writing one generic set of code, programmers can leverage the power of multiple databases and multiple simultaneous database connections by using this framework.

Project Homepage: http://libdbi.sourceforge.net/

Dependencies

Caution.png

Note

To make this library usable you must also have Libdbi-Drivers installed

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
    --libdir=/usr/lib32 &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    --libdir=/usr/lib64 &&
make

Install the package

make install