Try ODBC driver instead OLE DB...
I migrated tables from MSDE to PostgreSQL succesfully today...but I had to
set keys manually.
Also, I linked tables from MDB to database on PostgreSQL using ODBC driver.
You can download ODBC driver from
http://www.postgresql.org/download/
I didn't have enough time to read PostgreSQL documentation, but I'm
wondering what is the Postgre's equivavalent of stored procedures...
Greetings,
Zlatko
"MGFoster" <me@privacy.com> je napisao u poruci interesnoj
grupi:Z4TZd.12158$cN6.7181@newsread1.news.pas.eart hlink.net...[color=blue]
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> When using ODBC connection strings you can use the IP address of the
> database server instead of the server name. You can connect to a
> PostgreSQL db server that way, also.
>
> For distributing an Access front-end to clients you can use a DSN-less
> connection string in the linked tables. E.g.(just guessing for the
> PostgreSQL connection string. Used Local Host as the IP address. Use
> your correct IP address, instead.):
>
> ODBC;Driver=PostgreSQL;Server=127.0.0.1;Database=M yDatabase
>
> The default port that PostgreSQL uses is 5432.
>
> Using MSDE (all one line):
>
> ODBC;Driver=SQL Server;Server=127.0.0.1,1433;Database=MyDatabase;
> Trusted_Connection=Yes
>
> SQL Server (MSDE) listens on port 1433. If you've changed the port
> number, be sure to change the connect string.
>
> With each ODBC linked table having a DSN-less connection each client you
> give the front-end to, if they have an Internet/Intranet connection, can
> access the db.
>
> If you have a local network w/ PostgreSQL on a Linux server you can use
> Samba (a connection program for *nix to other OS) to link to PostgreSQL.
> I did this about 5 years ago: Linux -> Windows NT 4. I was able to
> link PostgreSQL tables to Access 97, but did nothing more than the proof
> of-concept set up. I never used PostgreSQL as a production data source.
>
> I downloaded the Windows version of PostgreSQL 8.0.1 today & am having
> problems linking Access XP to it. Still reading the PostgreSQL
> documentation & trying out ADO OleDB connection (not working 'cuz of
> start up permissions).
> --
> MGFoster:::mgf00 <at> earthlink <decimal-point> net
> Oakland, CA (USA)
>
> -----BEGIN PGP SIGNATURE-----
> Version: PGP for Personal Privacy 5.0
> Charset: noconv
>
> iQA/AwUBQjf9tIechKqOuFEgEQLuNgCgnaWM9mCMvlZcb8ighCX/J3ACyaMAoNUD
> TIHVbUZwXpgc+ucKHe0QPnT+
> =gRh9
> -----END PGP SIGNATURE-----
>
>
> Zlatko Matiæ wrote:[color=green]
>> Let's talk about Access as front-end to PostgreSQL...
>> Deployment of Access Projects with MSDE seems to be easy, since Access
>> part has a Connection wizard by which client can eysily connect to any MS
>> SQL Server.
>> When using MDB as a client front-end, it can be used only by ODBC drivers
>> either by linked tables or pass-through queries. In any case, ODBC string
>> must be specified. If that is true, it seems to be complex for
>> installation on client...
>> My question is: if I will use linked tables to PostgreSQL, for example,
>> how can I install front-end on clients without linking tables separately
>> on every client ?
>> I have never used linked tables and ODBC connections to other databases,
>> so forgive me if my question is trivial.[/color]
>
> < SNIP >[/color]