翻翻过去那场雪
你首选要在窗体上放置一个 TADOConnection控件,然后设置一下它的连接字符串ConnectionString。TADOConnection.Close;With TADOConnection doConnectionString:='Provider=SQLOLEDB.1;'+ 'User ID=Sa;Password=;'+ 'Integrated Security=SSPI;'+ 'Persist Security Info=False;'+ 'Initial Catalog=数据库名称;'+ 'Data Source=服务器名称';然后再在窗体上放置ADO控件,并设置它的Connection属性指向 TADOConnection,这时就可以用ADO通过SQL语句对数据库进行操作了。例:TADOQuery.Connection:= TADOConnection;TADOQuery.Close;TADOQuery.SQL.Clear;TADOQuery.SQL.Add('Select * from TempTable');TADOQuery.Open;