For some reason when I call a model I cannot use a different database config name besides default.
$carrier = new Model_Carrier('as400');
This is just goes back to the "default" config. Even if I rename or delete the default config, it still tries to go to it. I do have a "as400" config in my database.php file. If I set that as400 as my default it works, but I need other models to use the default which is MySQL. the as400 is NOT mysql. It's a ODBC driver I wrote.
When I ran the query, I had to do put the database config name in the execute parameter. I don't understand why it won't go by the database I defined already in the query.