Re: Postgresql ODBC driver not found

2021-09-26 Thread Henning Follmann
On Sun, Sep 26, 2021 at 12:10:39AM +0200, Pierre Couderc wrote: > > On 9/25/21 3:46 PM, Henning Follmann wrote: > > > > have you tried to use the odbc lib from unixodbc instead of > > libiodbc? > > > > I think you are right on many other points... > >

Re: Postgresql ODBC driver not found

2021-09-25 Thread Pierre Couderc
On 9/25/21 3:46 PM, Henning Follmann wrote: have you tried to use the odbc lib from unixodbc instead of libiodbc? I think you are right on many other points... But particularly on this one ! I did remove libodbc2-dev and install unixodbc-dev and now it is OK...!! Wow ! Thank you very

Re: Postgresql ODBC driver not found

2021-09-25 Thread Henning Follmann
t; > > > You hare fully right, I have corrected, but I have the same result and no > more idea.. : I do not have much time this weekend, but I will try to set up my computer to reproduce your setup - maybe on Monday ... In the meanwhile a few thoughts, have you tried to use the odbc lib

Re: Postgresql ODBC driver not found

2021-09-25 Thread Pierre Couderc
On 9/24/21 5:31 PM, Henning Follmann wrote: and I see you do not do any error checking. This would be a first step to find out where it fails. I added some code... You hare fully right, I have corrected, but I have the same result and no more idea.. : nous@pcouderc:~/projets//build$

Re: Postgresql ODBC driver not found

2021-09-24 Thread Henning Follmann
On Thu, Sep 23, 2021 at 11:55:00PM +0200, Pierre Couderc wrote: > Thenk you, Henning, thank you Gregory . > > On 9/23/21 5:49 PM, Gregory Seidman wrote: > > On Thu, Sep 23, 2021 at 08:18:45AM -0400, Henning Follmann wrote: > > > > > I don't see where you ask fo

Re: Postgresql ODBC driver not found

2021-09-23 Thread Pierre Couderc
Thenk you, Henning, thank you Gregory . On 9/23/21 5:49 PM, Gregory Seidman wrote: On Thu, Sep 23, 2021 at 08:18:45AM -0400, Henning Follmann wrote: I don't see where you ask for the PostgreSQL ODBC connection in particular. Maybe I'm the one missing something? You are right, I am

Re: Postgresql ODBC driver not found

