is there something wrong with the insert sql string in sql ce?
i am using "insert into table (field1) values (value1);" and it tells me that that is an unacceptable command in sqlce. what is the other way to do variables?
it looks something like this
VB Code:
  1. insert into table (field1) values (?)
  2. cecmd.sqlparamets.add("field1", value1)
can i get a little help?