C# 프로젝트 도중 Access DB에 정상적인 Insert Into 쿼리를 날려도 구문 오류가 나는 때가 있다. 이런 경우에는 테이블 명이나 필드을 []로 쌓아 준다.
string sql = "insert into Pdb (PName, Number) values ('" + txtName.Text + "', '" + txtNumber.Text + "')";
string sql = "insert into [Pdb] ([PName], [Number]) values ('" + txtName.Text + "', '" + txtNumber.Text + "')";
Beeeye Dmu