2021-09-23 Thread Gregory Seidman
   driver, sizeof(driver), > > > > &driver_ret, > > > >    attr, sizeof(attr), > > > > &attr_ret))) { > > > >     direction = SQL_FETCH_NEXT; > > > >     printf("%s - %s\n&qu

Re: Postgresql ODBC driver not found

2021-09-23 Thread Henning Follmann
On Thu, Sep 23, 2021 at 08:44:42AM +0200, Pierre Couderc wrote: > Thank you very much! > > See below : > > On 9/22/21 3:37 PM, Henning Follmann wrote: > > On Wed, Sep 22, 2021 at 11:07:28AM +0200, Pierre Couderc wrote: > > > It is here I see it/them with: > > > > > > odbcinst -q -d > > > > > >

Re: Postgresql ODBC driver not found

2021-09-22 Thread Pierre Couderc
Thank you very much! See below : On 9/22/21 3:37 PM, Henning Follmann wrote: On Wed, Sep 22, 2021 at 11:07:28AM +0200, Pierre Couderc wrote: It is here I see it/them with: odbcinst -q -d but not with :   SQLHENV env;   SQLCHAR driver[256];   SQLCHAR attr[256];   SQLSMALLINT driver_ret;

Re: Postgresql ODBC driver not found

2021-09-22 Thread Henning Follmann
On Wed, Sep 22, 2021 at 11:07:28AM +0200, Pierre Couderc wrote: > It is here I see it/them with: > > odbcinst -q -d > > but not with : > >   SQLHENV env; >   SQLCHAR driver[256]; >   SQLCHAR attr[256]; >   SQLSMALLINT driver_ret; >   SQLSMALLINT attr_ret; >   SQLUSMALLINT direction; >   SQLRETUR

Postgresql ODBC driver not found

2021-09-22 Thread Pierre Couderc
It is here I see it/them with: odbcinst -q -d but not with :   SQLHENV env;   SQLCHAR driver[256];   SQLCHAR attr[256];   SQLSMALLINT driver_ret;   SQLSMALLINT attr_ret;   SQLUSMALLINT direction;   SQLRETURN ret;   SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &env);   SQLSetEnvAttr(env, SQL_

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-09 Thread Étienne Mollier
is not yet in backports. > https://packages.debian.org/search?keywords=odbc-mariadb&searchon=names&suite=all§ion=all&sourceid=mozilla-search > I was merely thinking that if it becomes useful to people, then it might be worth putting some effort in a backport maintenance. Kind Regards, :

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-09 Thread Joe
On Tue, 08 Oct 2019 21:54:00 -0400 John Covici wrote: > Well, I got it from git and it built correctly, the instructions were > a bit different and it downloaded something during the build as well, > so I hope it works, I will be testing soon. > Best of luck. If it looks OK, please come back her

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread Charles Curley
On Tue, 08 Oct 2019 21:51:23 -0400 John Covici wrote: > Do you think this package is in buster backports and if so, how do I > access that repository? https://backports.debian.org/ However, it is not yet in backports. https://packages.debian.org/search?keywords=odbc-mariadb&sear

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread John Covici
I need for this to > > work properly? > > As of the build question initially present, the source package > mariadb-connector-odbc build-depends on libmariadb-dev, but the > documentation of the source code provided directly from MariaDB, > in the file BUILD.md, mentions unixod

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread John Covici
2019, but after the buster release freeze. You could check the > > > dependencies against buster (I don't have one, my former stables are now > > > oldstable): https://packages.debian.org/sid/odbc-mariadb > > > If they do match, the .deb is available here. > >

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread John Covici
These are the instructions I have, my application needs odbc and nothing I can do about it. On Tue, 08 Oct 2019 15:30:02 -0400, Joe wrote: > > On Tue, 08 Oct 2019 15:02:26 -0400 > John Covici wrote: > > > I am on stable, (buster) and I have no such package. I wonder if

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread Étienne Mollier
o I need for this to > work properly? As of the build question initially present, the source package mariadb-connector-odbc build-depends on libmariadb-dev, but the documentation of the source code provided directly from MariaDB, in the file BUILD.md, mentions unixodbc-dev, but misses the neces

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread Étienne Mollier
Myself, on 2019-10-08: > Joe, on 2019-10-08: > > May 2019, but after the buster release freeze. You could check the > > dependencies against buster (I don't have one, my former stables are now > > oldstable): https://packages.debian.org/sid/odbc-mariadb > > If they

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread Étienne Mollier
to sid. > > > No, it's new in Debian and only in unstable so far: > > mariadb-connector-odbc (3.1.1-1) unstable; urgency=medium > > * Initial release (Closes: #930445) > > -- Bernhard Schmidt Fri, 31 May 2019 19:40:33 +0200 Oops, I didn't foresee this...

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread Joe
ly in unstable so far: mariadb-connector-odbc (3.1.1-1) unstable; urgency=medium * Initial release (Closes: #930445) -- Bernhard Schmidt Fri, 31 May 2019 19:40:33 +0200 May 2019, but after the buster release freeze. You could check the dependencies against buster (I don't have one, my

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread John Covici
be appreciated. > > > > Hi John, > > This might be a blind shot, but have you tried to install the > package odbc-mariadb, which appears with this "apt search" > request: > > $ apt search odbc mariadb > Sorting... Done > Full Text

Re: how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread Étienne Mollier
i John, This might be a blind shot, but have you tried to install the package odbc-mariadb, which appears with this "apt search" request: $ apt search odbc mariadb Sorting... Done Full Text Search... Done [... a few packages ...] odbc-mariadb/uns

how to get odbc working for connection to mariadb in debian buster

2019-10-08 Thread John Covici
Hi. I am having a terrible time trying to get a package to connect to mariadb using Debian buster. There seems to be no package in the repository and when I tried to build the source package downloaded from mariadb itself, it looks for include files in the wrong places, such as /usr/include/mysql

php5-odbc broken since 5.4.34-0+deb7u1

2014-11-04 Thread Frédéric Marchal
Hello, Since I upgraded php5 in Wheezy to version 5.4.34-0+deb7u1, I get an error when running odbc_exec() on a sybase ADS odbc driver. I get this error: PHP Fatal error: Out of memory (allocated 524288) (tried to allocate 14615584999105259009 bytes) in SybaseClass.php on line 127 The same

Authentication problem which ejabberd using ODBC

2014-02-24 Thread Daniel Bareiro
the time (2011). The idea is that everything is running Debian packages for ease of administration and security updates. Then I tried the authentication is done with ODBC. Then, to achieve this, I commented the lines

Re: Problem with ODBC Driver

2010-09-21 Thread Scott Ferguson
On 21/09/10 19:39, S.Ali zahiri wrote: > Hi everybody, > > > I am trying to configure iODBC on Debian Lenny. When i try to test the > configuration with iodbctest the following message is printed: > > *SQLDriverConnect = [MySQL][ODBC 3.51 Driver] Could not determine the >

Problem with ODBC Driver

2010-09-21 Thread S.Ali zahiri
Hi everybody, I am trying to configure iODBC on Debian Lenny. When i try to test the configuration with iodbctest the following message is printed: *SQLDriverConnect = [MySQL][ODBC 3.51 Driver] Could not determine the driver name; could not lookup setup library. DSN=((null)) SQLSTATE=HY000

Re: [OT] Connect to local linux ms access jet database via odbc from php or java

2007-04-21 Thread Ron Johnson
o I have to buy some drivers? >>> Is it possible to connect from netbeans to this odbc dns via jdbc-odbc >>> without some special additional drivers? >> Does mdbtools supply a daemon? If not, you might have to write your >> own. >> > > How come isql then w

Re: [OT] Connect to local linux ms access jet database via odbc from php or java

2007-04-21 Thread Mirko Scurk
.99.0.6pre1.0.20051109-3 >> libmdbtools 0.5.99.0.6pre1.0.20051109-3 >> mdbtools 0.5.99.0.6pre1.0.20051109-3 >> mdbtools-gmdb 0.5.99.0.6pre1.0.20051109-3 >> >> # cat /etc/odbc.ini > [snip] >> +---+ >> SQLRowCount returns 34 >> 34 rows fetched >> >

Re: [OT] Connect to local linux ms access jet database via odbc from php or java

2007-04-21 Thread Guido Heumann
ocal mdb file but had no luck. Here is my configuration: > I actually don't have much experience with either ODBC or PHP, but I dare to give my 2 cents anyway. Two things that I as a total newbie would check out: > # cat /etc/odbc.ini > [ODBC] > Trace=yes > Tracefile=/tmp/trc

Re: [OT] Connect to local linux ms access jet database via odbc from php or java

2007-04-20 Thread Ron Johnson
returns 34 > 34 rows fetched > > What am I doing wrong? > Is it even possible to connect from php to mdb? > Do I have to buy some drivers? > Is it possible to connect from netbeans to this odbc dns via jdbc-odbc > without some special additional drivers? Does mdbtools supply a

[OT] Connect to local linux ms access jet database via odbc from php or java

2007-04-20 Thread Mirko Scurk
: Ubuntu edgy 2.6.17-10-generic #2 SMP unixodbc 2.2.11-13 unixodbc-bin 2.2.11-13 libmdbodbc 0.5.99.0.6pre1.0.20051109-3 libmdbtools 0.5.99.0.6pre1.0.20051109-3 mdbtools 0.5.99.0.6pre1.0.20051109-3 mdbtools-gmdb 0.5.99.0.6pre1.0.20051109-3 # cat /etc/odbc.ini [ODBC] Trace=yes Tracefile=/tmp/trc.log

Has someone implemented Oracle 10g ODBC driver ?

2006-09-27 Thread Bruno Costacurta
Hello, I'm looking for some experience with 10g ODBC driver. I downloaded 10g Express Edition which seems to contain ODBC driver but I cannot figure how to configure, which libraries...etc... Many thanks for any clue or direction. Cheer, Bruno -- To UNSUBSCRIBE, email to [EMAIL PROT

Oracle Express Edition licensing (WAS: Re: Driver ODBC for Oracle)

2006-09-27 Thread Marc Shapiro
Bruno Costacurta wrote: Hello, I'm looking for a *free* ODBC driver for Oracle. I googled and found some drivers (ie. Easysoft) but unfortunately they are commercial. Thanks for any clue. Note: I'm using Oracle Express Edition v10g which is kindly offered by Oracle. I had not

Re: Driver ODBC for Oracle

2006-09-26 Thread Bruno Costacurta
On Tuesday 26 September 2006 21:22, RParr wrote: > Bruno Costacurta wrote: > > Hello, > > > > I'm looking for a *free* ODBC driver for Oracle. > > I googled and found some drivers (ie. Easysoft) but unfortunately they > > are commercial. > > > &g

Re: Driver ODBC for Oracle

2006-09-26 Thread RParr
Bruno Costacurta wrote: Hello, I'm looking for a *free* ODBC driver for Oracle. I googled and found some drivers (ie. Easysoft) but unfortunately they are commercial. Thanks for any clue. Note: I'm using Oracle Express Edition v10g which is kindly offered by Oracle. Bye, Br

Driver ODBC for Oracle

2006-09-26 Thread Bruno Costacurta
Hello, I'm looking for a *free* ODBC driver for Oracle. I googled and found some drivers (ie. Easysoft) but unfortunately they are commercial. Thanks for any clue. Note: I'm using Oracle Express Edition v10g which is kindly offered by Oracle. Bye, Bruno -- To UNSUBSCRIBE, email

Re: installaing php4-odbc wants to replace kernel?

2006-07-26 Thread kenn
c, > conflicts with unixodb. Maybe the same is happening with freetds > Miguel, I think you pointed me in the right direction ... I removed unixodbc, attempted to install php4-odbc, and it successfully installed by php4-odbc AND unixodbc ... go figure. Anyway, thanks for the help! Kenn

Re: installaing php4-odbc wants to replace kernel?

2006-07-26 Thread Miguel Enrique Cobá Martínez
kenn wrote: > I've just finished installing freetds and now need to get it to work > with PHP4 ... when I try to install php4-odbc via dselect, here's what I > get: > > > The following packages will be REMOVED: > kernel-image-2.6.8-2-386 > The following NEW pa

installaing php4-odbc wants to replace kernel?

2006-07-26 Thread kenn
I've just finished installing freetds and now need to get it to work with PHP4 ... when I try to install php4-odbc via dselect, here's what I get: The following packages will be REMOVED: kernel-image-2.6.8-2-386 The following NEW packages will be installed: php4-odbc You are

PostgreSQL & ODBC & OpenOffice

2006-07-25 Thread gustavo halperin
nager]Data source name not found, and no default driver specified" There aren't to much values in the OpenOffice->tool->Data Sources ... Can you please help me with this ? In the connection using "ODBC" I use in the "Data source URL" the next source "//local

Re: setup ODBC data source

2006-05-14 Thread H S Rai
Friday at 10:07am -0400 Andrew Schulman wrote: > > I have file /etc/odbc.ini which has at its end: > > > > Name: MSSQLServer > > Description: TDS MSSQL (description isn't important) > > Servername: 192.168.8.88 > > UID: sa > > PWD: > > Port: 1433 > > That's strange, it's a d

Re: setup ODBC data source

2006-05-12 Thread Andrew Schulman
= TDS Description = SDWA data whse, LatestQuarter database Servername = SDW Database = LatestQuarter But that may depend on your version of ODBC. Check your logs or output for syntax errors, but if you haven't seen any it's probably OK. > and file /etc/odbcinst.ini

setup ODBC data source

2006-05-11 Thread H S Rai
erver Description: TDS MSSQL (description isn't important) Servername: 192.168.8.88 UID: sa PWD: Port: 1433 and file /etc/odbcinst.ini which has at its end: [TDS] Description = FreeTDS ODBC Driver Driver = /usr/lib/libtdsodbc.so Setup: /usr/lib/libtdsS.so

ODBC

2005-05-17 Thread César Diaz
People, some of you knows of some manual tutorial or of configuration of ODBC that can recommend to me. Greetings and thanks, Cesar == Cesar E. Diaz - Analista en Informática Aplicada Msn : [EMAIL PROTECTED] ICQ : 312384614

Re: Manual ODBC

2005-05-17 Thread Jonathan Kaye
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 En/La César Diaz ha escrit, a 17/05/05 14:29: | Gentes, | alguno de ustedes sabe de algun tutorial o manual de | configuración de ODBC que puedan recomendarme. | | Saludos y gracias, César

Manual ODBC

2005-05-17 Thread César Diaz
Gentes, alguno de ustedes sabe de algun tutorial o manual de configuración de ODBC que puedan recomendarme. Saludos y gracias, César == Cesar E. Diaz - Analista en Informática Aplicada Msn : [EMAIL PROTECTED] ICQ : 312384614

[SOLVED] Re: openoffice, mysql, odbc

2004-12-15 Thread Matt Price
On Wed, Dec 15, 2004 at 04:35:13PM -0500, Matt Price wrote: > hi folks, > > after a certain amount of pain and suffering I have achieved the > following: > > OOo 1.1.3 works fine. > MySQL works fine > unixODBC connects to MySQL without trouble using isql > Within O

openoffice, mysql, odbc

2004-12-15 Thread Matt Price
hi folks, after a certain amount of pain and suffering I have achieved the following: OOo 1.1.3 works fine. MySQL works fine unixODBC connects to MySQL without trouble using isql Within OOo, odbc reads mysql tables perfectly, and I can make forms using the forms autopilot. but, I can't

php4-odbc problem

2004-02-18 Thread Manuel Martínez Valls
Hi, I've a little problem with a Debian woody machine with the postgresql-7.4 deb package downloaded from: ftp://ftp.postgresql.org/pub/binary/v7.4/debian/ woody/main/binary-i386/ When I use the substring sql command from a php script via an ODBC DSN I get no result. By ex

Re: [GENERAL] odbc with debian woody/postgres

2002-10-11 Thread Emil Pedersen
> > I can't for the life of me get postgresql to start and stop. running > /etc/init.d/postgresql stop gets me this: > > Stopping PostgreSQL database: postmaster > /etc/init.d/postgresql: command not found > > while running > /usr/lib/postgresql/bin/pg_ctl-D /var/lib/postgres/data stop > give

Re: [GENERAL] odbc with debian woody/postgres

2002-10-09 Thread bob parker
all 127.0.0.1 255.0.0.0 ident > > > > Here you tell PostgreSQL to use ident. > > hmm, ok, I'll take out that line -- though I would have thought > that, since I'm connecting from localhost, this wouldn't be an issue. > > > Sorry I don

Re: [GENERAL] odbc with debian woody/postgres

2002-10-09 Thread Matt Price
ou tell PostgreSQL to use ident. hmm, ok, I'll take out that line -- though I would have thought that, since I'm connecting from localhost, this wouldn't be an issue. > Sorry I don't fully understand that. You define one ODBC conenction for > exactly one database, so w

Re: [GENERAL] odbc with debian woody/postgres

2002-10-08 Thread Michael Meskes
database names to > odbc.ini? Do I need whole new sections (like > "[Postgresql/dbname]") or can I just add the dbnames to the Database > line of the file? Sorry I don't fully understand that. You define one ODBC conenction for exactly one database, so what are you

odbc with debian woody/postgres

2002-10-08 Thread Matt Price
Hi there, I'm trying to get odbc to work on my machine. Here's the setup: Debian Woody with Postgresql 7.2; unixodbc and odbc-postgresql also installed. I followed the directionsi n the 'Debian HOWTO' that comes with the odbc-postgresql package, so my odbcinit.ini looks lik

Re: Postgresql ODBC

2002-02-25 Thread Tom Cook
"Eric G. Miller" wrote: > > On Fri, Feb 22, 2002 at 01:49:46PM +1000, Christoph Donges wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > I have installed potato and postgresql and odbc-postgresql and I have > > created a database an

Re: Postgresql ODBC

2002-02-21 Thread Eric G. Miller
On Fri, Feb 22, 2002 at 01:49:46PM +1000, Christoph Donges wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I have installed potato and postgresql and odbc-postgresql and I have > created a database and table using webmin where I have also given a user > access

Postgresql ODBC

2002-02-21 Thread Christoph Donges
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have installed potato and postgresql and odbc-postgresql and I have created a database and table using webmin where I have also given a user access rights and given a machine access rights. But when I try to connect from a windows machine I get the

Re: PostgreSQL odbc

2001-05-11 Thread Andre Berger
* Johann Spies <[EMAIL PROTECTED]>, 2001-05-11 00:21 +0200: > Jorge Santos <[EMAIL PROTECTED]> writes: > > > Hello, I'm trying to use odbc-PostgreSQL with StarOffice but when > > trying to create a new database with ODBC as a source and trying to > >

Re: PostgreSQL odbc

2001-05-10 Thread Johann Spies
Jorge Santos <[EMAIL PROTECTED]> writes: > Hello, I'm trying to use odbc-PostgreSQL with StarOffice but when > trying to create a new database with ODBC as a source and trying to > select the tables tab I get the following error: I have read somewhere that one can do what you

Re: PostgreSQL odbc

2001-05-10 Thread Joachim Trinkwitz
Jorge Santos <[EMAIL PROTECTED]> writes: > Hello, I'm trying to use odbc-PostgreSQL with StarOffice but when > trying to create a new database with ODBC as a source and trying to > select the tables tab I get the following error: Have you read the ODBC-related docs in the po

PostgreSQL odbc

2001-05-08 Thread Jorge Santos
Hello, I'm trying to use odbc-PostgreSQL with StarOffice but when trying to create a new database with ODBC as a source and trying to select the tables tab I get the following error: Warning! The data registry was not found Or something like that (my version of SO is in spanish). Does a

How to set up an ODBC manager?

2001-03-19 Thread Richard C. Cobbe
Greetings, all. I'm trying to play around with writing a small ODBC client program, just to learn how the technology works. Rather unfortunately, I'm highly unclear on how to set up all of the pieces involved. I've installed the following packages on my Potato system:

odbc connection problem with postgresql

2001-01-24 Thread mlennert
Hello, I'm running postgresql 7.0.3-4, on debian unstable, and I have trouble to connecting databases via odbc. I use unixodbc 2.0.3-1, and I can see the data source in the DataManager, but when I try to connect I get the following error: '[unixODBC]Could not connect to the server;

odbc connection problem with postgresql

2001-01-23 Thread mlennert
Hello, I'm running postgresql 7.0.3-4, on debian unstable, and I have trouble to connecting databases via odbc. I use unixodbc 2.0.3-1, and I can see the data source in the DataManager, but when I try to connect I get the following error: '[unixODBC]Could not connect to the server;

ODBC/JDBC Drivers

2000-05-15 Thread Philippe Jean
HI All,       I'D like to know where i can find ODBC/JDBC Drivers for your Debian Linux distribution.  Since we need our JAVA SERVER APP running on Debian to Access to an MSSQLServer.  Currentrly i'm using freetds but it seem's to fail connection to the MSSQLServer 7.0.    

ODBC/JDBC Drivers

2000-05-15 Thread Philippe Jean
HI All,       I'D like to know where i can find ODBC/JDBC Drivers for your Debian Linux distribution.  Since we need our JAVA SERVER APP running on Debian to Access to an MSSQLServer.  Currentrly i'm using freetds but it seem's to fail connection to the MSSQLServer 7.0.      

OT: ODBC driver recomendation

2000-05-08 Thread Felipe Alvarez Harnecker
Hi, I need an ODBC driver for debian to talk to an M$ SQL Server trough Perl DBI->DBD:ODBC Can you recommend one of those things?? Thanks. -- __ Felipe Alvarez Harnecker. QlSoftware. Tel. 09.874.60.17 e-mail: [EM

Re: Recommend an ODBC-compliant database for Linux?

1998-03-12 Thread Hannu Koivisto
Jeff Noxon <[EMAIL PROTECTED]> writes: | Does anyone have experience with anything else? I.e., Empress, others? | What's out there? I really need some ideas. If you plan to run it on a Debian system, I'd like to suggest MySQL. It's available as a Debian package and there&

Recommend an ODBC-compliant database for Linux?

1998-03-11 Thread Jeff Noxon
0 tps peak, but sits idle most of the time. The hardware it runs on is a P5-133 with 96MB of memory, a BusLogic BT-946C, and a Seagate Cheetah 9GB. End users access the data with Microsoft Access, via ODBC. I just evaluated Raima's Velocis Server 2.0. I'm sending it back because the ODBC

database with ODBC support?

1997-08-07 Thread Gonzalo A. Diethelm
ather like. Web pages are an option with eg PHP/FI > but there is some significant time investment in that. > > Other options are, TTBOMK, Postgres (which has PostODBC, > but is only a development version which is a year old; I have it > here to try out later today), and mSQL,

Re: database with ODBC support?

1997-08-06 Thread Andreas Jellinghaus
>Does anyone have any experience specifically with Lotus Approach >and any of these servers? if you can't get a free version : there is www.openlink.com with a commercial odbc server (map any odbc or udbc client to any database, has support for postgres95 (and a free 2 client

Re: database with ODBC support?

1997-08-06 Thread Aldrin Leal
On Wed, 6 Aug 1997, Hamish Moffatt wrote: > Other options are, TTBOMK, Postgres (which has PostODBC, > but is only a development version which is a year old; I have it > here to try out later today), and mSQL, for which I can't exactly > find the ODBC driver. The ODBC d

database with ODBC support?

1997-08-06 Thread Hamish Moffatt
Other options are, TTBOMK, Postgres (which has PostODBC, but is only a development version which is a year old; I have it here to try out later today), and mSQL, for which I can't exactly find the ODBC driver. Does anyone have any experience specifically with Lotus Approach and any of these server