This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / 请教VB高手,如何让 不同的 RECORDSET上的数据显示在同一个 DATAGRID上啊, recordset上的fields 是一样的.
-swang106(非有志不能及险远);
2003-11-20
(#1475934@0)
-
union two recordsets into one.
-mafan(麻烦);
2003-11-20
(#1475943@0)
-
but how to union two recordsets?
I want to copy one recordset's content to the other one, but I don't know if it is a easy way to do it.
-swang106(非有志不能及险远);
2003-11-20
(#1475984@0)
-
getrows
-argcsina(我是陌生人);
2003-11-20
(#1476008@0)
-
and then? 需要把数组里的值一个个取出来放在变量里再写到另外一个Recordset中去吗?还是可以直接用数组? 多谢
-swang106(非有志不能及险远);
2003-11-20
(#1476061@0)
-
select A,B,C from table X
Union
Select A,B,C from table Y
-mafan(麻烦);
2003-11-20
(#1476039@0)