Subject | Re: Insert error |
---|---|
Author | roydamman |
Post date | 2012-06-28T06:43:25Z |
--- In firebird-support@yahoogroups.com, "jwcane2003" <jwcane@...> wrote:
INSERT INTO residents (First, Last, Bldg, Unit, cbRelease, Email, lbOwnRent)
VALUES('Theo','Jones','6105','2101','Yes','jones@','Own')
>You have to use a ' (single quote) instead of " (double quote) for string literals. So:
> The following insert command is an example of what I would like to use to enter dummy data into my database for testing:
>
> INSERT INTO residents (First, Last, Bldg, Unit, cbRelease, Email, lbOwnRent)
> VALUES("Theo","Jones","6105","2101","Yes","jones@","Own")^
>
> Any ideas appreciated.
>
INSERT INTO residents (First, Last, Bldg, Unit, cbRelease, Email, lbOwnRent)
VALUES('Theo','Jones','6105','2101','Yes','jones@','Own')