Postgresql Oledb column name quoting
I have:
INSERT INTO XYZ (c1, c开发者_运维知识库2, range) VALUES (?, ?, ?)
OleDb call fails here because of range
is a reserved keyword - how to quote it through the OleDB?
Use double quotes ":
INSERT INTO XYZ (c1, c2, "range") VALUES (?, ?, ?)
精彩评论