原则是写在任何地方都可以,主要用来连接字符串。写法如下:
using System
using System.Collections.Generic
using System.Linq
using System.Text
using System.Data//首先导入命名空间
using System.Data.SqlClient//首先导入命名空间
namespace EJ_Market.Model.Common
{
class DataBase
{
SqlConnection con = null
public SqlConnection GetCon()
if (con == null)
{
con=new
SqlConnection("server=www.test.edu.comuid=sapwd=ln881205database=EJmarket")//server=.点代表本地服务器uid是混合模式登陆的账号pwd是混合模式登陆的密码database是数据库名称
}
if (con.State == ConnectionState.Closed)
{
con.Open()
}
return con
}
//end GetCon public void GetClose()
{
if (con.State == ConnectionState.Open)
{
con.Close()
}
}//end GetClose
}//end class
}//end namespace
扩展资料:
连接数据库、 *** 作数据库,本质是利用数据库提供的动态链接库MySql.Data.dll进行 *** 作。MySql.Data.dll提供以下8个类:
MySqlConnection: 连接MySQL服务器数据库。
MySqlCommand:执行一条sql语句。
MySqlDataReader: 包含sql语句执行的结果,并提供一个方法从结果中阅读一行。
MySqlTransaction: 代表一个SQL事务在一个MySQL数据库。
MySqlException: MySQL报错时返回的Exception。
MySqlCommandBuilder: Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated MySQL database.
MySqlDataAdapter: Represents a set of data commands and a database connection that are used to fill a data set and update a MySQL database.
MySqlHelper: Helper class that makes it easier to work with the provider.
代码通常是写在连接数据库的代码后面,如下代码片断:
// 注册驱动Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver")
// 获得一个数据库连接
con = DriverManager.getConnection(connectionUrl)
String SQL = "SELECT * from note"
// 创建查询
stmt = con.createStatement()
// 执行查询,拿到结果集
rs = stmt.executeQuery(SQL)
确定数据库已在sql服务器上运行,然后打开企业管理器,打开数据库,打开Tables,点击你想查看的那个表,右键-打开表-返回所有行;如果是英文版的就:右键-open table-return all rows欢迎分享,转载请注明来源:内存溢出
评论列表(0条)