| java.awt.AWTEvent com.salmonllc.sql.SQLPreviewEvent
SQLPreviewEvent | public class SQLPreviewEvent extends java.awt.AWTEvent (Code) | | This object will be created and passed to every SQLPreview method in registered SQLPreviewListener objects.
See Also: SQLPreviewListener |
Method Summary | |
public int | getBuffer() This method will return the DataStore buffer that the statement was generated from. | public DBConnection | getConnection() This method will return the DBConnection object that will be used to execute the statement. | public DataStore | getDataStore() This method will return the DataStore that the event was fired from. | public int | getRow() This method will return the DataStore row that the statement was generated from. | public String | getStatement() This method will return the SQL statement was generated. |
getBuffer | public int getBuffer()(Code) | | This method will return the DataStore buffer that the statement was generated from.
|
getConnection | public DBConnection getConnection()(Code) | | This method will return the DBConnection object that will be used to execute the statement.
|
getDataStore | public DataStore getDataStore()(Code) | | This method will return the DataStore that the event was fired from.
|
getRow | public int getRow()(Code) | | This method will return the DataStore row that the statement was generated from.
|
getStatement | public String getStatement()(Code) | | This method will return the SQL statement was generated.
|
|
|