org.glowroot.shaded.h2.command.ddl.DefineCommand Maven / Gradle / Ivy
/*
* Copyright 2004-2013 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.glowroot.shaded.h2.command.ddl;
import org.glowroot.shaded.h2.command.Prepared;
import org.glowroot.shaded.h2.engine.Session;
import org.glowroot.shaded.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);
}
@Override
public boolean isReadOnly() {
return false;
}
@Override
public ResultInterface queryMeta() {
return null;
}
public void setTransactional(boolean transactional) {
this.transactional = transactional;
}
@Override
public boolean isTransactional() {
return transactional;
}
}