I have a project which contains multiple databases in a directory structure like this:
folder1
|_ sub1
|_ db1
|_ db2
|_ sub2
|_ db1
|_ d2
I would like to run one query against all the databases.
Is there a way to do this using Sequel, or would I need to traverse the directory and create a new database connection for each database, then run the query?
Help appreciated.