C連線sql,登陸失敗,C 資料庫連線登陸失敗 用的VS2010,sql server

2021-05-02 22:20:04 字數 1529 閱讀 1681

1樓:匿名使用者

sqlserver的不同例項之間不共享使用者資訊和許可權,也不共享使用的資料庫,所以你在一個例項中能登入並建立了資料庫,但是在另一個例項中就找不到相同的資料庫。integrated security=true代表你使用windows使用者的整合許可權登入,沒有問你的sqlserver賬戶和密碼,為了確認問題,你最好使用server=jie-pc\\wincc;database=db_mrcy;user id=****;password=*****的連線字串連線資料庫。

2樓:應憐雲

先用查詢分析器sa登陸試試

賦予許可權應該是選中角色sa,右擊->屬性,裡面應該有相關的

c#windows應用程式登陸介面如何連線到sql資料庫驗證使用者名稱和使用者密碼,我要詳細**……

3樓:匿名使用者

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.data.sqlclient;

using system.data;

namespace myktv

return connection;}}

public void openconnection()else if (connection.state == connectionstate.broken)

}public void closeconnection()}}}

4樓:蒔栩

string connstr = @"data source=.\sqlexpress;initial catalog=資料庫名;integrated security=true";

sqlconnection conn = new sqlconnection(connstr);

string sql = "select * from admin where username='" + user + "' and pwd='" + pwd + "'";

sqlcommand cmd = new sqlcommand(sql, conn);

int x=cmd.executenonquery();

if (x > 0)

else

c# 資料庫連線登陸失敗 用的vs2010,sql server 2008 5

5樓:匿名使用者

檢查網路連線是否正常

sql server 2008 服務管理器 先停止執行,再啟動

重啟資料庫伺服器

6樓:匿名使用者

都告訴你登入失敗了,看看使用者名稱密碼是不是錯了啊,mssql服務是不是啟動了啊

正常人應該不會用904做使用者名稱,你這**。。。

7樓:逍艹遙丶王

那你資料庫連線字串寫錯了

資料庫連線語句,C 中連線資料庫的語句?

資料庫連線字串已經在配置檔案定義了,呵呵,實際應用和學校有點區別的。呃,你開啟configurationmanager,看看onlineshopconnectionstring就明白了。c 中連線資料庫的語句?c 資料庫連線 系統引用using using access資料庫需要。using sql...

怎樣在VS中用c與SQL資料庫建立連線 即從SQL2019資料庫中拿出資料顯示在頁面中

給你一個例子 public dataset getuserinfobyinput string input catch exception e 以上方法會返回一個dataset ds 然後再頁面上用一個gridview顯示就可以了,把ds的資料繫結在gridview上面 gridview.datas...

C往sql資料庫中錄入資料為什麼gridview控制元件沒有立刻顯示更新呢

如果gridview繫結的是sqldatasource,那麼只需要加一句 gridview1.databind 就可以瞭如果是用的dataset或其他,那麼需要重新獲取dataset,然後gridview1.datasource ds gridview1.databind 需要你的gridview再...