I´m using this code to get data (fill the recordset) from a database (Access97)

set mydb = OpenDatabase("database.mdb")
set myQuery = mydb.CreateQueryDef("aqry", "SELECT * FROM ATABLE")
set qryRS = mydb.OpenRecordset("aqry", dbOpenDynaset)



this makes the database to grow from 1 MB to 16 MB, why????


olle