KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > h2 > command > ddl > DefineCommand


1 /*
2  * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).
3  * Initial Developer: H2 Group
4  */

5 package org.h2.command.ddl;
6
7 import org.h2.command.Prepared;
8 import org.h2.engine.Session;
9
10 public abstract class DefineCommand extends Prepared {
11     
12     public DefineCommand(Session session) {
13         super(session);
14     }
15     
16     public boolean isTransactional() {
17         return false;
18     }
19     
20     public boolean isReadOnly() {
21         return false;
22     }
23     
24 }
25
Popular Tags