C#SQLCE.doc

上传人:sk****8 文档编号:3501386 上传时间:2019-06-01 格式:DOC 页数:42 大小:73.50KB
下载 相关 举报
C#SQLCE.doc_第1页
第1页 / 共42页
C#SQLCE.doc_第2页
第2页 / 共42页
C#SQLCE.doc_第3页
第3页 / 共42页
C#SQLCE.doc_第4页
第4页 / 共42页
C#SQLCE.doc_第5页
第5页 / 共42页
点击查看更多>>
资源描述

1、c#开发的运行在 wm5.0环境中的 sqlce数据库操纵。2011-06-04 00:56这是数据库的封装类: using System; using System.Data; using System.Data.Common; using System.Data.SqlServerCe; using System.Windows.Forms; using System.IO; namespace testDB public class SQLCE public static SqlCeConnection conn = null; public static SqlCeTransactio

2、n trans = null; public static SqlCeCommand cmd = null; public static string sData = System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly(). GetName().CodeBase) + “test.sdf“; public SQLCE() / TODO: 在此处添加构造函数逻辑 / 初始化数据库; public static bool Init() try String sConn = “Data So

3、urce = “ + sData; if (conn = null) | (conn.State = ConnectionState.Closed) bool bCreate = false; if (!File.Exists(SQLCE.sData) String connStr = “Data Source = “ + sData; SqlCeEngine engine = new SqlCeEngine(sConn); engine.CreateDatabase();/创建数据库 engine.Dispose(); bCreate = true; conn = new SqlCeConn

4、ection(sConn); cmd = new SqlCeCommand(); cmd.Connection = conn; conn.Open(); if (conn.State = ConnectionState.Closed) MessageBox.Show(“连接数据库失败“, “提示“, MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); return false; if (bCreate) SQLExec(Common.SQL_TEST);/ 建表语句 Messag

5、eBox.Show(“数据库初始化成功“); catch MessageBox.Show(“连接数据库失败“, “提示“, MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); return false; return true; / 封闭数据库; public static bool Close() try cmd.Connection.Close(); conn.Close(); return true; catch return false; / 将查询结果封装到 DataS

6、et中 / sql 语句 / 调用方定义的 DataSet / 成功返回 true 失败返回 false public static bool SQLQuery(string sSQL, ref DataSet ds) try if (conn.State = ConnectionState.Closed) conn.Open(); SqlCeDataAdapter adp = new SqlCeDataAdapter(sSQL, conn); if (ds = null) ds = new DataSet(); adp.Fill(ds); catch MessageBox.Show(“查询失

7、败, SQL “ + sSQL + “ “, “提示“, MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); return false; return true; / 将 查询结果封装到 lv 中; / sql 语句 / 外界定义的 ListView / 查询成功返回 true 错误返回 false public static bool SQLQuery(string sSQL, ref ListView lv) try if (conn.State = ConnectionSt

8、ate.Closed) conn.Open(); SqlCeDataAdapter adp = new SqlCeDataAdapter(sSQL, conn); DataSet ds = new DataSet(); adp.Fill(ds); lv.Items.Clear(); int iRecordCount = ds.Tables0.Rows.Count; if (iRecordCount 表名 / 字段 public static int SQLMaxValue(string sTable, string sField) string sSQL = “select max(“ + s

9、Field + “) as MAXVALUE from “ + sTable; try if (conn.State = ConnectionState.Closed) conn.Open(); SqlCeDataAdapter adp = new SqlCeDataAdapter(sSQL, conn); DataSet ds = new DataSet(); adp.Fill(ds); if (ds.Tables.Count 0) if (ds.Tables0.Rows.Count 0) return Common.StrToIntDef(ds.Tables0.Rows00.ToStrin

10、g(), 0); catch MessageBox.Show(“查询失败, SQL “ + sSQL + “ “, “提示“, MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); return -1; return 1; / 查询单个值; / sql 语句; / 返回结果字符串 public static string SQLValue(string sSQL) try if (conn.State = ConnectionState.Closed) conn.Open(); S

11、qlCeDataAdapter adp = new SqlCeDataAdapter(sSQL, conn); DataSet ds = new DataSet(); adp.Fill(ds); if (ds.Tables.Count 0) if (ds.Tables0.Rows.Count 0) return ds.Tables0.Rows00.ToString(); catch MessageBox.Show(“查询失败, SQL “ + sSQL + “ “, “提示“, MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); return “; return “; / 不带事务的执行语句 public static bool SQLExec(string sSQL) try if (conn.State = ConnectionState.Closed) conn.Open(); cmd.CommandText = sSQL;

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 实用文档资料库 > 策划方案

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。