질문이 좀 이상한데요
말 그대로 델파이 프로그램안에서 라디오버튼등을 이용하여 오라클 유저를 바꿔가면서 데이타를 얻어와야 하거든요.
예전에 분명히 되었던건데. 에러가 나서. 죙일 걸리고 있네요. 검색해봐도 없길래 글 올립니다
부디 도와주세요 ㅠㅠ
DB 연결부분은 아래와 같습니다.
<!--CodeS-->
if RadioGroup1.ItemIndex =0 then
begin
myDB.Database1.KeepConnection :=false;
myDB.Database1.Params.Clear; <-- 요기에서 부터 딱 걸립니다 ㅠㅠ
myDB.Database1.DatabaseName:='test';
myDB.Database1.Params.values['username'] :='testDB';
myDB.Database1.Params.values['passwd'] :='testpw';
myDB.Database1.KeepConnection :=true;
end
else if RadioGroup1.ItemIndex = 1 then
:
<!--CodeE-->
뭐 저런식으로 되어 있구요.
에러 내용은
'Database1 : Cannot pefrom this operation on an open database.' 입니다.