{ if (null === $con) { $con = Propel::getServiceContainer()->getWriteConnection(InseeGeoRegionTableMap::DATABASE_NAME); } if ($criteria instanceof Criteria) { $criteria = clone $criteria; // rename for clarity } else { $criteria = $criteria->buildCriteria(); // build Criteria from InseeGeoRegion object } // Set the correct dbName $query = InseeGeoRegionQuery::create()->mergeWith($criteria); try { // use transaction because $criteria could contain info // for more than one table (I guess, conceivably) $con->beginTransaction(); $pk = $query->doInsert($con); $con->commit(); } catch (PropelException $e) { $con->rollBack(); throw $e; } return $pk; } } // InseeGeoRegionTableMap // This is the static code needed to register the TableMap for this table with the main Propel class. // InseeGeoRegionTableMap::buildTableMap();