/* * Copyright 2004-2011 H2 Group. Multiple-Licensed under the H2 License, * Version 1.0, and under the Eclipse Public License, Version 1.0 * (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.command.ddl; import org.h2.command.Prepared; import org.h2.engine.Session; import org.h2.result.ResultInterface; /** * This class represents a non-transaction statement, for example a CREATE or * DROP. */ public abstract class DefineCommand extends Prepared { /** * The transactional behavior. The default is disabled, meaning the command * commits an open transaction. */ protected boolean transactional; /** * Create a new command for the given session. * * @param session the session */ DefineCommand(Session session) { super(session); } public boolean isReadOnly() { return false; } public ResultInterface queryMeta() { return null; } public void setTransactional(boolean transactional) { this.transactional = transactional; } public boolean isTransactional() { return transactional; } }