1

我收到以下错误“无效的授权规范,无效的连接字符串属性”

 //namespaces
  using System;
  using System.Collections.Generic;
   using System.ComponentModel;
  using System.Data;
 using System.Drawing;
  using System.Linq;
  using System.Text;
 using System.Windows.Forms;
 using System.Data.SqlClient;
 using System.Configuration;
 using System.IO;
 using System.Data.OleDb;

  namespace Database1
 {
   public partial class Form1 : Form
  {
    public Form1()
    {
        InitializeComponent();
    }
    public bool IsValidConnectionForPrinting()
    {
      //string declaration  
        string str = @" Provider = SQLOLEDB; Data Source = sekhar; Database = DMS; UserId = sa; Password = 123";


         //Oledbconnection to database           
        OleDbConnection oleDbcon = new OleDbConnection(str);

         try
        {
            oleDbcon.Open();
            MessageBox.Show("hai");
            oleDbcon.Close();
        }
       //Exception 
     catch (Exception ex) 

        {
            if (ex.Message.StartsWith("Invalid object name"))
            {
                MessageBox.Show(ex.Message.Replace("Invalid object name", "Table or view not found"), "Connection Test");
            }
//Connection 
  private void btnConnTest_Click(object sender, EventArgs e)
    {
        if (IsValidConnectionForPrinting())
        {
            MessageBox.Show("Connection succeeded", "Connection Test");
        }
       }
        }
    }
4

2 回答 2

0

我遇到了这个错误,结果发现代码路径没有连接到数据库。

值得检查。

于 2019-05-06T12:52:21.623 回答
0

我建议使用不包含Databaseor的连接字符串,Initial Catalog然后调用类似:

oleDbcon.ChangeDatabase("DMS");

这是因为,正如您已经体验过的那样,不同的数据库驱动程序使用不同的语法来引用连接字符串中的数据库。

于 2015-11-12T12:22:57.847 回答