摘要: 1.创建版本库 (1)设置Git的配置变量。这些设置会在全局文件(.gitconfig)或系统文件(/etc/gitconfig)中做永久记录 $ git config --global user.name "Kimisme" $ git config --global user.email Kimisme@Git.com (2)在本用户的全局配置中,设置Git别名 $ git... 阅读全文
posted @ 2016-04-18 20:03 Kimisme 阅读(262) 评论(0) 推荐(0)
摘要: 最终代码 update T_Fee set gzl_dfg_op = 'delete' where MetReadRecordID in ( select MetReadRecordID from T_Fee where FeeItemID =2 and State =1 and MetReadRecordID is not null group by... 阅读全文
posted @ 2016-04-18 10:03 Kimisme 阅读(337) 评论(0) 推荐(0)
摘要: 一、发现问题 二、分析问题 .net长时间连接mysql导致超时; 方式一:连接用完后,就关闭连接 方式二:增加C#的执行sqlcommand时间 三、解决问题 增加了这一句,问题解决了 using (MySqlConnection conn = new MySqlConnection(mysqlCon.ConnectionString)) { mysqlDa.Se... 阅读全文
posted @ 2016-04-18 08:54 Kimisme 阅读(3479) 评论(0) 推荐(0)