S
SteveK
Here is the SQL statement that I'm trying to execute
INSERT INTO Tbl_NameCharacter(Character, Code) VALUES('Rebel Generic',
'Rbl')
My database has a table name 'Tbl_NameCharacter'
it has 3 fields, the PK is an autonumber 'CharacterID'
the second is a 'text' field named 'Character'
and the third is also a 'text' field named 'Code'
I don't get it.
Here are the details from the OleDbException
System.Object {System.Data.OleDb.OleDbError} System.Object
Message "Syntax error in INSERT INTO statement." string
message "Syntax error in INSERT INTO statement." string
NativeError -529993134 int
nativeError -529993134 int
Source "Microsoft JET Database Engine" string
source "Microsoft JET Database Engine" string
SQLState "3000" string
sqlState "3000" string
Any ideas?
INSERT INTO Tbl_NameCharacter(Character, Code) VALUES('Rebel Generic',
'Rbl')
My database has a table name 'Tbl_NameCharacter'
it has 3 fields, the PK is an autonumber 'CharacterID'
the second is a 'text' field named 'Character'
and the third is also a 'text' field named 'Code'
I don't get it.
Here are the details from the OleDbException
System.Object {System.Data.OleDb.OleDbError} System.Object
Message "Syntax error in INSERT INTO statement." string
message "Syntax error in INSERT INTO statement." string
NativeError -529993134 int
nativeError -529993134 int
Source "Microsoft JET Database Engine" string
source "Microsoft JET Database Engine" string
SQLState "3000" string
sqlState "3000" string
Any ideas?