⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 preparation.cpp.svn-base

📁 很好用的网络封装库,不熟悉网络编程的人也可以使用。使用风格良好的标准c++编写。
💻 SVN-BASE
字号:
//
// Preparation.cpp
//
// $Id: //poco/1.3/Data/ODBC/src/Preparation.cpp#2 $
//
// Library: Data
// Package: DataCore
// Module:  Preparation
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompanying documentation covered by
// this license (the "Software") to use, reproduce, display, distribute,
// execute, and transmit the Software, and to prepare derivative works of the
// Software, and to permit third-parties to whom the Software is furnished to
// do so, all subject to the following:
// 
// The copyright notices in the Software and this entire statement, including
// the above license grant, this restriction and the following disclaimer,
// must be included in all copies of the Software, in whole or in part, and
// all derivative works of the Software, unless such copies or derivative
// works are solely in the form of machine-executable object code generated by
// a source language processor.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//


#include "Poco/Data/ODBC/Preparation.h"
#include "Poco/Data/ODBC/ODBCColumn.h"


namespace Poco {
namespace Data {
namespace ODBC {


Preparation::Preparation(const StatementHandle& rStmt, 
	const std::string& statement, 
	std::size_t maxFieldSize,
	DataExtraction dataExtraction): 
	_rStmt(rStmt),
	_maxFieldSize(maxFieldSize),
	_dataExtraction(dataExtraction)
{
	POCO_SQLCHAR* pStr = (POCO_SQLCHAR*) statement.c_str();
	if (Utility::isError(SQLPrepare(_rStmt, pStr, (SQLINTEGER) statement.length())))
		throw StatementException(_rStmt);

	SQLSMALLINT nCol;
	if (Utility::isError(SQLNumResultCols(_rStmt, &nCol)))
		throw StatementException(_rStmt);

	if (nCol)
	{
		_pValues.resize(nCol, 0);
		_pLengths.resize(nCol, 0);
	}
}


Preparation::~Preparation()
{
	std::vector<SQLLEN*>::iterator itLen = _pLengths.begin();
	std::vector<SQLLEN*>::iterator itLenEnd = _pLengths.end();
	for (; itLen != itLenEnd; ++itLen) delete *itLen;

	std::vector<Poco::Any*>::iterator itVal = _pValues.begin();
	std::vector<Poco::Any*>::iterator itValEnd = _pValues.end();
	for (; itVal != itValEnd; ++itVal) delete *itVal;

	std::vector<char*>::iterator itChr = _charPtrs.begin();
	std::vector<char*>::iterator itChrEnd = _charPtrs.end();
	for (; itChr != itChrEnd; ++itChr)	delete [] *itChr;
}


Poco::Any& Preparation::operator [] (std::size_t pos)
{
	poco_assert (pos >= 0 && pos < _pValues.size());
	
	return *_pValues[pos];
}


void Preparation::prepareRaw(std::size_t pos, SQLSMALLINT valueType, std::size_t size)
{
	poco_assert (DE_BOUND == _dataExtraction);
	poco_assert (pos >= 0 && pos < _pValues.size());

	char* pChr = new char[size]; 
	_charPtrs.push_back(pChr);
	poco_assert_dbg (pChr);
	memset(pChr, 0, size);

	_pValues[pos] = new Any(pChr);
	_pLengths[pos] = new SQLLEN;
	*_pLengths[pos] = (SQLLEN) size;

	if (Utility::isError(SQLBindCol(_rStmt, 
		(SQLUSMALLINT) pos + 1, 
		valueType, 
		(SQLPOINTER) pChr, 
		(SQLINTEGER) size, 
		_pLengths[pos])))
	{
		throw StatementException(_rStmt, "SQLBindCol()");
	}
}


void Preparation::prepare(std::size_t pos, const Poco::Any&)
{
	ODBCColumn col(_rStmt, pos);

	switch (col.type())
	{
		case MetaColumn::FDT_INT8:
			return preparePOD<Poco::Int8>(pos, SQL_C_STINYINT); 

		case MetaColumn::FDT_UINT8:
			return preparePOD<Poco::UInt8>(pos, SQL_C_UTINYINT);

		case MetaColumn::FDT_INT16:
			return preparePOD<Poco::Int16>(pos, SQL_C_SSHORT);

		case MetaColumn::FDT_UINT16:
			return preparePOD<Poco::UInt16>(pos, SQL_C_USHORT);

		case MetaColumn::FDT_INT32:
			return preparePOD<Poco::Int32>(pos, SQL_C_SLONG);

		case MetaColumn::FDT_UINT32:
			return preparePOD<Poco::UInt32>(pos, SQL_C_ULONG);

		case MetaColumn::FDT_INT64:
			return preparePOD<Poco::Int64>(pos, SQL_C_SBIGINT);

		case MetaColumn::FDT_UINT64:
			return preparePOD<Poco::UInt64>(pos, SQL_C_UBIGINT);

		case MetaColumn::FDT_BOOL:
			return preparePOD<bool>(pos, Utility::boolDataType);

		case MetaColumn::FDT_FLOAT:
			return preparePOD<float>(pos, SQL_C_FLOAT);

		case MetaColumn::FDT_DOUBLE:
			return preparePOD<float>(pos, SQL_C_DOUBLE);

		case MetaColumn::FDT_STRING:
			return prepareRaw(pos, SQL_C_CHAR, maxDataSize(pos));

		case MetaColumn::FDT_BLOB:
			return prepareRaw(pos, SQL_C_BINARY, maxDataSize(pos));

		default: 
			throw DataFormatException("Unsupported data type.");
	}

	prepareRaw(pos, SQL_C_BINARY, maxDataSize(pos));
}


std::size_t Preparation::maxDataSize(std::size_t pos) const
{
	poco_assert (pos >= 0 && pos < _pValues.size());

	std::size_t sz = 0;
	std::size_t maxsz = getMaxFieldSize();

	try 
	{
		ODBCColumn col(_rStmt, pos);
		sz = col.length();
		if (ODBCColumn::FDT_STRING == col.type()) ++sz;
	}
	catch (StatementException&) 
	{
	}
	if (!sz || sz > maxsz) sz = maxsz;
	return sz;
}


} } } // namespace Poco::Data::ODBC

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -