아래 소스는 제가 자료를 연결한 부분인데요...
어떻게 해야 start_month,start_day...
등 배열로 되어 있는 것을 MS-SQL로 다시 저장 시킬수 있을까요??//
i:=0;
while not table1.Eof do
begin
DCon :=Table1['dkdk;start_month;start_day;last_month;last_day;process'];
order[i]:=DCon[0]; start_month[i]:=DCon[1]; start_day[i]:=DCon[2];
last_month[i]:=DCon[3];last_day[i]:=DCon[4];process[i]:=DCon[5];
i:=i+1;
end;
이처럼 TTable만을 이용하여는데
다시 위에서 변수로 불려들인 order[i] , start_month[i],start_day[i]
last_month[i],last_day[i],process[i]와 같은 것들을 다시 MS-SQL에 저장할수 있을까요.. 제발 아시는 고수분 부탁해요.....
아님 데이타를 좀더 쉽게 불려들이고 저장하는 방법을 부탁합니다.
제발 Prease........
각 레코드별로 그리고 필드별로 각각의 데이타를 변수로 하나하나 전부
필요하거든요..TT