OpenDBX 1.3.6 (Development branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News OpenDBX 1.3.6 (Development branch)
# 1  
Old 02-26-2008
OpenDBX 1.3.6 (Development branch)

The OpenDBX libraries provide a unified andconsistent API for software developers todifferent database management systems. The C andC++ libraries aim to implement access to thenative database interfaces efficiently via a thinabstraction layer. They consist of a basic set offunctions that are part of all vendor databaselibraries and can be extended by additionalfunction blocks. Currently, Firebird/Interbase, MSSQL Server, MySQL, Oracle, PostgreSQL, SQLite 2and 3, and Sybase ASE are supported.License: GNU Lesser General Public License (LGPL)Changes:
This release features a small application for executing SQL statements from a shell environment. It can be used either interactively by typing commands directly into the terminal or via batch mode feed by stdin. Changes in the library include renaming the C++ header file to conform to the convention of the STL. The C++ API was enhanced, and consequently accepts not only strings but also char pointers. While adding these functions, the parameter signature of the existing functions Conn::create() and Stmt::bind() was streamlined.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
F77(3pm)						User Contributed Perl Documentation						  F77(3pm)

NAME
ExtUtils::F77 - Simple interface to F77 libs DESCRIPTION
This module tries to figure out how to link C programs with Fortran subroutines on your system. Basically one must add a list of Fortran runtime libraries. The problem is their location and name varies with each OS/compiler combination! This module tries to implement a simple 'rule-of-thumb' database for various flavours of UNIX systems. A simple self-documenting Perl database of knowledge/code for figuring out how to link for various combinations of OS and compiler is embedded in the modules Perl code. Please help save the world by sending database entries for your system to karl_pgplot@mac.com Note the default on most systems is now to search for a generic 'GNU' compiler which can be g77, gfortran or g95 and then find the appropriate link libraries automatically. (This is the 'Generic' 'GNU' database entry in the code.) The library list which the module returns can be explicitly overridden by setting the environment variable F77LIBS, e.g. % setenv F77LIBS "-lfoo -lbar" % perl Makefile.PL ... SYNOPSIS
use ExtUtils::F77; # Automatic guess use ExtUtils::F77 qw(sunos); # Specify system use ExtUtils::F77 qw(linux g77); # Specify system and compiler $fortranlibs = ExtUtils::F77->runtime; METHODS
The following methods are provided: o runtime Returns a list of F77 runtime libraries. $fortranlibs = ExtUtils::F77->runtime; o runtimeok Returns TRUE only if runtime libraries have been found successfully. o trail_ Returns true if F77 names have trailing underscores. o compiler Returns command to execute the compiler (e.g. 'f77'). o cflags Returns compiler flags. o testcompiler Test to see if compiler actually works. More methods will probably be added in the future. AUTHOR
Karl Glazebrook (karlglazebrook@mac.com). perl v5.10.1 2011-01-01 F77(3pm)