Is there a way to get the columns of a table in the order that they are defined within the database in activejdbc? I tried this:
User u = new User(); // User extends org.javalite.activejdbc.Model
Map<String, ColumnMetadata> columns = u.getMetaModel().getColumnMetadata();
However, the returned map has the columns in alphabetical order, not the order that is defined in the table.
I'm using MySQL if that matters.