import java.sql.SQLException;
import com.quantum.sql.MultiSQLServer;
-import com.quantum.sql.SQLHelper;
class TableImpl extends EntityImpl implements Table {
public Integer getSize() {
Integer size = null;
try {
- size = new Integer(SQLHelper.getSize(
+ size = new Integer(MultiSQLServer.getInstance().getSize(getBookmark(),
getBookmark().getConnection(), getQualifiedName(),
getBookmark().getAdapter()));
} catch (SQLException e) {
public void deleteAllRows() throws SQLException, ConnectionException {
String sql = "DELETE FROM " + getQualifiedName();
- MultiSQLServer.getInstance().execute(getBookmark().getConnection(), sql);
+ MultiSQLServer.getInstance().execute(getBookmark(), getBookmark().getConnection(), sql);
}
}
\ No newline at end of file