希望初学者有用!
[此贴子已经被作者于2006-6-22 15:08:41编辑过]
[此贴子已经被作者于2006-6-22 15:08:41编辑过]
这是个控制台应用程序
////////////////////////////////////下面是代码
using System;
using System.Data.SqlClient;
using System.Data;//////以前忘加了,不好意思啊!
namespace 连接数据库
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
SqlConnection con = new SqlConnection();
con.ConnectionString = "data source=MyComputer;initial catalog=northwind;integrated security=true";//data source改成自己的计算机名
con.Open();
SqlCommand com = new SqlCommand();
com.Connection = con;
com.CommandText = "select * from Customers where country=@country";
com.Parameters.Add("@country",System.Data.SqlDbType.VarChar);
com.Parameters[0].Value="germany";
SqlDataReader rd = com.ExecuteReader();
while(rd.Read())
{
Console.WriteLine(rd.GetString(0)+"\t"+rd.GetString(8));
}
rd.Close();
con.Close();
}
}
}
[此贴子已经被作者于2006-6-26 21:20:40编辑过]