Hello there. I'm starting with Castle ActiveRecord.
In my application I have a tool create a new data base file (I use SQLite). I create new data base by use ActiveRecordStarter.Initialize() and ActiveRecordStarter.CreateSchema(), then I add some data to this data base.
After this I want to disconnect to this database and connect to another, which have the same structure (I use the same model class).
How I can disconnect to one database, and open new connection?
thanks for help.