📄 publishdao.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
using Model;
using System.Data;
using System.Data.SqlClient;
namespace DAL
{
public class PublishDAO
{
SQLHelper sqlhepler = new SQLHelper();
private DataSet ds;
private SqlParameter para;
//查询所有记录数
public int GetAllPublishCount()
{
try
{
int count = sqlhepler.ReturnSQL("select count(*) from publish");
return count;
}
catch (Exception)
{
throw;
}
}
//查询公告信息并分页
public DataSet GetPublishInfo(int start,int limit)
{
try
{
ds = sqlhepler.GetDataSet("select top " + limit + " * from publish where pubid not in(select top " + start + " pubid from publish order by pubid desc) order by pubid desc");
return ds;
}
catch (Exception)
{
throw;
}
}
//新增公告信息
public int InsertPublishInfo(PublishBean pub)
{
try
{
SqlParameter[] sp ={
para=new SqlParameter("@pubperson",pub.pubperson),
para=new SqlParameter("@pubTitle",pub.pubTitle),
para=new SqlParameter("@pubContent",pub.pubContent)
};
int count = sqlhepler.RunProc("proc_InsertPublish",sp);
return count;
}
catch (Exception)
{
throw;
}
}
//修改公告信息
public int EditPublishInfo(PublishBean pub)
{
try
{
int count = sqlhepler.RunSQL("update publish set pubtitle='"+pub.pubTitle+"',pubcontent='"+pub.pubContent+"' where pubid="+pub.pubID);
return count;
}
catch (Exception)
{
throw;
}
}
//删除公告信息
public int DelPublishInfo(int pubid)
{
try
{
int count = sqlhepler.RunSQL("delete publish where pubid="+pubid);
return count;
}
catch (Exception)
{
throw;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -