이상이 생기는 sql 구문
string sql = @"insert into PowerData(EquipCode,PowerState,Time) values(@equipcode, @powerstate, @time) ";

뭐가 문젠지 한참을 고민했다. 분명히 SQL 구문는 정상인데..
이럴 경우 테이블명과 필드명에 [, ] 로 묶어준다.


이상이 없는 sql 구문
string sql = @"insert into [PowerData]([EquipCode],[PowerState],[Time]) values(@equipcode, @powerstate, @time) ";

'닷넷 프레임워크' 카테고리의 다른 글

UDP 통신  (0) 2009.11.26
[C#] 실행시간 측정  (0) 2009.10.20
텍스트 박스 유효성 체크  (0) 2009.09.22
C# Thread 이야기  (0) 2009.09.22
Creating a splash screen  (0) 2009.07.15

+ Recent posts