Microsoft JET Database Engine 錯誤 '80040e14'內存溢出的解決
作者:佚名 時間:2012-05-07 分享到:
一個簡單的方法是:
把如下的語句:
Sql = "select * From [tablename] Where tableTitle like '%"&word&"%' Order By id Desc"
換成:
Sql = "select * from [tablename] where InStr(1,LCase(tableTitle),LCase('"&word&"'),0)<>0 order by tableid desc"
如沒特殊注明,文章均為上海聯楷網絡原創,轉載請注明來自:http://www.ktcbnqb.cn/contact/20151229/n7525.html