0

为此,我没有得到任何输出,认为没有任何错误或警告……我猜问题出在连接字符串上,但不确定,是吗?我在 SQL Server 数据工具中创建了一个数据库名称 RV(.mdf 文件)并将其连接到 Visual Studio 中的这个项目。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
using System.Configuration;

namespace student_TableConnectTry1
{



    class Program
    {


        static void Main(string[] args)
        {
            using (SqlConnection cn = new SqlConnection())
            {


                    cn.ConnectionString =@"Data Source=(local);Integrated Security=SSPI;" +"Initial Catalog=RV";

                cn.Open();



                string strSQL = "Select * From student";
                SqlCommand myCommand = new SqlCommand(strSQL, cn);
                using (SqlDataReader myDataReader = myCommand.ExecuteReader())
                {
                    // Loop over the results.
                    while (myDataReader.Read())
                    {

                        Console.WriteLine("-> usn: {0}, name: {1}.",
                        myDataReader["usn"].ToString(),
                        myDataReader["name"].ToString()
                        );
                    }
                }

                Console.ReadLine();

            }
        }
    }
}
4

1 回答 1

0

您可以使用以下连接字符串并尝试:

Integrated Security=SSPI;Persist Security Info=False;User ID=youruserid;Initial Catalog=databasename;Data Source=.\SQLEXPRESS

另请参阅以下链接以获取连接字符串:

http://www.connectionstrings.com/sql-server/

我希望它会帮助你。:)

让我知道它是否对您没有帮助。

于 2013-10-26T11:36:13.887 回答