与datatable奋战了一天,记录一下。。。
1. 查看得到的 datatable 是否为空 datatable.Rows.Count
2. 查看得到的 DaTarow[] 是否为空,可用 DaTarow.Length
3. Datatable 在进行select的时候,默认是 CaseSensitive 为 false
4. string.IndexOf 默认是区分大小写的
可以通过参数 System.StringComparison.OrdinalignoreCase ,忽略大小写
另有System.StringComparison.CurrentCultureIgnoreCase等
you Could use IndexOf() and pass StringComparison.OrdinalignoreCase
string Title = "STRING"; bool contains = Title.IndexOf("string", StringComparison.OrdinalignoreCase) >= 0;
Even better is defining a new extension method for string
public static bool Contains(this string source, string tocheck, StringComparison comp) { return source.IndexOf(tocheck, comp) >= 0; } string Title = "STRING"; bool contains = Title.Contains("string", StringComparison.OrdinalignoreCase);
另一个解决方案:
bool contains = Regex.Match("StRiNG to search", "string", RegexOptions.IgnoreCase).Success;2012-2-6 17:32:24 PM IS2120@CSDN
5. 在 datatable 上使用通配符
myDatatable.Select( "Title like '*Professional* ' ")
或者myDatatable.Select( "Title like '%Professional% ' ")
6. 在使用Select方法或DataVIEw的时候,一定要注意把字符条件值的一个单引号改成两个单引号,执行
str = str.Replace("'","''");!!
http://www.cnblogs.com/hjf1223/archive/2005/08/31/227170.html
用Datatable.Select(string)或给DataVIEw.RowFilter设置Expression表达式时,由于Expression是字符串拼接而成的,因为跟SQL语句也要注意单引号问题.如这个的查询会导致异常的发生: DaTarow[]m_drResult = dt.Select( " name='name's' " ); 解决办法是将一个单引号变成两个(跟sql语法是一样的).
DaTarow[]m_drResult = m_dtSource.Select( " name='name''s' " )
2012-2-7 13:52:53 PM IS2120@CSDN
一个解决方法
http://linkcd.cnblogs.com/archive/2005/08/31/227276.html
看到§猪阿不猪§提到一个Datatable.Select的注意事项: 注意去掉不正确的单引号.
平时项目中,我们一般是直接在写filter语句时这样写
thename = thename.Replace("'","''");
string filter = string.Format("name = '{0}'",thename);
不过有时候也比较麻烦,如果你的filter里面code的值一多,处理起来就比较烦.
针对这个问题,以前写了一个专门的replace函数(vb.net),能够智能替换filter中不正确的单引号,并保留正确的单引号.
比如有语句: filter = "name = 'theN'ame' AND Code = 'd'd'",把整个filter经过处理之后,得到"name = 'theN''ame' AND Code = 'd''d'"
不过这个版本的算法比较粗糙 (特别时在处理like,IN关键字的时候,实在是恶心的代码 -_-bb) 不过暂时能应付项目的要求,当然Unit Test也是必不可少的.
大家可以看看,也欢迎提出更好的算法 :)
源代码和Unit Test 代码在这里.(updated: 2005/9/23: fixed some BUGs)
最后废话一句: 用Dataset就是麻烦...
7. 向datatable添加 daTarow
northwindDataSet.CustomersRow newCustomersRow =
northwindDataSet1.Customers.NewCustomersRow();
newCustomersRow.CustomerID = "ALFKI";
newCustomersRow.Companyname = "Alfreds Futterkiste";
northwindDataSet1.Customers.Rows.Add(newCustomersRow);
//z 2012-3-27 15:57:39 PM IS2120@CSDN
8. 向一个表(dstTB)加入一行已属于另一个table(srcDT)的一个daTarow时使用 importRow
This row already belongs to another table.
9. .net 4 中添加了这个类 System.Runtime.Caching.MemoryCache
,可以用来做cache
以上是内存溢出为你收集整理的DataTable DataRow String Tips...全部内容,希望文章能够帮你解决DataTable DataRow String Tips...所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)