MySQL fixes/additions/improvements
- fixed GH #187: MySQL: allow access to the underlying connection handle - added GH #186: MySQL: support for MYSQL_SECURE_AUTH - fixed GH #174: MySQL: 4GB allocated when reading any largetext or largeblob field
This commit is contained in:
Родитель
f6d9e926d5
Коммит
b95ec4fe53
|
@ -80,6 +80,9 @@ Release 1.5.2 (2013-06-xx)
|
|||
- limited allowed types for JSON::Query to Object, Array, Object::Ptr,
|
||||
Array::Ptr and empty
|
||||
- fixed GH #175: HTMLForm does not read URL parameters on POST or PUT
|
||||
- added GH #187: MySQL: allow access to the underlying connection handle
|
||||
- added GH #186: MySQL: support for MYSQL_SECURE_AUTH
|
||||
- fixed GH #174: MySQL: 4GB allocated when reading any largetext or largeblob field
|
||||
|
||||
|
||||
Release 1.5.1 (2013-01-11)
|
||||
|
|
|
@ -14,7 +14,7 @@ SYSFLAGS += -DTHREADSAFE -DNO_TCL
|
|||
|
||||
objects = Binder Extractor SessionImpl Connector \
|
||||
MySQLStatementImpl ResultMetadata MySQLException \
|
||||
SessionHandle StatementExecutor
|
||||
SessionHandle StatementExecutor Utility
|
||||
|
||||
target = PocoDataMySQL
|
||||
target_version = $(LIBVERSION)
|
||||
|
|
|
@ -403,6 +403,8 @@
|
|||
RelativePath=".\src\SessionImpl.cpp"/>
|
||||
<File
|
||||
RelativePath=".\src\StatementExecutor.cpp"/>
|
||||
<File
|
||||
RelativePath=".\src\Utility.cpp"/>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
|
@ -428,6 +430,8 @@
|
|||
RelativePath=".\include\Poco\Data\MySQL\SessionImpl.h"/>
|
||||
<File
|
||||
RelativePath=".\include\Poco\Data\MySQL\StatementExecutor.h"/>
|
||||
<File
|
||||
RelativePath=".\include\Poco\Data\MySQL\Utility.h"/>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
|
|
|
@ -402,6 +402,8 @@
|
|||
RelativePath=".\src\SessionImpl.cpp"/>
|
||||
<File
|
||||
RelativePath=".\src\StatementExecutor.cpp"/>
|
||||
<File
|
||||
RelativePath=".\src\Utility.cpp"/>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
|
@ -427,6 +429,8 @@
|
|||
RelativePath=".\include\Poco\Data\MySQL\SessionImpl.h"/>
|
||||
<File
|
||||
RelativePath=".\include\Poco\Data\MySQL\StatementExecutor.h"/>
|
||||
<File
|
||||
RelativePath=".\include\Poco\Data\MySQL\Utility.h"/>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
|
|
|
@ -276,6 +276,7 @@
|
|||
<ClCompile Include="src\SessionHandle.cpp"/>
|
||||
<ClCompile Include="src\SessionImpl.cpp"/>
|
||||
<ClCompile Include="src\StatementExecutor.cpp"/>
|
||||
<ClCompile Include="src\Utility.cpp"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Binder.h"/>
|
||||
|
@ -288,6 +289,7 @@
|
|||
<ClInclude Include="include\Poco\Data\MySQL\SessionHandle.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\SessionImpl.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\StatementExecutor.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Utility.h"/>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
|
||||
<ImportGroup Label="ExtensionTargets"/>
|
||||
|
|
|
@ -42,6 +42,9 @@
|
|||
<ClCompile Include="src\StatementExecutor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\Utility.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Binder.h">
|
||||
|
@ -74,5 +77,8 @@
|
|||
<ClInclude Include="include\Poco\Data\MySQL\StatementExecutor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Utility.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -286,6 +286,7 @@
|
|||
<ClCompile Include="src\SessionHandle.cpp" />
|
||||
<ClCompile Include="src\SessionImpl.cpp" />
|
||||
<ClCompile Include="src\StatementExecutor.cpp" />
|
||||
<ClCompile Include="src\Utility.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Binder.h" />
|
||||
|
@ -298,6 +299,7 @@
|
|||
<ClInclude Include="include\Poco\Data\MySQL\SessionHandle.h" />
|
||||
<ClInclude Include="include\Poco\Data\MySQL\SessionImpl.h" />
|
||||
<ClInclude Include="include\Poco\Data\MySQL\StatementExecutor.h" />
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Utility.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets" />
|
||||
|
|
|
@ -42,6 +42,9 @@
|
|||
<ClCompile Include="src\StatementExecutor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\Utility.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Binder.h">
|
||||
|
@ -74,5 +77,8 @@
|
|||
<ClInclude Include="include\Poco\Data\MySQL\StatementExecutor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Utility.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -382,6 +382,8 @@
|
|||
RelativePath=".\src\SessionImpl.cpp"/>
|
||||
<File
|
||||
RelativePath=".\src\StatementExecutor.cpp"/>
|
||||
<File
|
||||
RelativePath=".\src\Utility.cpp"/>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
|
@ -407,6 +409,8 @@
|
|||
RelativePath=".\include\Poco\Data\MySQL\SessionImpl.h"/>
|
||||
<File
|
||||
RelativePath=".\include\Poco\Data\MySQL\StatementExecutor.h"/>
|
||||
<File
|
||||
RelativePath=".\include\Poco\Data\MySQL\Utility.h"/>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
|
|
|
@ -274,6 +274,7 @@
|
|||
<ClCompile Include="src\SessionHandle.cpp"/>
|
||||
<ClCompile Include="src\SessionImpl.cpp"/>
|
||||
<ClCompile Include="src\StatementExecutor.cpp"/>
|
||||
<ClCompile Include="src\Utility.cpp"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Binder.h"/>
|
||||
|
@ -286,6 +287,7 @@
|
|||
<ClInclude Include="include\Poco\Data\MySQL\SessionHandle.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\SessionImpl.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\StatementExecutor.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Utility.h"/>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
|
||||
<ImportGroup Label="ExtensionTargets"/>
|
||||
|
|
|
@ -42,6 +42,9 @@
|
|||
<ClCompile Include="src\StatementExecutor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\Utility.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Binder.h">
|
||||
|
@ -74,5 +77,8 @@
|
|||
<ClInclude Include="include\Poco\Data\MySQL\StatementExecutor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Utility.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -280,6 +280,7 @@
|
|||
<ClCompile Include="src\SessionHandle.cpp"/>
|
||||
<ClCompile Include="src\SessionImpl.cpp"/>
|
||||
<ClCompile Include="src\StatementExecutor.cpp"/>
|
||||
<ClCompile Include="src\Utility.cpp"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Binder.h"/>
|
||||
|
@ -292,6 +293,7 @@
|
|||
<ClInclude Include="include\Poco\Data\MySQL\SessionHandle.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\SessionImpl.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\StatementExecutor.h"/>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Utility.h"/>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
|
||||
<ImportGroup Label="ExtensionTargets"/>
|
||||
|
|
|
@ -42,6 +42,9 @@
|
|||
<ClCompile Include="src\StatementExecutor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\Utility.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Binder.h">
|
||||
|
@ -74,5 +77,8 @@
|
|||
<ClInclude Include="include\Poco\Data\MySQL\StatementExecutor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="include\Poco\Data\MySQL\Utility.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -97,9 +97,9 @@ private:
|
|||
StatementExecutor& operator=(const StatementExecutor&);
|
||||
|
||||
private:
|
||||
MYSQL* _pSessionHandle;
|
||||
MYSQL* _pSessionHandle;
|
||||
MYSQL_STMT* _pHandle;
|
||||
int _state;
|
||||
int _state;
|
||||
std::size_t _affectedRowCount;
|
||||
std::string _query;
|
||||
};
|
||||
|
|
|
@ -0,0 +1,101 @@
|
|||
//
|
||||
// Utility.h
|
||||
//
|
||||
// $Id: //poco/Main/Data/MySQL/include/Poco/Data/MySQL/Utility.h#2 $
|
||||
//
|
||||
// Library: MySQL
|
||||
// Package: MySQL
|
||||
// Module: Utility
|
||||
//
|
||||
// Definition of Utility.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
|
||||
|
||||
#ifndef MySQL_Utility_INCLUDED
|
||||
#define MySQL_Utility_INCLUDED
|
||||
|
||||
|
||||
#include "Poco/Data/MySQL/MySQL.h"
|
||||
#include "Poco/Data/Session.h"
|
||||
|
||||
|
||||
struct st_mysql;
|
||||
typedef struct st_mysql MYSQL;
|
||||
|
||||
|
||||
namespace Poco {
|
||||
namespace Data {
|
||||
namespace MySQL {
|
||||
|
||||
|
||||
class MySQL_API Utility
|
||||
/// Various utility functions for MySQL.
|
||||
{
|
||||
public:
|
||||
|
||||
static std::string serverInfo(MYSQL* pHandle);
|
||||
/// Returns server info.
|
||||
|
||||
static std::string serverInfo(Poco::Data::Session& session);
|
||||
/// Returns server info.
|
||||
|
||||
static unsigned long serverVersion(MYSQL* pHandle);
|
||||
/// Returns server version.
|
||||
|
||||
static unsigned long serverVersion(Poco::Data::Session& session);
|
||||
/// Returns server version.
|
||||
|
||||
static std::string hostInfo(MYSQL* pHandle);
|
||||
/// Returns host info.
|
||||
|
||||
static std::string hostInfo(Poco::Data::Session& session);
|
||||
/// Returns host info.
|
||||
|
||||
static bool hasMicrosecond();
|
||||
/// Rturns true if microseconds are suported.
|
||||
|
||||
static MYSQL* handle(Poco::Data::Session& session);
|
||||
/// Returns native MySQL handle for the session.
|
||||
};
|
||||
|
||||
|
||||
//
|
||||
// inlines
|
||||
//
|
||||
|
||||
|
||||
inline MYSQL* Utility::handle(Session& session)
|
||||
{
|
||||
return Poco::AnyCast<MYSQL*>(session.getProperty("handle"));
|
||||
}
|
||||
|
||||
|
||||
} } } // namespace Poco::Data::MySQL
|
||||
|
||||
|
||||
#endif // MySQL_Utility_INCLUDED
|
|
@ -189,11 +189,15 @@ void ResultMetadata::init(MYSQL_STMT* stmt)
|
|||
|
||||
{for (std::size_t i = 0; i < count; i++)
|
||||
{
|
||||
unsigned long size = fieldSize(fields[i]);
|
||||
unsigned long zero = 0;
|
||||
if (size == ~zero) size = 0;
|
||||
|
||||
_columns.push_back(MetaColumn(
|
||||
i, // position
|
||||
fields[i].name, // name
|
||||
fieldType(fields[i]), // type
|
||||
fieldSize(fields[i]), // length
|
||||
size, // length
|
||||
0, // TODO: precision
|
||||
!IS_NOT_NULL(fields[i].flags) // nullable
|
||||
));
|
||||
|
@ -208,19 +212,19 @@ void ResultMetadata::init(MYSQL_STMT* stmt)
|
|||
|
||||
std::size_t offset = 0;
|
||||
|
||||
{for (std::size_t i = 0; i < count; i++)
|
||||
for (std::size_t i = 0; i < count; i++)
|
||||
{
|
||||
std::memset(&_row[i], 0, sizeof(MYSQL_BIND));
|
||||
|
||||
unsigned int len = static_cast<unsigned int>(_columns[i].length());
|
||||
_row[i].buffer_type = fields[i].type;
|
||||
_row[i].buffer_length = static_cast<unsigned int>(_columns[i].length());
|
||||
_row[i].buffer = &_buffer[0] + offset;
|
||||
_row[i].buffer_length = len;
|
||||
_row[i].buffer = (len > 0) ? (&_buffer[0] + offset) : 0;
|
||||
_row[i].length = &_lengths[i];
|
||||
_row[i].is_null = &_isNull[i];
|
||||
_row[i].is_unsigned = (fields[i].flags & UNSIGNED_FLAG) > 0;
|
||||
|
||||
offset += _row[i].buffer_length;
|
||||
}}
|
||||
}
|
||||
}
|
||||
|
||||
std::size_t ResultMetadata::columnsReturned() const
|
||||
|
|
|
@ -95,8 +95,13 @@ void SessionHandle::options(mysql_option opt, unsigned int i)
|
|||
|
||||
void SessionHandle::connect(const char* host, const char* user, const char* password, const char* db, unsigned int port)
|
||||
{
|
||||
#ifdef HAVE_MYSQL_REAL_CONNECT
|
||||
if (!mysql_real_connect(_pHandle, host, user, password, db, port, 0, 0))
|
||||
throw ConnectionFailedException(mysql_error(_pHandle));
|
||||
#else
|
||||
if (!mysql_connect(_pHandle, host, user, password))
|
||||
throw ConnectionFailedException(mysql_error(_pHandle))
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -72,10 +72,8 @@ SessionImpl::SessionImpl(const std::string& connectionString, std::size_t loginT
|
|||
_connected(false),
|
||||
_inTransaction(false)
|
||||
{
|
||||
addProperty("insertId",
|
||||
&SessionImpl::setInsertId,
|
||||
&SessionImpl::getInsertId);
|
||||
|
||||
addProperty("insertId", &SessionImpl::setInsertId, &SessionImpl::getInsertId);
|
||||
setProperty("handle", static_cast<MYSQL*>(_handle));
|
||||
open();
|
||||
setConnectionTimeout(CONNECTION_TIMEOUT_DEFAULT);
|
||||
}
|
||||
|
@ -109,6 +107,7 @@ void SessionImpl::open(const std::string& connect)
|
|||
options["db"] = "";
|
||||
options["compress"] = "";
|
||||
options["auto-reconnect"] = "";
|
||||
options["secure-auth"] = "";
|
||||
|
||||
const std::string& connString = connectionString();
|
||||
for (std::string::const_iterator start = connString.begin();;)
|
||||
|
@ -126,7 +125,7 @@ void SessionImpl::open(const std::string& connect)
|
|||
start = finish + 1;
|
||||
}
|
||||
|
||||
if (options["user"] == "")
|
||||
if (options["user"].empty())
|
||||
throw MySQLException("create session: specify user name");
|
||||
|
||||
const char * db = NULL;
|
||||
|
@ -141,16 +140,23 @@ void SessionImpl::open(const std::string& connect)
|
|||
_handle.options(MYSQL_OPT_COMPRESS);
|
||||
else if (options["compress"] == "false")
|
||||
;
|
||||
else if (options["compress"] != "")
|
||||
else if (!options["compress"].empty())
|
||||
throw MySQLException("create session: specify correct compress option (true or false) or skip it");
|
||||
|
||||
if (options["auto-reconnect"] == "true")
|
||||
_handle.options(MYSQL_OPT_RECONNECT, true);
|
||||
else if (options["auto-reconnect"] == "false")
|
||||
_handle.options(MYSQL_OPT_RECONNECT, false);
|
||||
else if (options["auto-reconnect"] != "")
|
||||
else if (!options["auto-reconnect"].empty())
|
||||
throw MySQLException("create session: specify correct auto-reconnect option (true or false) or skip it");
|
||||
|
||||
if (options["secure-auth"] == "true")
|
||||
_handle.options(MYSQL_SECURE_AUTH, true);
|
||||
else if (options["secure-auth"] == "false")
|
||||
_handle.options(MYSQL_SECURE_AUTH, false);
|
||||
else if (!options["secure-auth"].empty())
|
||||
throw MySQLException("create session: specify correct secure-auth option (true or false) or skip it");
|
||||
|
||||
// Real connect
|
||||
_handle.connect(options["host"].c_str(),
|
||||
options["user"].c_str(),
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
#include <mysql.h>
|
||||
#include "Poco/Data/MySQL/StatementExecutor.h"
|
||||
#include <sstream>
|
||||
#include "Poco/Format.h"
|
||||
|
||||
|
||||
namespace Poco {
|
||||
|
@ -120,7 +120,7 @@ void StatementExecutor::execute()
|
|||
|
||||
my_ulonglong affectedRows = mysql_affected_rows(_pSessionHandle);
|
||||
if (affectedRows != ((my_ulonglong) - 1))
|
||||
_affectedRowCount = affectedRows; //Was really a DELETE, UPDATE or INSERT statement
|
||||
_affectedRowCount = static_cast<std::size_t>(affectedRows); //Was really a DELETE, UPDATE or INSERT statement
|
||||
}
|
||||
|
||||
|
||||
|
@ -131,10 +131,11 @@ bool StatementExecutor::fetch()
|
|||
|
||||
int res = mysql_stmt_fetch(_pHandle);
|
||||
|
||||
if ((res != 0) && (res != MYSQL_NO_DATA))
|
||||
// we have specified zero buffers for BLOBs, so DATA_TRUNCATED is normal in this case
|
||||
if ((res != 0) && (res != MYSQL_NO_DATA) && (res != MYSQL_DATA_TRUNCATED))
|
||||
throw StatementException("mysql_stmt_fetch error", _pHandle, _query);
|
||||
|
||||
return (res == 0);
|
||||
return (res == 0) || (res == MYSQL_DATA_TRUNCATED);
|
||||
}
|
||||
|
||||
|
||||
|
@ -146,11 +147,7 @@ bool StatementExecutor::fetchColumn(std::size_t n, MYSQL_BIND *bind)
|
|||
int res = mysql_stmt_fetch_column(_pHandle, bind, static_cast<unsigned int>(n), 0);
|
||||
|
||||
if ((res != 0) && (res != MYSQL_NO_DATA))
|
||||
{
|
||||
std::ostringstream msg;
|
||||
msg << "mysql_stmt_fetch_column(" << n << ") error";
|
||||
throw StatementException(msg.str(), _pHandle, _query);
|
||||
}
|
||||
throw StatementException(Poco::format("mysql_stmt_fetch_column(%z) error", n), _pHandle, _query);
|
||||
|
||||
return (res == 0);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,88 @@
|
|||
//
|
||||
// Utility.cpp
|
||||
//
|
||||
// $Id: //poco/Main/Data/MySQL/src/Utility.cpp#5 $
|
||||
//
|
||||
// Library: MySQL
|
||||
// Package: MySQL
|
||||
// Module: Utility
|
||||
//
|
||||
// Implementation of Utility
|
||||
//
|
||||
// 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/MySQL/Utility.h"
|
||||
#include <mysql.h>
|
||||
|
||||
|
||||
namespace Poco {
|
||||
namespace Data {
|
||||
namespace MySQL {
|
||||
|
||||
|
||||
std::string Utility::serverInfo(MYSQL* pHandle)
|
||||
{
|
||||
std::string info(mysql_get_server_info(pHandle));
|
||||
return info;
|
||||
}
|
||||
|
||||
|
||||
std::string Utility::serverInfo(Session& session)
|
||||
{
|
||||
std::string info(mysql_get_server_info(handle(session)));
|
||||
return info;
|
||||
}
|
||||
|
||||
|
||||
unsigned long Utility::serverVersion(MYSQL* pHandle)
|
||||
{
|
||||
return mysql_get_server_version(pHandle);
|
||||
}
|
||||
|
||||
|
||||
unsigned long Utility::serverVersion(Session& session)
|
||||
{
|
||||
return mysql_get_server_version(handle(session));
|
||||
}
|
||||
|
||||
|
||||
std::string Utility::hostInfo(MYSQL* pHandle)
|
||||
{
|
||||
std::string info(mysql_get_host_info(pHandle));
|
||||
return info;
|
||||
}
|
||||
|
||||
|
||||
std::string Utility::hostInfo(Session& session)
|
||||
{
|
||||
std::string info(mysql_get_host_info(handle(session)));
|
||||
return info;
|
||||
}
|
||||
|
||||
|
||||
} } } // namespace Poco::Data::MySQL
|
|
@ -41,6 +41,7 @@
|
|||
#include "Poco/Data/LOB.h"
|
||||
#include "Poco/Data/StatementImpl.h"
|
||||
#include "Poco/Data/MySQL/Connector.h"
|
||||
#include "Poco/Data/MySQL/Utility.h"
|
||||
#include "Poco/Data/MySQL/MySQLException.h"
|
||||
#include "Poco/Nullable.h"
|
||||
#include "Poco/Data/DataException.h"
|
||||
|
@ -49,6 +50,7 @@
|
|||
using namespace Poco::Data;
|
||||
using namespace Poco::Data::Keywords;
|
||||
using Poco::Data::MySQL::ConnectionException;
|
||||
using Poco::Data::MySQL::Utility;
|
||||
using Poco::Data::MySQL::StatementException;
|
||||
using Poco::format;
|
||||
using Poco::NotFoundException;
|
||||
|
@ -64,7 +66,7 @@ Poco::SharedPtr<SQLExecutor> MySQLTest::_pExecutor = 0;
|
|||
// Parameters for barebone-test
|
||||
#define MYSQL_USER "root"
|
||||
#define MYSQL_PWD "poco"
|
||||
#define MYSQL_HOST "localhost"
|
||||
#define MYSQL_HOST "192.168.1.25"//"localhost"
|
||||
#define MYSQL_PORT 3306
|
||||
#define MYSQL_DB "test"
|
||||
|
||||
|
@ -74,7 +76,9 @@ std::string MySQLTest::_dbConnString = "host=" MYSQL_HOST
|
|||
";user=" MYSQL_USER
|
||||
";password=" MYSQL_PWD
|
||||
";db=" MYSQL_DB
|
||||
";compress=true;auto-reconnect=true";
|
||||
";compress=true"
|
||||
";auto-reconnect=true"
|
||||
";secure-auth=true";
|
||||
|
||||
|
||||
MySQLTest::MySQLTest(const std::string& name):
|
||||
|
@ -90,6 +94,15 @@ MySQLTest::~MySQLTest()
|
|||
}
|
||||
|
||||
|
||||
void MySQLTest::dbInfo(Session& session)
|
||||
{
|
||||
|
||||
std::cout << "Server Info: " << Utility::serverInfo(Utility::handle(session)) << std::endl;
|
||||
std::cout << "Server Version: " << Utility::serverVersion(Utility::handle(session)) << std::endl;
|
||||
std::cout << "Host Info: " << Utility::hostInfo(Utility::handle(session)) << std::endl;
|
||||
}
|
||||
|
||||
|
||||
void MySQLTest::testConnectNoDB()
|
||||
{
|
||||
std::string dbConnString = "host=" MYSQL_HOST
|
||||
|
@ -100,7 +113,9 @@ void MySQLTest::testConnectNoDB()
|
|||
try
|
||||
{
|
||||
Session session(MySQL::Connector::KEY, dbConnString);
|
||||
std::cout << "Connected to [" << "MySQL" << "] without database. Disconnecting ..." << std::endl;
|
||||
std::cout << "Connected to [" << "MySQL" << "] without database." << std::endl;
|
||||
dbInfo(session);
|
||||
std::cout << "Disconnecting ..." << std::endl;
|
||||
session.close();
|
||||
std::cout << "Disconnected." << std::endl;
|
||||
}
|
||||
|
@ -434,6 +449,9 @@ void MySQLTest::testBLOB()
|
|||
{
|
||||
if (!_pSession) fail ("Test not available.");
|
||||
|
||||
recreatePersonBLOBTable();
|
||||
_pExecutor->blob();
|
||||
|
||||
const std::size_t maxFldSize = 65534;
|
||||
_pSession->setProperty("maxFieldSize", Poco::Any(maxFldSize-1));
|
||||
recreatePersonBLOBTable();
|
||||
|
@ -852,6 +870,7 @@ CppUnit::Test* MySQLTest::suite()
|
|||
}
|
||||
|
||||
std::cout << "*** Connected to [" << "MySQL" << "] test database." << std::endl;
|
||||
dbInfo(*_pSession);
|
||||
|
||||
_pExecutor = new SQLExecutor("MySQL SQL Executor", _pSession);
|
||||
|
||||
|
|
|
@ -142,6 +142,8 @@ private:
|
|||
void recreateNullableIntTable();
|
||||
void recreateNullableStringTable();
|
||||
|
||||
static void dbInfo(Poco::Data::Session& session);
|
||||
|
||||
static std::string _dbConnString;
|
||||
static Poco::SharedPtr<Poco::Data::Session> _pSession;
|
||||
static Poco::SharedPtr<SQLExecutor> _pExecutor;
|
||||
|
|
|
@ -53,6 +53,7 @@
|
|||
|
||||
#include <mysql.h>
|
||||
#include <iostream>
|
||||
#include <limits>
|
||||
|
||||
|
||||
using namespace Poco::Data;
|
||||
|
@ -500,8 +501,8 @@ void SQLExecutor::insertSingleBulk()
|
|||
void SQLExecutor::unsignedInts()
|
||||
{
|
||||
std::string funct = "unsignedInts()";
|
||||
unsigned int data = UINT32_MAX;
|
||||
unsigned int ret = 0;
|
||||
Poco::UInt32 data = std::numeric_limits<Poco::UInt32>::max();
|
||||
Poco::UInt32 ret = 0;
|
||||
|
||||
try { *_pSession << "INSERT INTO Strings VALUES (?)", use(data), now; }
|
||||
catch(ConnectionException& ce){ std::cout << ce.displayText() << std::endl; fail (funct); }
|
||||
|
@ -1362,7 +1363,7 @@ void SQLExecutor::time()
|
|||
}
|
||||
|
||||
|
||||
void SQLExecutor::blob(int bigSize)
|
||||
void SQLExecutor::blob(unsigned int bigSize)
|
||||
{
|
||||
std::string funct = "blob()";
|
||||
std::string lastName("lastname");
|
||||
|
|
|
@ -100,7 +100,7 @@ public:
|
|||
void singleSelect();
|
||||
void emptyDB();
|
||||
|
||||
void blob(int bigSize = 1024);
|
||||
void blob(unsigned int bigSize = ~0);
|
||||
void blobStmt();
|
||||
void dateTime();
|
||||
void date();
|
||||
|
|
Загрузка…
Ссылка в новой задаче