资源简介
SQL Server数据库操作类是C#语言的,可实现对SQL Server数据库的增删改查询等操作,并且该操作类可实现对图片的存储
代码片段和文件信息
using System;
using System.Data;
using System.Configuration;
using System.Data.SqlClient;
namespace SQLServerDatabase
{
public class DatabaseOp
{
private string SqlConnectionString; //数据库连接
///
/// 构造函数
/// 初始化连接数据库参数
///
public DatabaseOp()
{
SqlConnectionString = “Data Source=.;Initial Catalog=DatabaseName;User ID=sa;pwd=123456;Connection Lifetime=0;max pool size=200“;
}
///
/// 构造函数
/// 初始化连接数据库参数
///
/// 连接对象
public DatabaseOp(string ConSqlServer)
{
SqlConnectionString = ConSqlServer;
}
///
/// 打开数据库连接
///
/// 连接
public void Open(SqlConnection cn)
{
if (cn.State == ConnectionState.Closed)
{
cn.Open();
}
}
///
/// 关闭数据库连接
///
/// 连接
public void Close(SqlConnection cn)
{
if (cn != null)
{
if (cn.State == ConnectionState.Open)
{
cn.Close();
}
cn.Dispose();
}
}
///
/// 查询
///
/// SQL语句
/// 是否存在
public bool ChaXun(string strSql)
{
SqlConnection cn = new SqlConnection(SqlConnectionString);
SqlCommand cmd = new SqlCommand();
try
{
Open(cn);
cmd = new SqlCommand(strSql cn);
return cmd.ExecuteReader().Read();
}
catch (Exception e)
{
throw new Exception(e.Message);
}
finally
{
cmd.Dispose();
Close(cn);
}
}
///
/// 查询
///
/// SQL语句
/// 第一行第一列结果
public string ChaXun2(string strSql)
{
SqlConnection cn = new SqlConnection(SqlConnectionString);
SqlCommand cmd = new SqlCommand();
try
{
Open(cn);
cmd = new SqlCommand(strSql cn);
return cmd.ExecuteScalar().ToString().Trim();
}
catch (Exception e)
{
throw new Exception(e.Message);
}
finally
{
cmd.Dispose();
Close(cn);
}
}
///
/// 查询(SqlDataReader)
- 上一篇:Socket组播通信
- 下一篇:C#的Winform多语言实现resx文件
相关资源
- 游戏账户管理系统
- C# mysql、sqlserver连接demo源码
- c#+SqlServer实体类生成工具
- 招聘管理系统 asp.net sqlserver
- 用C#实现的一个学生成绩管理系统
- WinForm连接SQLServer 一份C#小代码
- asp.net c# 自动创建SqlServer数据库实现
- FusionCharts+asp.net+sqlserver生成图表
- 网上书店系统源码C#+SQLSERVER
- C#仓库管理系统
- C# MySQL 数据库操作类 (包含MySql.Dat
- C#远程连接SQLserver 数据库
- SQL Server数据库备份与恢复C#代码
- c#仓库信息管理系统
- FusionCharts ASP.NET+SQLServer
- SQL Server Profiler with C#
- 大屏滚动显示源码 C#
- SqlServer数据库对应生成c#实体类生成工
- 物流配送中心管理系统C#+SQLserver
- C#使用了SQLserver编写的简易学生信息管
- 基于asp.net开发的学生信息管理系统
- 超市进销存管理系统 Sqlserver 数据库文
- Asp.net core Web API + Autofac + EFCore + Elem
- C#Winform 增删改查 SqlServer(附数据库)
- C# WPF 操作sqlserver数据库 上传 文件
- CShrapSQLServerExample 这些系统都比较经典
- 图书管理系统c# winform制作sqlserver数据
- asp.net 网上图书销售系统
- C#对SQLserver增删改查
- C# + SQLSERVER + VS2015 简单叫号系统
评论
共有 条评论