无效的授权规范和无效的连接字符串属性

时间:2012-04-10 04:41:07

标签: c# winforms

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

 //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");
        }
       }
        }
    }

2 个答案:

答案 0 :(得分:0)

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

oleDbcon.ChangeDatabase("DMS");

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

答案 1 :(得分:0)

我遇到此错误,结果发现代码路径未连接到数据库。

价值检查。