Package org.dbunit.database.PrimaryKeyFilter

Examples of org.dbunit.database.PrimaryKeyFilter.PkTableMap.addAll()


            logger.debug("getDataset(connection={}, rootTable={}, allowedIds={}) - start",
                    new Object[] { connection, rootTable, allowedIds });
        }

        PkTableMap map = new PkTableMap();
        map.addAll(rootTable, allowedIds);
        return getDataset(connection, map);
    }

    public static IDataSet getDataset( IDatabaseConnection connection, PkTableMap rootTables )
    throws SearchException, SQLException, DataSetException
View Full Code Here


            logger.debug("getAllDataset(connection={}, rootTable={}, allowedPKs={}) - start",
                    new Object[]{ connection, rootTable, allowedPKs });
        }

        PkTableMap map = new PkTableMap();
        map.addAll( rootTable, allowedPKs );
        return getAllDataset( connection, map );
    }

    public static IDataSet getAllDataset( IDatabaseConnection connection, PkTableMap rootTables )
    throws SearchException, SQLException, DataSetException
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.