X-Git-Url: http://secure.phpeclipse.com

diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/model/TableImpl.java b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/model/TableImpl.java
index 161ab0f..cddb0bc 100644
--- a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/model/TableImpl.java
+++ b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/model/TableImpl.java
@@ -2,7 +2,6 @@ package com.quantum.model;
 
 import java.sql.SQLException;
 
-import com.quantum.adapters.AdapterFactory;
 import com.quantum.sql.MultiSQLServer;
 import com.quantum.sql.SQLHelper;
 
@@ -16,8 +15,8 @@ class TableImpl extends EntityImpl implements Table {
         Integer size = null;
         try {
             size = new Integer(SQLHelper.getSize(
-                getBookmark().getConnection(), getCondQualifiedName(), 
-                    AdapterFactory.getInstance().getAdapter(getBookmark().getType())));
+                getBookmark().getConnection(), getQualifiedName(), 
+                    getBookmark().getAdapter()));
         } catch (SQLException e) {
         } catch (ConnectionException e) {
         }
@@ -25,7 +24,7 @@ class TableImpl extends EntityImpl implements Table {
     }
     
     public void deleteAllRows() throws SQLException, ConnectionException {
-        String sql = "DELETE FROM " + getCondQualifiedName();
+        String sql = "DELETE FROM " + getQualifiedName();
 		MultiSQLServer.getInstance().execute(getBookmark().getConnection(), sql);
     }
 }
\ No newline at end of file