ADOQuery1는 DataSource와 DBGrid로 연결이 되어있습니다.
아래와 같이 ADOQuery2를 이용해서 삽입을 했는데, DBGrid에 삽입된 데이터
가 Refresh가 안됩니다.
아무래도 Commit이 안된 것 같은데, 방법좀 알려주세요~~~
with ADOQuery2 do
begin
Close;
SQL.Clear;
SQL.Text := 'INSERT INTO tbWeek (cweek, sTime, eTime, subject, cwork) VALUES ('''
+ Trim(cbWeek.Text) + ''','''
+ Trim(DelDateDot(edswTime.Text)) + ''','''
+ Trim(DelDateDot(edfwTime.Text)) + ''','''
+ Trim(edSubject.Text) + ''','''
+ Trim(mmwWork.Text) + ''')';
ExecSQL;
end;