怎样用vb调用sql server的查询语句然后将查询结果显示到文本框中?

2024-11-30 09:09:34
推荐回答(3个)
回答1:

SQL SERVER的数据库你应该会吧,这里就不说了。
dim db as new adodb.connection
dim rs as new adodb.recordset
dim str1 as string

db.open "数据库链接串"
str1="select * from stu_info where stu_id='"& txt1.text & " '
rs.open str1,db,1
if rs.recordcount<=0 then
msgbox "没有记录!"
rs.close
exit sub
endif
txt2.text=rs.fields("stu_name").value
rs.close
db.close

试试吧,里面的一些可能要修改一下,但大致的代码就是这样了。

回答2:

注意一下数据表中的字段stu_id的数据类型
str="select * from stu_info where stu_id='"&txt1.text&"'" 写法是正确的

要想在txt2中显示查询的结果,首先要打开记录集
假设数据库连接对象为conn,记录集对象为rs则打开记录集语句为
rs.open str,conn,adopenkeyset,adlockoptimistic
if rs.RecordCount>0 then
txt2.Text=rs.Fields("stu_name").Value
end if

回答3:

str="select * from stu_info where stu_id='"& txt1.text & "'" '连接符不能省略

txt2文本框是现实字段stu_id的查询值,还是stu_name的查询值?
如果是stu_id的
txt2.text=str 'txt2文本框中显示查询的结果
如果是stu_name的查询值
txt2.text="select * from stu_info where stu_id='"& txt1.text & "'"