日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

DataSet case sensitive issue

發(fā)布時(shí)間:2025/3/20 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 DataSet case sensitive issue 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

今天系統(tǒng)進(jìn)行了單元測(cè)試發(fā)現(xiàn)一個(gè)bug,不知道怎么回事。我們整個(gè)小組花費(fèi)了半天時(shí)間終于找到了問題所在,就是:DataSet case sensitive

原以為在DataSet.Tables.Add(new DataTable(string strTableName))時(shí),是可以隨便的,沒有想到就是這個(gè)東西發(fā)生了問題。google 了一下,發(fā)現(xiàn)這篇文章:
http://blogs.msdn.com/smartclientdata/archive/2005/10/07/478087.aspx? ( English )

突然大夢(mèng)清醒,原來Dataset 也是 case sensitive (大小寫敏感)的。查詢MSDN 中關(guān)于 Dataset 的說明,有這么一段:
http://msdn2.microsoft.com/en-us/library/system.data.dataset.aspx

Whereas DataTable objects contain the data, the DataRelationCollection allows you to navigate though the table hierarchy. The tables are contained in a DataTableCollection accessed through the Tables property. When accessing DataTable objects, note that they are conditionally case sensitive. For example, if one DataTable is named "mydatatable" and another is named "Mydatatable", a string used to search for one of the tables is regarded as case sensitive. However, if "mydatatable" exists and "Mydatatable" does not, the search string is regarded as case insensitive. For more information about working with DataTable objects, see Creating a DataTable.

其它的先不管了,我就看到了對(duì)case? sensitive 的描述:

如果 DataSet 中包含名為 "mydatatable" 和另一個(gè) "Mydatatable"時(shí),在使用表查詢時(shí),Dataset 是大小寫敏感的,如果只包含一個(gè) "mydatatable" ,則又不是大小寫敏感的。

看到這里,才發(fā)現(xiàn)原來是對(duì)DataSet 的標(biāo)操作時(shí)出現(xiàn)了問題。更改后一切ok。

總結(jié)

以上是生活随笔為你收集整理的DataSet case sensitive issue的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。