36373839404142
return new SelectCommandMySQLImpl(c); } public static InsertCommand getInsertCommand(Class c) throws easyJ.common.EasyJException { return new InsertCommandSQLServerImpl(c); }
4243444546474849
} public static InsertCommand getInsertCommand(Object o) throws easyJ.common.EasyJException { if (DatabaseType.SQL_SERVER.equals(databaseType)) return new InsertCommandSQLServerImpl(o); return new InsertCommandMySQLImpl(o); }