com.pivotal.gemfirexd.internal.client.net.NetStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snappydata-store-client Show documentation
Show all versions of snappydata-store-client Show documentation
SnappyData store based off Pivotal GemFireXD
The newest version!
/*
Derby - Class com.pivotal.gemfirexd.internal.client.net.NetStatement
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.
*/
/*
* Changes for GemFireXD distributed data platform (some marked by "GemStone changes")
*
* Portions Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
*
* Licensed 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. See accompanying
* LICENSE file.
*/
package com.pivotal.gemfirexd.internal.client.net;
import com.pivotal.gemfirexd.internal.client.am.ColumnMetaData;
import com.pivotal.gemfirexd.internal.client.am.Section;
import com.pivotal.gemfirexd.internal.client.am.SqlException;
import com.pivotal.gemfirexd.internal.client.am.Statement;
import com.pivotal.gemfirexd.jdbc.ClientDRDADriver;
public class NetStatement implements com.pivotal.gemfirexd.internal.client.am.MaterialStatement {
Statement statement_;
// Alias for (NetConnection) statement_.connection
NetConnection netConnection_;
// Alias for (NetAgent) statement_.agent
NetAgent netAgent_;
// If qryrowset is sent on opnqry then it also needs to be sent on every subsequent cntqry.
public boolean qryrowsetSentOnOpnqry_ = false;
//---------------------constructors/finalizer---------------------------------
private NetStatement() {
initNetStatement();
}
private void resetNetStatement() {
initNetStatement();
}
private void initNetStatement() {
qryrowsetSentOnOpnqry_ = false;
}
// Relay constructor for NetPreparedStatement.
NetStatement(com.pivotal.gemfirexd.internal.client.am.Statement statement, NetAgent netAgent, NetConnection netConnection) {
this();
initNetStatement(statement, netAgent, netConnection);
}
void resetNetStatement(com.pivotal.gemfirexd.internal.client.am.Statement statement, NetAgent netAgent, NetConnection netConnection) {
resetNetStatement();
initNetStatement(statement, netAgent, netConnection);
}
private void initNetStatement(com.pivotal.gemfirexd.internal.client.am.Statement statement, NetAgent netAgent, NetConnection netConnection) {
netAgent_ = netAgent;
netConnection_ = netConnection;
statement_ = statement;
statement_.materialStatement_ = this;
}
// Called by abstract Connection.createStatement().newStatement() for jdbc 1 statements
NetStatement(NetAgent netAgent, NetConnection netConnection) throws SqlException {
this(ClientDRDADriver.getFactory().newStatement(netAgent, netConnection),
netAgent,
netConnection);
}
void netReset(NetAgent netAgent, NetConnection netConnection) throws SqlException {
statement_.resetStatement(netAgent, netConnection);
resetNetStatement(statement_, netAgent, netConnection);
}
public void reset_() {
qryrowsetSentOnOpnqry_ = false;
}
// Called by abstract Connection.createStatement().newStatement() for jdbc 2 statements with scroll attributes
NetStatement(NetAgent netAgent, NetConnection netConnection, int type, int concurrency, int holdability) throws SqlException {
this(ClientDRDADriver.getFactory().newStatement(netAgent, netConnection, type, concurrency, holdability, java.sql.Statement.NO_GENERATED_KEYS,
null,null
),
netAgent,
netConnection);
}
void resetNetStatement(NetAgent netAgent, NetConnection netConnection, int type, int concurrency, int holdability) throws SqlException {
statement_.resetStatement(netAgent, netConnection, type, concurrency, holdability, java.sql.Statement.NO_GENERATED_KEYS,
null, null);
resetNetStatement(statement_, netAgent, netConnection);
}
protected void finalize() throws java.lang.Throwable {
super.finalize();
}
// ------------------------abstract box car methods-----------------------------------------------
public void writeSetSpecialRegister_(Section section, java.util.ArrayList sqlsttList) throws SqlException {
netAgent_.statementRequest_.writeSetSpecialRegister(section,sqlsttList);
}
public void readSetSpecialRegister_() throws SqlException {
netAgent_.statementReply_.readSetSpecialRegister(statement_);
}
public void writeExecuteImmediate_(String sql,
Section section) throws SqlException {
netAgent_.statementRequest_.writeExecuteImmediate(this, sql, section);
}
public void readExecuteImmediate_() throws SqlException {
netAgent_.statementReply_.readExecuteImmediate(statement_);
}
// NOTE: NET processing does not require parameters supplied on the "read-side" so parameter sql is ignored.
public void readExecuteImmediateForBatch_(String sql) throws SqlException {
readExecuteImmediate_();
}
public void writePrepareDescribeOutput_(String sql,
Section section,
boolean needStatementUUID) throws SqlException {
netAgent_.statementRequest_.writePrepareDescribeOutput(this, sql, section, needStatementUUID /*GemStone addition*/);
}
public void readPrepareDescribeOutput_() throws SqlException {
netAgent_.statementReply_.readPrepareDescribeOutput(statement_);
}
// GemStone changes BEGIN
public void writeGetStmtUUID(Section section) throws SqlException {
netAgent_.statementRequest_.writeGetStmtUUID(section);
}
public void readStatementID_() throws SqlException {
netAgent_.statementReply_.readStatementID(statement_);
}
// GemStone changes END
public void writeOpenQuery_(Section section,
int fetchSize,
int resultSetType)
throws SqlException {
netAgent_.statementRequest_.writeOpenQuery(this,
section,
fetchSize,
resultSetType);
}
public void readOpenQuery_() throws SqlException {
netAgent_.statementReply_.readOpenQuery(statement_);
}
public void writeExecuteCall_(boolean outputExpected,
String procedureName,
Section section,
int fetchSize,
boolean suppressResultSets,
int resultSetType,
ColumnMetaData parameterMetaData,
Object[] inputs) throws SqlException {
netAgent_.statementRequest_.writeExecuteCall(this,
outputExpected,
procedureName,
section,
fetchSize,
suppressResultSets,
resultSetType,
parameterMetaData,
inputs);
}
public void readExecuteCall_() throws SqlException {
netAgent_.statementReply_.readExecuteCall(statement_);
}
public void writePrepare_(String sql, Section section) throws SqlException {
netAgent_.statementRequest_.writePrepare(this, sql, section);
}
public void readPrepare_() throws SqlException {
netAgent_.statementReply_.readPrepare(statement_);
}
public void markClosedOnServer_() {
}
}