SOCI Logo Get SOCI at SourceForge.net. Fast, secure and Free Open Source software downloads

blob.cpp

Go to the documentation of this file.
00001 //
00002 // Copyright (C) 2004-2006 Maciej Sobczak, Stephen Hutton, David Courtney
00003 // Distributed under the Boost Software License, Version 1.0.
00004 // (See accompanying file LICENSE_1_0.txt or copy at
00005 // http://www.boost.org/LICENSE_1_0.txt)
00006 //
00007 
00008 #define SOCI_ODBC_SOURCE
00009 #include "soci-odbc.h"
00010 
00011 using namespace soci;
00012 using namespace soci::details;
00013 
00014 
00015 odbc_blob_backend::odbc_blob_backend(odbc_session_backend &session)
00016     : session_(session)
00017 {
00018     // ...
00019 }
00020 
00021 odbc_blob_backend::~odbc_blob_backend()
00022 {
00023     // ...
00024 }
00025 
00026 std::size_t odbc_blob_backend::get_len()
00027 {
00028     // ...
00029     return 0;
00030 }
00031 
00032 std::size_t odbc_blob_backend::read(
00033     std::size_t /* offset */, char * /* buf */, std::size_t /* toRead */)
00034 {
00035     // ...
00036     return 0;
00037 }
00038 
00039 std::size_t odbc_blob_backend::write(
00040     std::size_t /* offset */, char const * /* buf */,
00041     std::size_t /* toWrite */)
00042 {
00043     // ...
00044     return 0;
00045 }
00046 
00047 std::size_t odbc_blob_backend::append(
00048     char const * /* buf */, std::size_t /* toWrite */)
00049 {
00050     // ...
00051     return 0;
00052 }
00053 
00054 void odbc_blob_backend::trim(std::size_t /* newLen */)
00055 {
00056     // ...
00057 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
SourceForge Logo

Generated on Sun Oct 3 2010 17:42:16 for EXTRAS-SOCI by Doxygen 1.7.1