JDocCoverage Report - 21.04.2006 22:02:51

Namemethod, %comment, %TODO@see
smallsql.database.CommandUpdate233,6%   (708/1397)00

/* =============================================================
 * SmallSQL : a free Java DBMS library for the Java(tm) platform
 * =============================================================
 *
 * (C) Copyright 2004-2006, by Volker Berlin.
 *
 * Project Info:  http://www.smallsql.de/
 *
 * This library is free software; you can redistribute it and/or modify it 
 * under the terms of the GNU Lesser General Public License as published by 
 * the Free Software Foundation; either version 2.1 of the License, or 
 * (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
 * USA.  
 *
 * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
 * in the United States and other countries.]
 *
 * ---------------
 * CommandUpdate.java
 * ---------------
 * Author: Volker Berlin
 * 
 */
package smallsql.database;


/**
 * @author Volker Berlin
 *
 */
class CommandUpdate extends CommandSelect {

	// expression from the SET clause like SET dest1 = src1, dest2 = src2
	private Expressions destinations = new Expressions();
	private Expressions sources = new Expressions();
	
	private Expression[] newRowSources;
	
	CommandUpdate( Logger log ){
		super(log);
	}
	
	/**
	 * Set a value pair of the update command. For example:
	 * "UPDATE table1 SET col1 = 234"
	 * "col1" is the dest
	 * "234" is the source
	 * @param dest
	 * @param source must be a ExpressionName
	 */
	void addSetting(Expression dest, Expression source){
		//destinations.add(dest);
		columnExpressions.add(dest);
		sources.add(source);
	}
	
	
	/*boolean compile(SSConnection con) throws Exception{
		if(super.compile(con)){
			TableView table = TableViewResult.getTableViewResult(join).getTableView();
			newRowSources = new Expression[table.columns.size()];
			for(int i=0; i<destinations.size(); i++){
				String name = destinations.get(i).getName();
				int colIdx = table.findColumn( name );
				if(colIdx>=0){
					// Column found 
					newRowSources[colIdx] = sources.get(i);
					break;
				}else
					throw Utils.createSQLException("Invalid column name '" + name + "'.");
			}
			return true;
		}
		return false;		
	}*/
	
	
	void executeImpl(SSConnection con, SSStatement st) throws Exception {
		int count = columnExpressions.size();
		columnExpressions.addAll(sources);
		compile(con);
		columnExpressions.setSize(count);
		//TableViewResult result = TableViewResult.getTableViewResult(join);
		newRowSources = sources.toArray();
		updateCount = 0;
		join.execute();
		while(next()){
			//result.updateRow(newRowSources);
			updateRow( con, newRowSources);
			updateCount++;
		}
	}
}