org.apache.cayenne.access.jdbc.SQLStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cayenne-client-nodeps
Show all versions of cayenne-client-nodeps
Cayenne Object Persistence Framework
/*****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.apache.cayenne.access.jdbc;
/**
* A PreparedStatement descriptor containing a String of SQL and an array of parameters.
* SQLStatement is essentially a "compiled" version of any single query.
*
* @since 1.1
* @author Andrus Adamchik
*/
public class SQLStatement {
protected String sql;
protected ParameterBinding[] bindings;
protected ColumnDescriptor[] resultColumns;
public SQLStatement() {
}
public SQLStatement(String sql, ParameterBinding[] bindings) {
this(sql, null, bindings);
}
/**
* @since 1.2
*/
public SQLStatement(String sql, ColumnDescriptor[] resultColumns,
ParameterBinding[] bindings) {
setSql(sql);
setBindings(bindings);
setResultColumns(resultColumns);
}
/**
* @since 1.2
*/
public ColumnDescriptor[] getResultColumns() {
return resultColumns;
}
/**
* @since 1.2
*/
public void setResultColumns(ColumnDescriptor[] descriptors) {
resultColumns = descriptors;
}
public ParameterBinding[] getBindings() {
return bindings;
}
public String getSql() {
return sql;
}
public void setBindings(ParameterBinding[] bindings) {
this.bindings = bindings;
}
public void setSql(String string) {
sql = string;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy