So I\'m receiving this problem, I tried everything. Kinda stuck
My access database design:
ID - AutoNumber Data - ShortText
And the
The TABLE is a reserved keyword so you should change it's name or you should enclose it in square brackets like [Table]:
TABLE
[Table]
string sql = "INSERT INTO [Table] (Data) VALUES (@Data)";