摘要: /// /// http连接基础类,负责底层的http通信 /// public class HttpService { public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicy... 阅读全文
posted @ 2017-01-20 09:31 Vincent_void 阅读(244) 评论(0) 推荐(0) 编辑
摘要: $(function () { $('#tt').tree({ url: '/IS/Department/JsonTree?companyID=@(Request.QueryString["companyID"])', lines: true, dnd: true, ... 阅读全文
posted @ 2017-01-06 15:13 Vincent_void 阅读(3984) 评论(0) 推荐(0) 编辑
摘要: 【工具】——【扩展和更新】——【联机】输入 C# outline 2015 阅读全文
posted @ 2016-11-23 17:14 Vincent_void 阅读(172) 评论(0) 推荐(0) 编辑
摘要: C#读取MySql时,如果存在字段类型为date/datetime时的可能会出现以下问题“Unable to convert MySQL date/time value to System.DateTime”原因:可能是该字段(date/datetime)的值默认缺省值为:0000-00-00/00 阅读全文
posted @ 2016-11-04 16:14 Vincent_void 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 被迫转到MySQL数据库,发现读取数据库时,tinyint类型的值都被转化为boolean了,这样大于1的值都丢失,变成true了。查阅资料MySQL中无Boolean类型,都是存储为tinyint了,这也无妨,但是读回时不应该都变成boolean啊。网络检索没有解决方案,准备向官方报告bug,细想 阅读全文
posted @ 2016-11-01 10:24 Vincent_void 阅读(5025) 评论(2) 推荐(1) 编辑
摘要: allow zero datetime=true导致datetime转换失败:MySql.Data.Types.MySqlDateTime”的对象无法转换为类型“System.Nullable`1[System.DateTime] 做反射转换时遇到该问题 mysql连接字符串去掉allow zero 阅读全文
posted @ 2016-11-01 10:10 Vincent_void 阅读(4355) 评论(0) 推荐(2) 编辑
摘要: 1.首先需要下载mySQL-connector-net的安装包。可以通过下面两种方式,第一种是需要安装的,第二种是直接可以下载使用的。 第一种: http://dev.mysql.com/downloads/file/?id=463758 第二种: http://dev.mysql.com/down 阅读全文
posted @ 2016-10-31 16:46 Vincent_void 阅读(1285) 评论(0) 推荐(0) 编辑
摘要: 查询所有的数据库 1 select [name] from [sysdatabases] order by [name] 查询一个数据库中的所有表『 [type] = 'u' 是用户表,[type] = 's'是系统表』 1 select [id], [name] from [sysobjects] where [type] = 'u' 根据上个语句的查询结果然后再查询一个表中的所有字段... 阅读全文
posted @ 2016-09-29 17:11 Vincent_void 阅读(728) 评论(0) 推荐(0) 编辑
摘要: /// /// 创建ACCESS数据库,并且创建表和数据 /// /// /// /// public int DataTableToAccess(Dictionary dictTable, string filePath) { int count =... 阅读全文
posted @ 2016-09-27 11:21 Vincent_void 阅读(1194) 评论(0) 推荐(0) 编辑
摘要: /// /// 处理DataRow筛选条件的特殊字符 /// /// 行筛选条件表达式 /// public static string DvRowFilter(string rowFilter) { //在DataView的RowFilter里面的特殊字符要用"[]"括起来,单引号要换成"''",他的表达式里面没有通配符的说法 return rowFilter.Replace("[", ... 阅读全文
posted @ 2016-09-26 10:42 Vincent_void 阅读(5311) 评论(0) 推荐(0) 编辑