>I'm using Visual Basic with DAO 3.6 and I try to execute this query
>
>dim rsPersonen as dao.recordset
>     Set rsPersonen = db.OpenRecordset( _
>         "SELECT Mitglieder.* FROM Mitglieder " + _
>         "WHERE Mitglieder.geb='1978-08-26'")
>
>Here I get an Error-Message:
>
>"Runtime-Error 3464, ..."

With DAO, the query has to pass through the Jet Engine, so you need 
to adjust for Jet's idiosyncrasies.
        "WHERE Mitglieder.geb = #1978-08-26#"
That's my best guess.

Bob Hall

Know thyself? Absurd direction!
Bubbles bear no introspection.     -Khushhal Khan Khatak
MySQL list magic words: sql query database

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to