updating SQL plugin with latest Quantum code
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.sql / src / net / sourceforge / phpdt / sql / adapters / RedBrickAdapter.java
1 package net.sourceforge.phpdt.sql.adapters;
2
3 /**
4  * @author bcholmes
5  */
6 public class RedBrickAdapter extends DatabaseAdapter {
7
8         public String getShowTableQuery(DatabaseInfo info) {
9                 return "select name from rbw_tables where type = 'TABLE'";
10         }
11
12         public String getShowViewQuery(DatabaseInfo info) {
13                 return "select name from rbw_tables where type = 'VIEW'";
14         }
15 }