????delphi 代码de 意思?
请各位老师、前辈帮我。 感谢回复者!请各位老师、前辈帮我解释下这段代码。
begin
if application.messagebox('确定要恢复数据库吗?)','提示信息', MB_OKCANCEL+MB_ICONINFORMATION) <> IDCANCEL then
begin
try
ADOQ_check.ConnectionString := 'Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=master';
with ADOQ_check do
begin
close;
sql.Clear;
sql.Add('select name from sysdatabases where name=:sname');
parameters.ParamByName('sname').value:=trim(CB_name.Text);
open;
end;
except
showmessage('连接数据库失败,'+chr(13)+chr(13)+'请核实是否已正确安装 MS SQL Server7.0!');
exit;
end;
提供我学习的地址也行
[[it] 本帖最后由 hyfcn 于 2008-11-10 10:05 编辑 [/it]]