Multiple DB connection

Hi,

I’m very new to Xojo.
No problem to keep 2 Oracle connection through below code, but I’d like to handle this one with a sort of array as I can’t expect how many Oracle connections should be kept.
mDb_first = New OracleDatabase
mDb_second = New OracleDatabase

Can you let me know how I can do that with Array object?

Thanks.

mDb() as Database

mDB.Append new OracleDatabase
mDB.Append new OracleDatabase

Oh. It works well!
This forum is really good place to know.

Thank you.