1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
CVSNT Generic API
Copyright (C) 2004 Tony Hoyle and March-Hare Software Ltd
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winsock2.h>
#define vsnprintf _vsnprintf
#define snprintf _snprintf
#endif
#include <config.h>
#include "../lib/api_system.h"
#ifdef HAVE_SQLITE3_H
#include <sqlite3.h>
#else
// else what?
#endif
#include <string>
#include "../cvs_string.h"
#include "../ServerIO.h"
#include "SQLiteRecordset.h"
CSQLiteField::CSQLiteField()
{
}
CSQLiteField::~CSQLiteField()
{
}
CSQLiteField::operator int()
{
return sqlite3_column_int(pStmt,field);
}
CSQLiteField::operator long()
{
return (long)sqlite3_column_int64(pStmt,field);
}
CSQLiteField::operator unsigned()
{
return (unsigned)sqlite3_column_int64(pStmt,field);
}
CSQLiteField::operator unsigned long()
{
return (unsigned long)sqlite3_column_int64(pStmt,field);
}
#if defined(_WIN32) || defined(_WIN64)
CSQLiteField::operator __int64()
{
return (__int64)sqlite3_column_int64(pStmt,field);
}
#else
CSQLiteField::operator long long()
{
return (long long)sqlite3_column_int64(pStmt,field);
}
#endif
CSQLiteField::operator const char *()
{
return (const char *)sqlite3_column_text(pStmt,field);
}
CSQLiteField::operator const wchar_t *()
{
return (const wchar_t *)sqlite3_column_text16(pStmt,field);
}
/**********************************************************************/
CSQLiteRecordset::CSQLiteRecordset()
{
m_pStmt = NULL;
}
CSQLiteRecordset::~CSQLiteRecordset()
{
Close();
}
bool CSQLiteRecordset::Init(sqlite3 *pDb, sqlite3_stmt *pStmt)
{
m_pStmt = pStmt;
m_bEof = false;
m_num_fields = sqlite3_column_count(m_pStmt);
m_sqlfields.resize(m_num_fields);
for(int n=0; n<m_num_fields; n++)
{
m_sqlfields[n].field = n;
m_sqlfields[n].pStmt = m_pStmt;
m_sqlfields[n].name = sqlite3_column_name(m_pStmt,n);
m_sqlfields[n].type = sqlite3_column_type(m_pStmt,n);
}
Next();
return true;
}
bool CSQLiteRecordset::Close()
{
if(m_pStmt)
sqlite3_finalize(m_pStmt);
m_pStmt = NULL;
m_bEof = true;
return true;
}
bool CSQLiteRecordset::Closed() const
{
if(m_pStmt)
return false;
return true;
}
bool CSQLiteRecordset::Eof() const
{
return m_bEof;
}
bool CSQLiteRecordset::Next()
{
int res = sqlite3_step(m_pStmt);
switch(res)
{
case SQLITE_DONE:
m_bEof = true;
break;
case SQLITE_ROW:
case SQLITE_OK:
break;
default:
// Error
m_bEof = true;
CServerIo::trace(3,"sqlite3_step returned %d\n",res);
break;
}
return !m_bEof;
}
CSqlField* CSQLiteRecordset::operator[](size_t item) const
{
if(item>=(size_t)m_num_fields)
return NULL;
return (CSqlField*)&m_sqlfields[item];
}
CSqlField* CSQLiteRecordset::operator[](int item) const
{
if(item<0 || item>=m_num_fields)
return NULL;
return (CSqlField*)&m_sqlfields[item];
}
CSqlField* CSQLiteRecordset::operator[](const char *item) const
{
for(size_t n=0; n<(size_t)m_num_fields; n++)
if(!strcasecmp(m_sqlfields[n].name.c_str(),item))
return (CSqlField*)&m_sqlfields[n];
CServerIo::error("Database error - field '%s' not found in recordset.",item);
return NULL;
}
|