how to configure mdb driver inodbc

View: New views
7 Messages — Rating Filter:   Alert me  

how to configure mdb driver inodbc

by Grace Lim-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

hi,
after installing mdbtools. how would i it in odbc driver manager? i cannot find the libmdbodbc.so.
 
pls help.

--

Best Regards,
Grace Lim
Suy Sing Commercial Corporation
Tel#: (632) 247-4134
Fax#: (632) 243-9190

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
mdbtools-dev mailing list
mdbtools-dev@...
https://lists.sourceforge.net/lists/listinfo/mdbtools-dev

Parent Message unknown Re: how to configure mdb driver inodbc

by Jeff Smith-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
> after installing mdbtools. how would i it in odbc driver manager? i cannot find the libmdbodbc.so.
 
During the configure step, you need to use the option --with-unixodbc=/usr/local .  That is assuming the odbc
libraries are in /usr/local/lib and the odbc headers are in /usr/local/include.  Adjust the path in this option as
needed.

 -- Jeff Smith


Don't be flakey. Get Yahoo! Mail for Mobile and
always stay connected to friends.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
mdbtools-dev mailing list
mdbtools-dev@...
https://lists.sourceforge.net/lists/listinfo/mdbtools-dev

Parent Message unknown Re: how to configure mdb driver inodbc

by Grace Lim-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.


i've tried to configure , make and make install again .
./configure --with-unixodbc=/usr    >>grace.txt 2 >&1 (since redhat has unixodbc manager (ODBCConfig )installed in /usr/bin i've used /usr) .
make >>grace.txt 2 >&1
make install >>grace.txt 2>&1
 but got errors. am i doing it wrongly? pls help
 
i've attached the error i;ve colleted from configure , make and make install
 
On 7/9/07, Jeff Smith <whydoubt@...> wrote:
> after installing mdbtools. how would i it in odbc driver manager? i cannot find the libmdbodbc.so.
 
During the configure step, you need to use the option --with-unixodbc=/usr/local .  That is assuming the odbc
libraries are in /usr/local/lib and the odbc headers are in /usr/local/include.  Adjust the path in this option as
needed.

 -- Jeff Smith


Don't be flakey. Get Yahoo! Mail for Mobile and
always stay connected to friends.



--

Best Regards,
Grace Lim
Suy Sing Commercial Corporation
Tel#: (632) 247-4134
Fax#: (632) 243-9190




-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
mdbtools-dev mailing list
mdbtools-dev@...
https://lists.sourceforge.net/lists/listinfo/mdbtools-dev

Parent Message unknown Re: how to configure mdb driver inodbc

by Jeff Smith-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
It appears that the requisite header files for unixODBC are not present.
You need to install the unixODBC-devel package appropriate for your system.

 -- Jeff Smith

===================================================

i've tried to configure , make and make install again .
./configure --with-unixodbc=/usr    >>grace.txt 2 >&1 (since redhat has unixodbc manager (ODBCConfig )installed in /usr/bin i've used /usr) .
make >>grace.txt 2 >&1
make install >>grace.txt 2>&1
 but got errors. am i doing it wrongly? pls help
 
i've attached the error i;ve colleted from configure , make and make install

gcc -DHAVE_CONFIG_H -I. -I. -I../../include -I ../../include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include -g -O2 -DSQL -DUNIXODBC -MT odbc.lo -MD -MP -MF .deps/odbc.Tpo -c odbc.c  -fPIC -DPIC -o .libs/odbc.o

odbc.c:21:17: sql.h: No such file or directory

odbc.c:22:20: sqlext.h: No such file or directory

In file included from odbc.c:28:

../../include/mdbodbc.h:28:22: odbcinst.h: No such file or directory



Be a better Heartthrob. Get better relationship answers from someone who knows.
Yahoo! Answers - Check it out.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
mdbtools-dev mailing list
mdbtools-dev@...
https://lists.sourceforge.net/lists/listinfo/mdbtools-dev

Re: how to configure mdb driver inodbc

by Grace Lim-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

i've installed the unixODBC-devel and issue again the ./configure --with-unixodbc=/usr.
i cannot still find the libmdbodbc.so.  the only libmdbodbc i found was libmdbodbc.0, libmdbodbc.0.0.0, libmdbodbc.a and libmdbodbc.la.
 
pls help.

 
On 7/10/07, Jeff Smith <whydoubt@...> wrote:
It appears that the requisite header files for unixODBC are not present.
You need to install the unixODBC-devel package appropriate for your system.

 -- Jeff Smith

===================================================


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
mdbtools-dev mailing list
mdbtools-dev@...
https://lists.sourceforge.net/lists/listinfo/mdbtools-dev

Parent Message unknown Re: how to configure mdb driver inodbc

by Jeff Smith-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
I believe the answer to the libmdbodbc.0 problem is to run (from the directory you run configure from):
   libtoolize -f -c
Then re-run ./configure ....

  -- Jeff Smith

----- Original Message ----
From: Grace Lim <mglim2@...>
To: Jeff Smith <whydoubt@...>; mdbtools-dev@...
Sent: Tuesday, July 10, 2007 2:22:29 AM
Subject: Re: [mdb-dev] how to configure mdb driver inodbc

i've installed the unixODBC-devel and issue again the ./configure --with-unixodbc=/usr.
i cannot still find the libmdbodbc.so.  the only libmdbodbc i found was libmdbodbc.0, libmdbodbc.0.0.0, libmdbodbc.a and libmdbodbc.la.
 
pls help.

 
On 7/10/07, Jeff Smith <whydoubt@...> wrote:
It appears that the requisite header files for unixODBC are not present.
You need to install the unixODBC-devel package appropriate for your system.

 -- Jeff Smith

===================================================



Get the free Yahoo! toolbar and rest assured with the added security of spyware protection.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
mdbtools-dev mailing list
mdbtools-dev@...
https://lists.sourceforge.net/lists/listinfo/mdbtools-dev

Parent Message unknown Re: how to configure mdb driver inodbc

by Grace Lim-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.


On 7/10/07, Jeff Smith <whydoubt@...> wrote:
I believe the answer to the libmdbodbc.0 problem is to run (from the directory you run configure from):
   libtoolize -f -c
Then re-run ./configure ....

  -- Jeff Smith


----- Original Message ----
From: Grace Lim <mglim2@...>
To: Jeff Smith <whydoubt@...>; mdbtools-dev@...
Sent: Tuesday, July 10, 2007 2:22:29 AM
Subject: Re: [mdb-dev] how to configure mdb driver inodbc

i've installed the unixODBC-devel and issue again the ./configure --with-unixodbc=/usr.
i cannot still find the libmdbodbc.so.  the only libmdbodbc i found was libmdbodbc.0, libmdbodbc.0.0.0, libmdbodbc.a and libmdbodbc.la.
 
pls help.

 
On 7/10/07, Jeff Smith <whydoubt@...> wrote:
It appears that the requisite header files for unixODBC are not present.
You need to install the unixODBC-devel package appropriate for your system.

 -- Jeff Smith

===================================================




Ready for the edge of your seat? Check out tonight's top picks on Yahoo! TV.



--

Best Regards,
Grace Lim
Suy Sing Commercial Corporation
Tel#: (632) 247-4134
Fax#: (632) 243-9190
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
mdbtools-dev mailing list
mdbtools-dev@...
https://lists.sourceforge.net/lists/listinfo/mdbtools-dev