cddb0bcc977346c14cb20dbafaf0ac3338cbd179
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / model / TableImpl.java
1 package com.quantum.model;
2
3 import java.sql.SQLException;
4
5 import com.quantum.sql.MultiSQLServer;
6 import com.quantum.sql.SQLHelper;
7
8
9 class TableImpl extends EntityImpl implements Table {
10     public TableImpl(Bookmark bookmark, String schema, String name) {
11         super(bookmark, schema, name, TABLE_TYPE);
12     }
13     
14     public Integer getSize() {
15         Integer size = null;
16         try {
17             size = new Integer(SQLHelper.getSize(
18                 getBookmark().getConnection(), getQualifiedName(), 
19                     getBookmark().getAdapter()));
20         } catch (SQLException e) {
21         } catch (ConnectionException e) {
22         }
23         return size;
24     }
25     
26     public void deleteAllRows() throws SQLException, ConnectionException {
27         String sql = "DELETE FROM " + getQualifiedName();
28                 MultiSQLServer.getInstance().execute(getBookmark().getConnection(), sql);
29     }
30 }