Voting

: max(six, seven)?
(Example: nine)

The Note You're Voting On

dj at magma dot nz
6 years ago
When using odbc_execute to an MS Access database use single quotes (not double quotes) for literal string definitions.

e.g. $sql = "Insert into [table] ([first], [last]) select 'Bob', 'Builder';"

If you use double quotes you may end up with an error like: [Microsoft] [ODBC Text Driver] Too few parameters. Expected: 2

<< Back to user notes page

To Top