FiltredStatement statement = null;
StringBuilder sb;
try
{
con = L2DatabaseFactory.getInstance().getConnection();
statement = con.createStatement();
SqlBatch b = new SqlBatch("INSERT INTO `raidboss_points` (owner_id, boss_id, points) VALUES");
for(Entry<Integer, FastMap<Integer, Integer>> pointEntry : _points.entrySet())
{
FastMap<Integer, Integer> tmpPoint = pointEntry.getValue();
if(tmpPoint == null || tmpPoint.isEmpty())