It is my understanding when I run a line of code, like this:
"INSERT INTO MyTable (field1, field2, field3) VALUES ("abc", "def", )"
...that a null value will be stored in field3. I'm trying this out, but I seem to always get an "Syntax error on INSERT INTO table" error. I have tried:
"INSERT INTO MyTable (field1, field2, field3) VALUES ("abc", "def", Null)"
...as well as ...
"INSERT INTO MyTable (field1, field2, field3) VALUES ("abc", "def", ""
...but nothing seems to work. Any ideas on how to get beyond this? Thanks!
"INSERT INTO MyTable (field1, field2, field3) VALUES ("abc", "def", )"
...that a null value will be stored in field3. I'm trying this out, but I seem to always get an "Syntax error on INSERT INTO table" error. I have tried:
"INSERT INTO MyTable (field1, field2, field3) VALUES ("abc", "def", Null)"
...as well as ...
"INSERT INTO MyTable (field1, field2, field3) VALUES ("abc", "def", ""
...but nothing seems to work. Any ideas on how to get beyond this? Thanks!