ADODB.连接(0x800A0E78)

发布于 2024-11-07 03:46:36 字数 831 浏览 3 评论 0原文

在 MSSQL 2000 上工作的原始连接字符串:

提供商=SQLOLEDB.1;保留安全信息=True;用户ID=XXXXXXXX;初始目录=IntranetApps;数据来源=MS;使用程序准备=1;自动翻译=真;数据包大小=4096;工作站ID=数据写入器;密码=XXXXXXXX';

新的连接字符串不适用于 MSSQL 2008:

提供商=SQLNCLI10;服务器=PR-NB-CIS011\SQLEXPRESS;数据库=IntranetApps;Uid=XXXXXXXX;Pwd=XXXXXXXX;

我尝试将提供程序更改为 SQLNCLI10.1,没有提供程序,...

过去我解决过同样的问题,但是天啊,我现在不记得了。我认为需要安装一些提供程序,但我现在找不到任何相关信息。

有代码女巫抛出异常:

this.connection = new ActiveXObject("ADODB.Connection");
    this.connection.ConnectionString = this.conString;
    try {
        this.connection.Open;
    }
    catch(e){
        Response.write("Chyba pri pripojeni na db.");
        return false; // pokud dojde k chybe pri pripojovani k databazi, pak fce vraci false, jinak true
    }

Original connectionstring whitch working on MSSQL 2000:

Provider=SQLOLEDB.1; Persist Security Info=True; User ID=XXXXXXXX; Initial Catalog=IntranetApps; Data Source=MS; Use Procedure for Prepare=1; Auto Translate=True; Packet Size=4096; Workstation ID=datawriter; Password=XXXXXXXX';

New connectionstring which not working on MSSQL 2008:

Provider=SQLNCLI10;Server=PR-NB-CIS011\SQLEXPRESS;Database=IntranetApps;Uid=XXXXXXXX;Pwd=XXXXXXXX;

I tryed change provider to SQLNCLI10.1, without provider, ...

Once in past i solved same problem, but hell, i don't remember it now. I thing that there was needed install some provider, but i can find nothing about it now.

There is code witch throw exception:

this.connection = new ActiveXObject("ADODB.Connection");
    this.connection.ConnectionString = this.conString;
    try {
        this.connection.Open;
    }
    catch(e){
        Response.write("Chyba pri pripojeni na db.");
        return false; // pokud dojde k chybe pri pripojovani k databazi, pak fce vraci false, jinak true
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小瓶盖 2024-11-14 03:46:36

如果这确实是连接字符串问题,您应该:

  1. 学习基础知识
  2. 创建零长度“whatever.udl”文件并从命令行启动它;然后,您可以调整参数,测试连接,并从剪贴板粘贴连接字符串,
  3. 尝试 ";Data Source=PR-NB-CIS011\SQLEXPRESS;" 而不是 ";Server= PR-NB-CIS011\SQLEXPRESS;"

If this really is a connection string problem, you should:

  1. study the basics
  2. create a zero length "whatever.udl" file and start it from command line; you can then twiddle the parameters, test the connection, and paste the connection string from the clipboard
  3. try ";Data Source=PR-NB-CIS011\SQLEXPRESS;" instead of ";Server=PR-NB-CIS011\SQLEXPRESS;"
淡忘如思 2024-11-14 03:46:36

调用 Open 后,出现异常:“[DBNETLIB][ConnectionOpen (Connect()).]SQL Server neexistuje nebo byl odepřen přístup。” (我没有找到确切的本地化,这意味着:“服务器不存在或访问被拒绝。”)编号:-2147467259

在这种情况下,您的连接字符串中指定的服务器似乎不存在,未运行或您的用户帐户已经提供没有足够的权限。

要尝试的事情:

1) 您的连接字符串对于 SQL Express 2008 的格式不正确,请尝试以下操作:

Server=PR-NB-CIS011\SQLEXPRESS;Database=IntranetApps;User Id=XXXXXXXX;Password=XXXXXXXX;

2) 当您打开 Management Studio 时,尝试使用连接字符串的用户名和密码进行连接。有时,这可以使查找和跟踪权限问题变得更快、更容易。

3) 如果您使用 SQL Server 用户帐户登录,请确保启用了 SQL Server 和 Windows 身份验证。为此,请在 SQL Management Studio 中右键单击服务器“属性”,然后在“安全”选项卡上选中“SQL Server 和 Windows 身份验证模式”

After call Open, there is exception: "[DBNETLIB][ConnectionOpen (Connect()).]SQL Server neexistuje nebo byl odepřen přístup." (I didn't find exact localization, it means: "Server not exist or acces denied.") number: -2147467259

In this case it appears the server specified in your connection string does not exist, is not running or the user account you've provided doesn't have sufficient permissions.

Things to try:

1) Your connection string is not correctly formatted for SQL Express 2008, try this:

Server=PR-NB-CIS011\SQLEXPRESS;Database=IntranetApps;User Id=XXXXXXXX;Password=XXXXXXXX;

2) When you open Management Studio, try and connect with the username and password of your connection string. This sometimes makes it quicker and easier to find and trace permissions issues.

3) If you're logging in with a SQL server user account, make sure you have SQL server and windows authentication enabled. To do this, in SQL Management Studio, right click the server, Properties, and on the Security tab, check 'SQL Server and Windows Authentication mode'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文