테이블에 트랜잭션과 파라미터 이용해서 인서트 하기.
with ADOConnection1 do begin
BeginTrans();
with ADOQuery1 do Begin
Close();
SQL.Clear();
SQL.Add('INSERT INTO member_tbl (member_type,passwd,member_id) VALUES');
SQL.Add('(:member_type,:passwd,:member_id)');
Parameters.ParamByName('member_type').Value := 'S';
Parameters.ParamByName('passwd').Value := 'S';
Parameters.ParamByName('member_id').Value := 'wwww';
ExecSQL;
end;
CommitTrans;
end;
with ADOConnection1 do begin
BeginTrans();
with ADOQuery1 do Begin
Close();
SQL.Clear();
SQL.Add('INSERT INTO member_tbl (member_type,passwd,member_id) VALUES');
SQL.Add('(:member_type,:passwd,:member_id)');
Parameters.ParamByName('member_type').Value := 'S';
Parameters.ParamByName('passwd').Value := 'S';
Parameters.ParamByName('member_id').Value := 'wwww';
ExecSQL;
end;
CommitTrans;
end;
'Computer > Delphi' 카테고리의 다른 글
TDateTime 사용하기 (0) | 2005.07.10 |
---|---|
URL에서 도메인 분리하기 (0) | 2005.07.10 |
Visual Basic에서 만든 dll 호출하기 (0) | 2005.07.10 |
유니코드 변환 코드 (0) | 2003.12.17 |
DLL 호출 관련 정리(임시) (0) | 2003.12.14 |
TColor 값을 HTML color 로 변경하는 코드 (0) | 2003.05.14 |
HTML에 문자 추가하기 (0) | 2003.05.09 |
그래픽 카드가 RGB or BGR 지원 하는지 체크하기 (0) | 2003.04.28 |
C의 Union과 비슷하게 Record로 가변 타입 만들기 (0) | 2003.04.24 |
메모리 복사하기 (0) | 2003.04.23 |