I have developed a WinCE application which uses sqlce3.0. Recently I have gotten very strange error with a simple query like this;
select * from customers where name like 'h%';
I connected from SQL Query Analyzer tool and run the command it says:
"data area pass to a system call is too small"
but when i run as follow, it works fine
select * from customers where name like 'a%';
i am confused with it. is this a bug 开发者_如何转开发or what?
thanks.
This looks like a bug in SQL CE 3.0/3.1. Try upgrading to SQL CE 3.5.
精彩评论