Re:

From: Hiroshi Inoue <Inoue(at)tpf(dot)co(dot)jp>
To: Peter Vanderploeg <pvanderploeg(at)polarsec(dot)com>
Cc: pgsql-interfaces(at)postgresql(dot)org
Subject: Re:
Date: 2001-10-16 02:42:50
Message-ID: 3BCB9EAA.70BFE5D4@tpf.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Peter Vanderploeg wrote:
>
> I am having a problem with an ADO recordset where a date restriction is in
> the where clause. I am desperate for a solution to this mystery. Here is
> the code
>
> dim rstPr as ADODB.recordset
> dim UpLoaddate as date
> dim acctID as integer
>
> cnn = "ODBC;DATABASE=Sandbox;UID=Peter;PWD=;DSN=SQL server"
> UpLoaddate = #10/9/2001#
>
> Set rstPr = New ADODB.Recordset
> rstPr.Open "select * from tblPrices where tblPrices.Pricedate = " &
> UpLoaddate, cnn, adOpenDynamic, adLockOptimistic
>
> I get no records even though some exist. (UpLoaddate is a date variable in
> VB and tblPrices is an SQL Server table.)
>
> When I use the DAO object, i get the recordset I expect.
>
> dim rsttest as DAO.recordset
> dim UpLoaddate as date
> dim acctID as integer
> dim db as DAO.database
>
> UpLoaddate = #10/9/2001#
>
> Set db = OpenDatabase("d:\PolarTools\Sandbox.mdb")
> set rsttest = db.openrecordset("select * from tblPrices where
> tblPrices.Pricedate = #" & UpLoaddate & "#", dbOpenDynaset, dbSeeChanges)
>

DAO changes the above query before passing the query to the
ODBC driver whereas ADO passes the query to the ODBC driver
exactly. You can see the result in the backend log if you
the postmaster with -d option.

regards,
Hiroshi Inoue

In response to

  • at 2001-10-10 16:19:14 from Peter Vanderploeg

Browse pgsql-interfaces by date

  From Date Subject
Next Message Constantin Teodorescu 2001-10-16 05:45:03 Re: ... enlargement is possible
Previous Message Dan Wilson 2001-10-15 22:53:05 phpPgAdmin finds new home