-3

SQL Server の正しい接続文字列は何ですか? 使用した ODBC 接続文字列が機能しません。問題の内容を確認するにはどうすればよいですか?

これは私が取り組んでいるプロジェクト全体のごく一部であり、機能していません。

public static class Extensions
{
    public static string constr = "Driver={SQL Server};server=127.0.0.1;uid=test;pwd=test123;database=account";
    //public static string constr = "Driver={SQL Server};server=127.0.0.1;uid=test;pwd=test123;app=Microsoft® Visual Studio® 2010;wsid=WIN-8VW8RV959F2;database=account";
    public static byte[] StrToByteArray(string str)
    {
4

2 に答える 2

2

接続文字列は次のように書き換えることができます。

data source=127.0.0.1;initial catalog=account; user id=test;password=test123

その他のバリエーションは、http://www.connectionstrings.com/にあります。

于 2013-10-13T13:29:32.477 に答える
0
public static class Extensions
{
    public static string constr = "Data Source=ServeName;Initial Catalog=Database_Name";
    //public static string constr = "Data Source=ServeName;Initial Catalog=Database_Name";
    public static byte[] StrToByteArray(string str)
于 2013-10-13T14:32:28.240 に答える