一、使用Connection对象连接数据库
- 使用SqlConnection对象连接SQL Server数据库
string str="Server=;User Id=sa;Pwd=;DataBase=";
SqlConnection con=new SqlConnection(str);
con.Open();
con.Close();
- 使用OleDbConnection对象连接OLE DB数据源
OLE DB数据源包含具有OLE DB驱动程序的任何数据源,如SQL Server,Access,Excel和Oracle等。OLE DB数据源连接字符串必须提供Provider属性及其值。
OleDbConnection con=new OleDbConnection("provide=;Data Source=Access文件路径");
使用OleDb方式连接SQL Server数据库
OleDbConnection con=new OleDbConnection("provider=;Data Source=;Initial Catalog=;Uid=;Pwd=");
- 使用OdbcConnection对象连接ODBC数据源
string str="Driver=;Server=;Trusted_Connection=yes;Database=";
OdbcConnection con=new OdbcConnection(str);
con.Open();
con.Close();
- 使用OracleConnection对象连接Oracle数据库
string str="Data Source=Oracle8i;Integrated Security=yes";
OracleConnection con=new OracleConnection(str);
con.Open();
con.Close();