Microsoft JET Database Engine 错误 '80040e14'内存溢出
点击:26
发布时间:
这是Access的一个Bug。传说中的“日文 26 个片假名导致 Access 搜索出现内存溢出(Microsoft JET Database Engine 错误 '80040e14' 内存溢出)”的 Bug。
解决方法
把如下的语句:
Sql="select * From [theTable] Where Content like '%"&keyword&"%'"
换成:
Sql="select * from [theTable] where InStr(1,LCase(Content),LCase('"&keyword&"'),0)<>0"