01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: * $Id: Query.java 3669 2007-02-26 13:51:23Z gbevin $
07: */
08: package com.uwyn.rife.database.queries;
09:
10: import com.uwyn.rife.database.capabilities.Capabilities;
11: import com.uwyn.rife.database.exceptions.DbQueryException;
12:
13: public interface Query {
14: public void clear();
15:
16: public String getSql() throws DbQueryException;
17:
18: public QueryParameters getParameters();
19:
20: public Capabilities getCapabilities();
21:
22: public void setExcludeUnsupportedCapabilities(boolean flag);
23: }
|