vb.net - How to copy one record set to another in VB -
i have record set, want copy data record set.
dim rsattributes,loggedinuserid,rsattributes1 set rsattributes = server.createobject("adodb.recordset") set rsattributes1 = server.createobject("adodb.recordset") set rsattributes = call db data.
now how can copy rsattributes value/data rsattributes1 . tried clone method, did not work.
Comments
Post a Comment