/* * The contents of this file are subject to the Initial * Developer's Public License Version 1.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.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl. * * Software distributed under the License is distributed AS IS, * WITHOUT WARRANTY OF ANY KIND, either express or implied. * See the License for the specific language governing rights * and limitations under the License. * * The Original Code was created by Adriano dos Santos Fernandes * for the Firebird Open Source RDBMS project. * * Copyright (c) 2008 Adriano dos Santos Fernandes * and all contributors signed below. * * All Rights Reserved. * Contributor(s): ______________________________________. */ #include "../jrd/ResultSet.h" #include "../jrd/PreparedStatement.h" #include "../jrd/align.h" #include "../jrd/jrd.h" #include "../jrd/req.h" #include "../dsql/dsql.h" #include "../dsql/sqlda_pub.h" #include "../dsql/dsql_proto.h" #include "../jrd/mov_proto.h" using namespace Firebird; namespace Jrd { ResultSet::ResultSet(thread_db* tdbb, PreparedStatement* aStmt, jrd_tra* aTransaction) : stmt(aStmt), transaction(aTransaction), firstFetchDone(false) { stmt->open(tdbb, transaction); stmt->resultSet = this; } ResultSet::~ResultSet() { if (!stmt) return; thread_db* tdbb = JRD_get_thread_data(); stmt->resultSet = NULL; if (stmt->request->getStatement()->getType() != DsqlCompiledStatement::TYPE_EXEC_PROCEDURE) DSQL_free_statement(tdbb, stmt->request, DSQL_close); } bool ResultSet::fetch(thread_db* tdbb) { if (stmt->request->getStatement()->getType() == DsqlCompiledStatement::TYPE_EXEC_PROCEDURE && firstFetchDone) { return false; } memset(stmt->outMessage.begin(), 0, stmt->outMessage.getCount()); if (!stmt->request->fetch(tdbb, stmt->outMessage.begin())) return false; if (stmt->builder) stmt->builder->moveFromResultSet(tdbb, this); firstFetchDone = true; return true; } bool ResultSet::isNull(unsigned param) const { fb_assert(param > 0); const dsc* desc = &stmt->outValues[(param - 1) * 2 + 1]; fb_assert(desc->dsc_dtype == dtype_short); return *reinterpret_cast(desc->dsc_address) != 0; } dsc& ResultSet::getDesc(unsigned param) { fb_assert(param > 0); return stmt->outValues[(param - 1) * 2]; } Firebird::string ResultSet::getString(thread_db* tdbb, unsigned param) { fb_assert(param > 0); jrd_req* jrdRequest = stmt->getRequest()->req_request; // Setup tdbb info necessary for blobs. AutoSetRestore2 autoRequest( tdbb, &thread_db::getRequest, &thread_db::setRequest, jrdRequest); AutoSetRestore autoRequestTrans(&jrdRequest->req_transaction, tdbb->getTransaction()); return MOV_make_string2(tdbb, &getDesc(param), CS_NONE); } Firebird::MetaName ResultSet::getMetaName(thread_db* tdbb, unsigned param) { fb_assert(param > 0); jrd_req* jrdRequest = stmt->getRequest()->req_request; // Setup tdbb info necessary for blobs. AutoSetRestore2 autoRequest( tdbb, &thread_db::getRequest, &thread_db::setRequest, jrdRequest); AutoSetRestore autoRequestTrans(&jrdRequest->req_transaction, tdbb->getTransaction()); return MOV_make_string2(tdbb, &getDesc(param), CS_METADATA); } void ResultSet::moveDesc(thread_db* tdbb, unsigned param, dsc& desc) { fb_assert(param > 0); jrd_req* jrdRequest = stmt->getRequest()->req_request; // Setup tdbb info necessary for blobs. AutoSetRestore2 autoRequest( tdbb, &thread_db::getRequest, &thread_db::setRequest, jrdRequest); AutoSetRestore autoRequestTrans(&jrdRequest->req_transaction, tdbb->getTransaction()); MOV_move(tdbb, &getDesc(param), &desc); } } // namespace