* rethrown wrapped into a PropelException. */ public static function doInsert($criteria, ConnectionInterface $con = null) { if (null === $con) { $con = Propel::getServiceContainer()->getWriteConnection(JaUsuariosTableMap::DATABASE_NAME); } if ($criteria instanceof Criteria) { $criteria = clone $criteria; // rename for clarity } else { $criteria = $criteria->buildCriteria(); // build Criteria from JaUsuarios object } if ($criteria->containsKey(JaUsuariosTableMap::COL_ID) && $criteria->keyContainsValue(JaUsuariosTableMap::COL_ID)) { throw new PropelException('Cannot insert a value for auto-increment primary key (' . JaUsuariosTableMap::COL_ID . ')'); } // Set the correct dbName $query = JaUsuariosQuery::create()->mergeWith($criteria); // use transaction because $criteria could contain info // for more than one table (I guess, conceivably) return $con->transaction(function () use($con, $query) { return $query->doInsert($con); }); } } // JaUsuariosTableMap // This is the static code needed to register the TableMap for this table with the main Propel class. // JaUsuariosTableMap::buildTableMap();