The Table object represents a database table
- existsInDatabase(): Returns- trueif the table exists in the current database, otherwise- false.
- count(): Returns the number of rows in this table if it exists in the current database, otherwise throws an error.
- isView(): Returns- trueif the table is a view, otherwise- false.- See also Section 27.6, “Using Views”, for further information about database views in MySQL. 
- getName(): Returns the- Schemain which this table resides.
- getSession(): Returns the- Sessionobject corresponding to the current session.