unixODBC 2.2.13 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News unixODBC 2.2.13 (Default branch)
# 1  
Old 11-18-2008
unixODBC 2.2.13 (Default branch)

The unixODBC project provides Unix applicationswith the same ODBC 3.51 API and facilitiesavailable under Windows. It provides a DriverManager that supports the full ODBC API andperforms the ODBC 3 to ODBC 2 translations withUNICODE to ANSI conversion. It also includes a setof graphical utilities that allow users to specifyconnections to DBMSes to be used by applications,a collection of ODBC drivers including a simpletext based driver, an NNTP driver, a Postgresdriver and others, and a selection of templatesand libraries that to aid in the construction ofODBC drivers. It works with MySQL, Postgres,StarOffice/OpenOffice, Applixware, iHTML, PHP,Perl DBD::ODBC, and many other applications anddrivers. Connection pooling is also provided toincrease performance with applications such as PHP.License: GNU Lesser General Public License (LGPL)Changes:
Many bugs were fixed, but the most importantchange is to switch the default way the drivermanager builds on 64-bit platforms withsizeof(SQLLEN) equal to 8.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. HP-UX

Failed to "make" UNIXODBC

Hello, I am a newbie in dealing with UNIX and HP-UX. May I know how to solve this problem where the "unknown input file type" message appear when I try to install unixODBC onto my HP-UX 11.31 ia64? Actually, I am trying to install MySQL Connector ODBC into the HP-UX server but it showed an error... (2 Replies)
Discussion started by: MissX
2 Replies

2. UNIX for Dummies Questions & Answers

Got Error Using Oracle Instant Client with UNIXODBC

Server : AIX 5.3 UnixODBC = 2.2.15pre Driver = Oracle ODBC Instant Client AIX 64bit, Oracle Basic Instant Client AIX 64bit We tried to connect Oracle 11g(Windows) from AIX. Anyway when we try to use isql to access the connection and we got error message as below: $ isql -v... (2 Replies)
Discussion started by: raymond p
2 Replies

3. Linux

rpm packaging issue for unixodbc driver manager

Hi All, I am trying to make rpm package for unixODBC driver manager 2.3.0 using below spec file. During rpmbuild i am getting the error. Can you pls advice how we can overcome this issue %define name unixODBC %define ver 2.3.0 %define prefix /usr %define sysconfdir /etc %define libdir... (2 Replies)
Discussion started by: kamauv234
2 Replies

4. Red Hat

Trouble with installed / not installed rpm unixODBC/libodbc.so.1

Hey there, i run 1: on my server (RHEL 6) and getting response that the libodbc is not installed. If i use yum for installation, it tells me, there is no package like this ( 2: ). Since in the description of Definiens is mentioned that the Run-time dependency is unixODBC (libodbc.so.1), I assume... (2 Replies)
Discussion started by: rkirsten
2 Replies

5. Red Hat

Missing dependencies updating unixODBC / MySQL Connector

I have installed mysql-connector-odbc-5.1.5-0.i386.rpm and libtools on my Fedora12 system. Updating with yum says that there is nothing to update. Updating with rpm -Uvh mysql-connector-odbc-5.1.7-0.i386.rpm fails with the same missing dependencies as for the 64-bit version. Should I force... (4 Replies)
Discussion started by: Bengbers
4 Replies

6. Shell Programming and Scripting

Connecting to MS SQL database from bash (using unixODBC)

I've installed unixODBC and I would like to connect to a MS SQL (2005) database from a bash script. Can you post a code example? Thank you! :D J. (0 Replies)
Discussion started by: ph0enix
0 Replies

7. Shell Programming and Scripting

DBD::ODBC::st fetchrow_hashref failed: [unixODBC][Oracle][ODBC]Numeric value out of r

Here is part of my program code: #Collect the output of test database and count the no #of rows too while(my @array = $tstDbStatementHandle->fetchrow_array) { push @tstDbOutputArray,; $tstDbOutputRows++; } ... (3 Replies)
Discussion started by: sameerstephen
3 Replies

8. HP-UX

unixODBC - Problems in the execution of isql

I installed the unixODBC driver but when I execute isql, returns the following error: ----- ERROR ----- Can't open lib '/usr/local/lib/libmyodbc3.sl' : Call to mmap() failed - TEXT /usr/local/lib/libmyodbc3.sl ERROR: Could not SQLConnect ----- DRIVER ----- /usr/local/lib usrv45: ls -la... (11 Replies)
Discussion started by: paulexpert
11 Replies

9. HP-UX

to install unixODBC with problems

I'm trying to install the unixODBC in HP-UX 11.11 (64 bits), but when executing the ./configure I got the following results: root@server:/usr/local/unixODBC-2.2.11# ./configure checking for a BSD-compatible install... /opt/imake/bin/install -c checking whether build environment is sane... yes... (2 Replies)
Discussion started by: paulexpert
2 Replies
Login or Register to Ask a Question
odbcinst.ini(5) 					       unixODBC manual pages						   odbcinst.ini(5)

NAME
/etc/odbcinst.ini - An unixODBC drivers configuration DESCRIPTION
/etc/odbcinst.ini is a text configuration file for unixODBC drivers. It can be edited by hand, but the recommended way to update this file is to use the odbcinst(1) utility. FILE FORMAT
The general .ini file format is: [SectionName1] key1 = value1 key2 = value2 ... [SectionName2] key1 = value1 key2 = value2 ... Each ODBC driver has its own section and can be referred to by the name of its section. Recognized configuration keys are: Description A text string briefly describing the driver. Driver A filesystem path to the actual driver library. Setup A filesystem path to the driver setup library. FileUsage odbcinst(1) entry, if you edit the configuration file by hand, you have to supply it yourself. TEMPLATE FILES The recommended way to manage the drivers is using the odbcinst(1) utility. You can install the drivers by supplying it with template file, which has the same format as this file. EXAMPLES
An example of the actual PostgreSQL driver: [PostgreSQL] Description = PostgreSQL driver for GNU/Linux Driver = /usr/lib/psqlodbcw.so Setup = /usr/lib/libodbcpsqlS.so FileUsage = 1 By specifying the driver like that, you can then reference it in the odbc.ini(5) as follows: Driver = PostgreSQL The recommended way to add that driver is by creating template file containg: [PostgreSQL] Description = PostgreSQL driver for GNU/Linux Driver = /usr/lib/psqlodbcw.so Setup = /usr/lib/libodbcpsqlS.so and call the odbcinst(1): # odbcinst -i -d -f template.ini SEE ALSO
odbcinst(1), odbc.ini(5) AUTHORS
The authors of unixODBC are Peter Harvey <pharvey@codebydesign.com> and Nick Gorham <nick@easysoft.com>. For the full list of contributors see the AUTHORS file. COPYRIGHT
unixODBC is licensed under the GNU Lesser General Public License. For details about the license, see the COPYING file. version 2.3.1 Thu 27 Jun 2013 odbcinst.ini(5)