adoquery无法使用select top语句吗?
rt.
我用access 数据库,在运行时手动生成adoquery.设置
ConnectionString :=
'Provider=Microsoft.Jet.OLEDB.4.0;Password= " ";Data Source=tk.mdb; ' +
'Mode=ReadWrite|Share Deny None;Persist Security Info=True ';
CursorLocation := clUseClient;
CursorType := ctStatic;
.然后让该adoquery执行一个 "select top 10 from table order by id "总是出错.用 "select * from table "就没问题.
为什么?adoquery还有哪些select 语句不能执行呢?
[解决办法]
select top 10 * from table
[解决办法]
低级错误