|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.torque.engine.database.transform.SQLToAppData
public class SQLToAppData
A Class that converts an sql input file to a Database structure. The class makes use of SQL Scanner to get sql tokens and the parses these to create the Database class. SQLToAppData is in effect a simplified sql parser.
Field Summary | |
---|---|
private Database |
appDataDB
|
private int |
count
|
private String |
databaseType
|
private String |
sqlFile
|
private Token |
token
|
private List |
tokens
|
Constructor Summary | |
---|---|
SQLToAppData(String sqlFile)
Create a new class with an input Reader |
|
SQLToAppData(String sqlFile,
String databaseType)
Create a new class with an input Reader. |
Method Summary | |
---|---|
private void |
create_Table_Column_Data(Table tbl)
Parse the data definition of the column statement. |
private void |
create_Table_Column_Foreign(Table tbl)
Parses FOREIGN KEY (BAR) REFERENCES TABLE (BAR) statement |
private void |
create_Table_Column_Primary(Table tbl)
Parses PRIMARY KEY (FOO,BAR) statement |
private void |
create_Table_Column_Unique(Table tbl)
Parses UNIQUE (NAME,FOO,BAR) statement |
private void |
create_Table_Column(Table tbl)
Parses column information between the braces of a CREATE TABLE () sql statement. |
private void |
create_Table()
Parses a CREATE TABLE sql command |
private void |
create()
Parses a CREATE TABLE FOO command. |
private void |
err(String name)
Creates an error condition and adds the line and column number of the current token to the error message. |
Database |
execute()
Execute the parser. |
String |
getSqlFile()
Get the current input sql file |
private boolean |
hasTokens()
Check if there is more tokens available for parsing. |
private void |
next()
Move to the next token. |
void |
setSqlFile(String sqlFile)
Set the current input sql file |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private String sqlFile
private List tokens
private Token token
private Database appDataDB
private int count
private String databaseType
Constructor Detail |
---|
public SQLToAppData(String sqlFile)
sqlFile
- the sql filepublic SQLToAppData(String sqlFile, String databaseType)
sqlFile
- the sql filedatabaseType
- Method Detail |
---|
public String getSqlFile()
public void setSqlFile(String sqlFile)
sqlFile
- the sql fileprivate void next() throws ParseException
ParseException
- if there is no more tokens available.private void err(String name) throws ParseException
name
- name of the error
ParseException
private boolean hasTokens()
private void create() throws ParseException
ParseException
private void create_Table() throws ParseException
ParseException
- error parsing the input fileprivate void create_Table_Column(Table tbl) throws ParseException
ParseException
- error parsing the input fileprivate void create_Table_Column_Primary(Table tbl) throws ParseException
ParseException
- error parsing the input fileprivate void create_Table_Column_Unique(Table tbl) throws ParseException
ParseException
- error parsing the input fileprivate void create_Table_Column_Foreign(Table tbl) throws ParseException
ParseException
- error parsing the input fileprivate void create_Table_Column_Data(Table tbl) throws ParseException
ParseException
- error parsing the input filepublic Database execute() throws IOException, ParseException
IOException
- If an I/O error occurs
ParseException
- error parsing the input file
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |