D
Dominic Olivastro
I have a vb5.0 program. I want to insert a record into an access table, and
I'd prefer not to use dao.AddNew ... dao.Update. Instead I want to use
dao.Database.Execute ("SQLString"), but I don't know what the string is. It
does not seem to be standard SQL (why is that?). In cases like this I
usually go to Access itself to find out, but to insert a record, I just use
the table itself -- there is not query for that that I can see.
What is the SQL for this? I want something like (in standard SQL):
INSERT
INTO <table> (field1, field2, field3)
VALUES ("this", 10, 25)
--
Dominic Olivastro
CHI Research, Inc
web: http://www.ChiResearch.com
fax: 1-856-546-9633
voice: 1-856-546-0600 (ext 224)
email: (e-mail address removed)
I'd prefer not to use dao.AddNew ... dao.Update. Instead I want to use
dao.Database.Execute ("SQLString"), but I don't know what the string is. It
does not seem to be standard SQL (why is that?). In cases like this I
usually go to Access itself to find out, but to insert a record, I just use
the table itself -- there is not query for that that I can see.
What is the SQL for this? I want something like (in standard SQL):
INSERT
INTO <table> (field1, field2, field3)
VALUES ("this", 10, 25)
--
Dominic Olivastro
CHI Research, Inc
web: http://www.ChiResearch.com
fax: 1-856-546-9633
voice: 1-856-546-0600 (ext 224)
email: (e-mail address removed)