RE: Access using Postgres

From: Michael Davis <mdavis(at)sevainc(dot)com>
To: "'Thomas Lockhart'" <lockhart(at)fourpalms(dot)org>, Joseph <lters(at)mrtc(dot)com>
Cc: "pgsql-interfaces(at)postgresql(dot)org" <pgsql-interfaces(at)postgresql(dot)org>
Subject: RE: Access using Postgres
Date: 2001-01-03 16:00:06
Message-ID: 01C07563.93A378B0.mdavis@sevainc.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

/' does not work in Access. The following does work using VBA in Access with PostgreSQL:

DoCmd.RunSQL "update Attributes set [note] = 'can''t' where AttributesID = 31"
or
DoCmd.RunSQL "update Attributes set [note] = ""can't"" where AttributesID = 31"

Thanks, Michael

-----Original Message-----
From: Thomas Lockhart [SMTP:lockhart(at)fourpalms(dot)org]
Sent: Wednesday, January 03, 2001 7:17 AM
To: Joseph
Cc: pgsql-interfaces(at)postgresql(dot)org
Subject: Re: Access using Postgres

> Does anyone have a utility in access to add backslashes to single quotes for
> the odbc connection to postgres?

Does Access support the SQL9x standard of using two adjacent single
quotes to represent an embedded single quote? PostgreSQL recognizes that
syntax in addition to the backslashed form...

- Thomas

Browse pgsql-interfaces by date

  From Date Subject
Next Message Michael Davis 2001-01-03 16:05:57 RE: ODBC-Problem
Previous Message Thomas Lockhart 2001-01-03 14:17:15 Re: Access using Postgres