如何不通过DSN访问数据库
Robot里的SQLOpen必须指定DSN才能访问数据库,现在我需要通过指定Server地址、用户名、密码直接访问数据库,请问应该怎么做?谢谢了! SQLOpen (connectStr$[,outputStr$][,prompt%])Comments
The content of connectStr is described in the Microsoft Programmer’s Reference
Guide for ODBC. An example string might be "DSN=datasourcename;
UID=myid; PWD=mypassword". The return must be a Long.
并非必须指定DSN才能访问数据库,连接字符串符合“Microsoft Programmer’s Reference Guide for ODBC”就可以,可以直接在字符串中指定Server地址、用户名、密码访问数据库。你试一下 ok!谢谢!
re:sstars
你是如何做的,能写个出来共享一下吗。做个参考也可以通过ADO来操作……
' BTW,自己多看看书,每个人的时间都是有限的:)' connection and recordset variables
Dim Cnxn As Object
Dim rsCustomers As Object
Dim strCnxn, strSQLCustomers As String
' open connection
Set Cnxn = CreateObject("ADODB.Connection")
strCnxn = "Provider=sqloledb;Data Source=MyServer;" & _
"Initial Catalog=northwind;User Id=sa;Password=; "
Cnxn.Open strCnxn
' create and open Recordset using recordset - open
Set rsCustomers = CreateObject("ADODB.Recordset")
strSQLCustomers = "SELECT CompanyName, ContactName, City " & _
"FROM Customers"
rsCustomers.Open strSQLCustomers, Cnxn
rsCustomers.CursorLocation = 3
' Display ADO Data from Customer Table
Do Until rsCustomers.EOF
SQAConsoleWrite rsCustomers("CompanyName")
SQAConsoleWrite rsCustomers("ContactName")
SQAConsoleWrite rsCustomers("City")
rsCustomers.MoveNext
Loop
' clean up
rsCustomers.Close
Cnxn.Close
Set rsCustomers = Nothing
Set Cnxn = Nothing
提个问题?谢谢回答
原帖由 dotaddress 于 2005-11-5 19:20 发表' BTW,自己多看看书,每个人的时间都是有限的:)
' connection and recordset variables
Dim Cnxn As Object
Dim rsCustomers As Object
Dim strCnxn, strSQLCustomers As String
' open connection
Set ...
感谢楼上的提供的代码,我找了一天终于找到了,非常感谢。我也照着样子试验了一下。提几个问题:
1、“rsCustomers.CursorLocation = 3”这句语句有什么用呢?
2、为什么我把这句话注释了就可以通过,不注释的话系统报错:“Runtime error '440' - Module SQL Server, Line 20. ADODB.Recordset: 对象打开时,不允许操作。”
注:我的操作系统是windows 2000 + SP4,Robot 是 2003版的。我只修改了这两个变量:strCnxn、strSQLCustomers。 rsCustomers.CursorLocation = 3是使用客户端游标的意思,可能你的strSQLCustomers不是select吧,你可以找ado方面的资料看看 我的也提示了
这个同客户端游标和服务器端游标没什么关系把
在连接对象打开时,好像就是不能设置的cursorlocation属性
页:
[1]