VB的ADO连接SQL数据库读取存储过程时显示超时,为什么啊?
代码如下:PrivateSubForm_Load()Adodc1.ConnectionString="Provider=SQLOLEDB.1;PersistSecurit...
代码如下:
Private Sub Form_Load()
Adodc1.ConnectionString = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=AIS20090120191726;Data Source=."
Adodc1.RecordSource = "exec hs_account '2009/01/01','2009/01/31',0"
Set DataGrid1.DataSource = Adodc1
End Sub
显示:超时已过期
为什么啊?怎么解决? 展开
Private Sub Form_Load()
Adodc1.ConnectionString = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=AIS20090120191726;Data Source=."
Adodc1.RecordSource = "exec hs_account '2009/01/01','2009/01/31',0"
Set DataGrid1.DataSource = Adodc1
End Sub
显示:超时已过期
为什么啊?怎么解决? 展开
3个回答
展开全部
你的服务器地址没有,正确的应该是
Adodc3.ConnectionString = "Provider=SQLOLEDB.1;Password=2752;Persist Security Info=True;User ID=sa;Initial Catalog=sample;Data Source=10.170.0.116"
你的ADODC的命令也不对。。。
Adodc3.RecordSource = "select Sir,ComNo,Cmd,D,VTop,VLow,VTop1,VLow1,TestName from SSample where Nm='" & Trim(DataCombo1.Text) & "'and Rev='" & Trim(DataCombo2.Text) & "'and Vin='" & Trim(DataCombo3.Text) & "'and Lod='" & Trim(DataCombo4.Text) & "'and Bar='" & Trim(Text6.Text) & "' order by Sir"
Adodc3.Refresh
Adodc3.ConnectionString = "Provider=SQLOLEDB.1;Password=2752;Persist Security Info=True;User ID=sa;Initial Catalog=sample;Data Source=10.170.0.116"
你的ADODC的命令也不对。。。
Adodc3.RecordSource = "select Sir,ComNo,Cmd,D,VTop,VLow,VTop1,VLow1,TestName from SSample where Nm='" & Trim(DataCombo1.Text) & "'and Rev='" & Trim(DataCombo2.Text) & "'and Vin='" & Trim(DataCombo3.Text) & "'and Lod='" & Trim(DataCombo4.Text) & "'and Bar='" & Trim(Text6.Text) & "' order by Sir"
Adodc3.Refresh
展开全部
cnn.Open "Provider=SQLOLEDB.1; " & _
"Persist Security Info=False; " & _
"Connect Timeout=2;" & _
"User ID=sa; " & _
"password; " & _
"Initial Catalog=UFSystem; " & _
"Data Source="
如果数据量过大的时候经常会超时的
你可以通过设置Connect Timeout来改变超时时间
"Persist Security Info=False; " & _
"Connect Timeout=2;" & _
"User ID=sa; " & _
"password; " & _
"Initial Catalog=UFSystem; " & _
"Data Source="
如果数据量过大的时候经常会超时的
你可以通过设置Connect Timeout来改变超时时间
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该没有问题
我没有用lz的存储过程
只是用了一个简单的查询语句
如select * from t_stock
可以应用~~
我没有用lz的存储过程
只是用了一个简单的查询语句
如select * from t_stock
可以应用~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询