给个例子:
var CntStr:WideString;
begin
CntStr:=promptDataSource(0,'AdoCnt');
//Adocnt是随便给出的字符串,如连接正确,则CntStr不会等于该字符串
if CntStr<>'AdoCnt' then
begin
StatBar.SimpleText :=' 状态:已连接';
Memo2.Lines.Add('已成功连接到数据库');
AdoCnt.Connected :=false; //这里的AdoCnt是TAdoConnection控件。
AdoCnt.ConnectionString :=CntStr;
end;
end;