摘要:
库: using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; namespace BarCodeLibrary { public class Ze 阅读全文
摘要:
今天update access数据库时,使用了参数化的方式,结果不报错,但是数据也没有更新。后来发现access使用参数化时,参数位置必须和赋值顺序相同才行,否则更新时就会出现数据无法更新但是也不报错的怪现象。 例如:update tablename set [a]=@a,[b]=@b where 阅读全文
摘要:
Access 的top和order by 的问题 今天用Access做sql查询的时候出现了比较奇怪的问题:用:select top 10 * from [BBSXP_Threads] where IsDel=0 order by views却返回 大于 10 行的记录,根据理论应该是返回 按 vi 阅读全文
摘要:
首先需要获取ChnCharInfo.dll (汉子转拼音就可以了)和ChineseConverter.dll (简繁转化吧) ChnCharInfo.dll官方下载操作如下: 先下载微软Microsoft Visual Studio International Pack 1.0 SR1语言包: Mi 阅读全文
摘要:
add方法传入的是一个object对象,利用这点可以传入一个自定义对象,选中时获得的也是一个完整对象。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System 阅读全文