| java.lang.Object com.quadcap.sql.StmtAddColumn
StmtAddColumn | public class StmtAddColumn implements Stmt(Code) | | Implementation of SQL ADD COLUMN statement.
author: Stan Bailes |
Method Summary | |
public void | execute(Session session) Stmt.execute()
For ADD COLUMN, we need to update the table definition, of course. |
StmtAddColumn | public StmtAddColumn(String tableName, Column column, String aname)(Code) | | Explicit constructor from table name and Column
|
execute | public void execute(Session session) throws IOException, SQLException(Code) | | Stmt.execute()
For ADD COLUMN, we need to update the table definition, of course.
But then, we need to update *all* of the rows!
|
|
|