excel vba - Run a SQL query on existing recordset? -


i've created 3rd recordset (disconnected) 2 existing recordsets came different connections.

now, i'd run sql query on 3rd recordset.

i using excel vba.

thanks, harry

you can use ado recordset filter method sql clauses: filter , recordcount properties example, e.g.

rs.filter = "supplierid = 10" 

Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -