Re: MS Access connection and insert issues

From: Brad White <b55white(at)gmail(dot)com>
To: pgsql-odbc(at)lists(dot)postgresql(dot)org
Subject: Re: MS Access connection and insert issues
Date: 2023-11-28 19:22:54
Message-ID: f7b556b0-2631-14af-4f63-617a9151f68c@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

On 11/26/2023 7:55 PM, Evan Hallein wrote:
> Hi,
>
> I am trying to migrate an old MS Access application with an SQL Server
> back end to PostgreSQL backend. I'm able to connect and read the data
> successfully, however there are some (related?) issues. Using version
> 16 of the 64bit unicode ODBC driver on windows 11 with postgres 14.9
> (linux)
>
> The first is that I don't seem to be able to set the ODBC driver
> options in Access using a connection string, they just seemed to get
> ignored. I have followed this: psqlODBC HOWTO - Access VBA
> (postgresql.org) <https://odbc.postgresql.org/howto-accessvba.html>
> It connects, but whatever config options I put get ignored and the
> linked table manager in Access always shows this same connection
> string options: DRIVER={PostgreSQL
> Unicode(x64)};DATABASE=wamtram;SERVER=127.0.0.1;PORT=5432;UID=###;PWD=###;CA=d;A6={};A7=100;B0=254;B1=8190;BI=0;C2=;D6=-101;CX=1c3810489;A1=7.4

The first obvious thing is that the connection string shouldn't have
{brackets}. They are just placeholders that should be replaced by the
actual values.

Do you need the dynamic approach, or is the current linked table sufficient?

For example, I read from a config file. If the string matches, all good,
but if not, reset the connection and restart the app.

Clearly easier if you can just set it and be done.

If there are connection issues, you can enable logging and that can
sometimes help debug the issue.

Set B2 and B3 each to 1.

You may have to search for the logs. I've oddly had it show up in
different locations on different machines.

But check under your user folder first. Root of C second.

>
> I've also tried using a DSN, but the same issue happens.
I didn't prove this with extensive testing, but it appeared to me that
it used the settings in the connection string first, and then any
settings from the DSN as defaults.
Even when I wasn't using a DSN. A little confusing when we got different
results on different machines.
>
> The second issue is to do with inserting records and getting an
> autoincrement ID back from the new record.  The autoincremented
> ENTRY_BATCH_ID is always empty after inserting. I can see the record
> gets added to the database, but the record in Access in not updated
> with the new "ENTRY_BATCH_ID".  If hard code an ENTRY_BATCH_ID  it
> works. This is working with SQLServer.

I agree with Jan. You will have to re-read the record to get any values
set on the server.

Dates can be an issue if you have any default date values.

In the example shown, where you are setting the entry date from the
client side, you shouldn't have any issues.

>
> This is the VBA Code:
> --------------------
> ' Set the connections
>     Set MainConn = CurrentProject.Connection
>     UserConn.Open "Provider=Microsoft Office 12.0 Access Database
> Engine OLE DB Provider;Data Source=" & strFileName

I didn't have any luck setting the connection string and then using it
without restarting the app.

It was very confusing because it would seem to go back and forth between
working and not working until I finally saw the pattern.

>   ' Start transaction
>     MainConn.BeginTrans
>
>     ' Add a record for the batch
>     MainRs.Open "TRT_ENTRY_BATCHES", MainConn, adOpenDynamic,
> adLockOptimistic
>     MainRs.AddNew
> MainRs!FILENAME = strFileName
> MainRs!ENTRY_DATE = Date   ' UserRs!ENTRY_DATE
>
> MainRs.Update
> lngEntryBatchID = MainRs!ENTRY_BATCH_ID '<------------- fails here, no
> value in ID and returns "record is deleted"
> -------------------------------------
>
> and this is the table schema:
> ------------------
> CREATE TABLE IF NOT EXISTS dbo."TRT_ENTRY_BATCHES"
> (
>     "ENTRY_BATCH_ID" integer NOT NULL DEFAULT
> nextval('"TRT_ENTRY_BATCHES_ENTRY_BATCH_ID_seq"'::regclass),
>     "ENTRY_DATE" timestamp with time zone,
>     "ENTERED_PERSON_ID" integer,
>     "FILENAME" character varying(255) COLLATE pg_catalog."default"
> DEFAULT NULL::character varying,
> "COMMENTS" character varying(255) COLLATE pg_catalog."default" DEFAULT
> NULL::character varying,
>     CONSTRAINT "idx_237586_PK_TRT_ENTRY_BATCHES" PRIMARY KEY
> ("ENTRY_BATCH_ID")
> )
> -------------------------------
>
> Any ideas? Is there config that I need to set, which I can't? I'm new
> to VBA, so maybe there is something I need to change?
>
> thanks
>
> *--------------------------------*
>
> *Evan Hallein*
>
> Senior Technical Officer
>
> North West Shelf Flatback Turtle Conservation Program
>
> https://flatbacks.dbca.wa.gov.au/
>
> Department of Biodiversity, Conservation and Attractions
>
> 17 Dick Perry Av., Kensington, WA, 6151
>
> Mob 0419 874 211
>
> ------------------------------------------------------------------------
> /This message is confidential and is intended for the recipient named
> above. If you are not the intended recipient, you must not disclose,
> use or copy the message or any part of it. If you received this
> message in error, please notify the sender immediately by replying to
> this message, then delete it from your system./
--
Quote Signature I talk with clients, find out where their pain points
are, and solve those.
On-call IT Management for small companies and non-profits.
SCP, Inc.
bwhite(at)inebraska(dot)com
402-601-7990

Quote of the Day
   The Tenth Commandment [thou shalt not covet] sends a message to
   collectivists, to people who believe wealth is best obtained by
   redistribution. And the message is clear and concise: Go to hell.
    -- P. J. O'Rourke

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message LiChong 2023-12-05 12:37:19 during call SQLFreeHandle, the connection is broken. client can't be notified.
Previous Message Chirag Karkera 2023-11-28 12:05:14 Re: Issue with the existing psqlodbc version of upgraded instance