Fixed Bug<a href="http://sourceforge.net/tracker/?func=detail&atid=484801&aid=1145683...
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / sql / parser / SQL.java
1 package com.quantum.sql.parser;
2
3
4 /**
5  * @author BC
6  */
7 public interface SQL {
8
9         /**
10          * The command describes the type of SQL statement that is represented.  The command
11          * might be "SELECT" or "ALTER TABLE" or "GRANT"
12          * 
13          * @return
14          */
15         public String getCommand();
16 }