var CntStr:WideString;
begin
//下行代码可弹出连接对话框.
CntStr:=promptDataSource(0,'AdoCnt'); //字符串'AdoCnt'是随便给出的,用于下行判断是否被改变
if CntStr<>'AdoCnt' then
begin
StatBar.SimpleText :=' 状态:已连接';
Memo2.Lines.Add('已成功连接到数据库');
AdoCnt.Connected :=false; //这里的AdoCnt是AdoConnection控件.
AdoCnt.ConnectionString :=CntStr;
end;
end;