SQLite本地事务处理
private void toolStripButton1_Click(object sender, EventArgs e)
{
//判断新增的年度是否已经存在
if (HasYear())
{
MessageBox.Show("该年度分配给各单位的任务已经存在!");
return;
}
else
{
#region 方法总结
//var q = from p in mf.DS.UnitPaperTask.AsEnumerable()
// where p.year == tscombYear.SelectedItem.ToString()
// select p;
//foreach (var i in q)
//{
//这个命令是直接插入库中,系统由于IO问题会非常慢,有假死现象
// mf.unitpapertaskTap.Insert(i.unitid, i.paperid, i.plantnum, tscombNewYear.SelectedItem.ToString().Trim()); //}
//mf.unitpapertaskTap.Update(mf.DS.UnitPaperTask);
//mf.unitpapertaskTap.Dispose();
//mf.unitpapertaskTap.Fill(mf.DS.UnitPaperTask);
//
//解决办法,在内存中把表筛选后,复制一个datatable,循环改year值的同时“在内存中”加入新行值。最后提交一次提交到库
//通过实践,updata也是一行一行的增加到数据库,同样的慢,看来上面的方法也对。 #endregion #region 解决方法二也是不行 //string oldYear = tscombYear.SelectedItem.ToString();
//string newYear = tscombNewYear.SelectedItem.ToString(); //DataTable dt = mf.DS.UnitPaperTask.Select("year='" + oldYear + "'").CopyToDataTable();
////dataGridView1.DataSource = dt;
//foreach (DataRow dr in dt.Rows)
//{
// dr["year"] = newYear;
// //内存中加入行 可用 dataGridView1.DataSource = mf.DS.UnitPaperTas;显示出来 // mf.DS.UnitPaperTask.AddUnitPaperTaskRow(dr["unitid"].ToString(), dr["paperid"].ToString(), Convert.ToInt32(dr["plantnum"].ToString()), dr["year"].ToString());
//} ////dataGridView1.DataSource = mf.DS.UnitPaperTask;
////也是到数据库了,同样的很慢。
//mf.unitpapertaskTap.Update(mf.DS.UnitPaperTask); //删除再填充是为了取得ID
//mf.unitpapertaskTap.Dispose();
//mf.unitpapertaskTap.Fill(mf.DS.UnitPaperTask); #endregion #region 解决方法三采用事务处理 string oldYear = tscombYear.SelectedItem.ToString();
string newYear = tscombNewYear.SelectedItem.ToString();
string datasource = ConfigurationManager.ConnectionStrings["DBzd.Properties.Settings.baokanConnectionString"].ConnectionString.ToString();
var qUnitTask = from p in mf.DS.UnitPaperTask.AsEnumerable() where p.year == oldYear select p;
var qComnyTask = from p in mf.DS.UnitCompMoney.AsEnumerable() where p.year == oldYear select p;
//加入了详细的任务列表
using (SQLiteConnection conn = new SQLiteConnection(datasource))
{
conn.Open();
using (System.Data.SQLite.SQLiteTransaction trans = conn.BeginTransaction())
{
using (SQLiteCommand cmd = new SQLiteCommand(conn))
{
cmd.Transaction = trans;
try
{
foreach (var i in qUnitTask)
{
cmd.CommandText = @"INSERT INTO UnitPaperTask(unitid,paperid,plantnum,year) VALUES('" + i.unitid+ "','" +i.paperid + "','" + i.plantnum + "','" + newYear + "')";
cmd.ExecuteNonQuery();
} trans.Commit();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
trans.Rollback(); }
}
}
} //需要加入企业任务和指定金额的任务单位
using (SQLiteConnection con = new SQLiteConnection(datasource))
{
con.Open();
using (SQLiteTransaction tran = con.BeginTransaction())
{
using (SQLiteCommand cm = new SQLiteCommand(con))
{
cm.Transaction = tran;
try
{
foreach (var i in qComnyTask)
{
cm.CommandText = @"insert into UnitCompMoney(unitid,compprices,year) values ('" + i.unitid + "','" + i.compprices + "','" + newYear + "')";
cm.ExecuteNonQuery();
}
tran.Commit();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
tran.Rollback();
}
}
}
} #endregion #region 第四种方法。用SQLiteHelper实现--最后是实再不了的,因为参数只能传递一次,不能随着循环而改变值
//string oldYear = tscombYear.SelectedItem.ToString();
//string newYear = tscombNewYear.SelectedItem.ToString();
//DataTable dt = mf.DS.UnitPaperTask.Select("year='" + oldYear + "'").CopyToDataTable(); //SQLiteParameter[] Paras = new SQLiteParameter[] {
// new SQLiteParameter("@unitid",dt.Rows[0][1].ToString()),
// new SQLiteParameter("@paperid",dt.Rows[0][2].ToString()),
// new SQLiteParameter("@plantnum",dt.Rows[0][3].ToString()),
// new SQLiteParameter("@year",newYear)
//};
//string sql = "insert into UnitPaperTask(unitid,paperid,plantnum,year) VALUES ( @unitid,@paperid,@plantnum,@year)"; //int rs = SQLiteHelper.TransExecuteNonQuery(dt, sql, Paras);
//MessageBox.Show("增加新年度任务成功:"+rs.ToString()); #endregion #region 第5种方法 因为第3种是本地事处理,虽然很好的实现功能,现在想把两个表的操作放在一个分布式事务中。--这样不行SQLite没有 CommittableTransaction #endregion mf.unitpapertaskTap.Dispose();
mf.unitpapertaskTap.Fill(mf.DS.UnitPaperTask);
mf.unittaskmoeyTap.Dispose();
mf.unitpapertaskTap.Fill(mf.DS.UnitPaperTask); AddToolYear();
}
}
SQLite本地事务处理的更多相关文章
- sqlite本地保存数据
package com.cesecsh.ics.database; import android.content.Context; import android.database.Cursor; im ...
- Android 使用SQLite本地数据库
参考:http://blog.csdn.net/jianghuiquan/article/details/8569252 在Android平台上,集成了一个嵌入式关系型数据库—SQLite.以SQLi ...
- [转载]Unity3D 游戏引擎之使用C#语言建立本地数据库(SQLITE)
以前在开发中一直使用IOS源生的数据库,通过传递消息的形式在与Unity3D中进行交互.本文我在详细说说如何使用C#语言来在MAC 操作系统下创建Unity本地数据库,我是C#控哇咔咔--- 首先你需 ...
- SQLite入门与分析(四)---Page Cache之事务处理(1)
写在前面:从本章开始,将对SQLite的每个模块进行讨论.讨论的顺序按照我阅读SQLite的顺序来进行,由于项目的需要,以及时间关系,不能给出一个完整的计划,但是我会先讨论我认为比较重要的内容.本节讨 ...
- Xamarin.Forms 使用本地数据库之 SQLite
前言 Xamarin.Forms支持使用SQLite数据库引擎.本文介绍了Xamarin.Forms应用程序如何读取和写入数据到使用SQLite.Net的本地SQLite数据库. 在Xamarin.F ...
- SQLite做为本地缓存的应用需要注意的地方
原文:SQLite做为本地缓存的应用需要注意的地方 今天看到了园友陆敏计的一篇文章<<C#数据本地存储方案之SQLite>>, 写到了SQLite的诸多优点,尤其适应于本地数据 ...
- Swift使用FMDB操作SQLite
SQLite大家都懂的.本地数据库,在移动设备上使用广泛.IOS平台上自然也少不了它.最近自己折腾一个小App的时候需要使用sqlite本地数据库,上Github搜了下IOS下对SQLite的三方封装 ...
- Sqlite查询时间段内的数据问题解决!
最近搞Sqlite本地查询,需求为查询某时间段内的数据,在SQL中我们都知道为: select * from tblName where rDate Between '2008-6-10' and ...
- SQLite函数详解之二
sqlite3支持的数据类型: NULL.INTEGER.REAL.TEXT.BLOB 但是,sqlite3也支持如下的数据类型 smallint 16位整数 integer ...
随机推荐
- OK335xS psplash 进度条工作原理 hacking
#!/bin/sh # # rc This file is responsible for starting/stopping # services when the runlevel changes ...
- Python cookbook - 读书笔记
Before: python built-in function: docs 我只想学function map(), THIS - 摘: map(foo, seq) is equivalent to ...
- Java [Leetcode 228]Summary Ranges
题目描述: Given a sorted integer array without duplicates, return the summary of its ranges. For example ...
- memcache的应用场景和实现原理
面临的问题 对于高并发高访问的 Web应用程序来说,数据库存取瓶颈一直是个令人头疼的问题.特别当你的程序架构还是建立在单数据库模式,而一个数据池连接数峰 值已经达到500的时候,那你的程序运行离崩溃的 ...
- 搞明白这八个问题,Linux系统就好学多了。
正在犹豫入坑Linux学习的同学或者已经入坑的同学,经常会问到这样八个问题.今天,这些问题我都会一一解答,希望我的看法能帮助各位同学.常言道“好的开始是成功的一半”,如果你明白了以下八个问题,就能有一 ...
- .net-C#代码判断
ylbtech-doc:.net-C#代码判断 C#代码判断 1.A,C#代码判断返回顶部 01.{ C#题目}public static void Main(string[] args){ ...
- IOS PUSH 实践操作~~~~
1.推送过程简介 (1)App启动过程中,使用UIApplication::registerForRemoteNotificationTypes函数与苹果的APNS服务器通信,发出注册远 ...
- 《Python CookBook2》 第一章 文本 - 去字符串两端的空格 && 合并字符串 && 将字符串逐字符或者逐词反转
去字符串两端的空格 任务: 获得一个开头和末尾都没有多余空格的字符串. 解决方案: 字符串对象的lstrip.rstrip和strip 方法正是为这种任务而设计的.这几个方法都不需要参数,它们会直接返 ...
- Text Kit入门
更详细的内容可以参考官方文档 <Text Programming Guide for iOS>. “Text Kit指的是UIKit框架中用于提供高质量排版服务的一些类和协议,它让程序能够 ...
- <转>亲手缔造DNS体系,创建DNS私有根:DNS系列之六
打造DNS私有根 我们现在已经从前面的博文中了解到了很多DNS的相关知识,今天我们用一个综合性的实验把前面的内容都串起来复习一下,这个有趣的实验就是DNS的私有根.私有根顾名思义是由个人或企业自行创建 ...