コード例 #1
0
ファイル: CppSQLite3.cpp プロジェクト: fly2mars/suAgent
const unsigned char* CppSQLite3Query::getBlobField(const char* szField, int& nLen)
{
	int nField = fieldIndex(szField);
	return getBlobField(nField, nLen);
}
コード例 #2
0
ファイル: Sqlite.cpp プロジェクト: 867344633/QService
const unsigned char* CSQLite3Query::getBlobField(const char* pszField, int &iLen)
{
    int iField = fieldIndex(pszField);

    return getBlobField(iField, iLen);
}
コード例 #3
0
const unsigned char* SqlStatement::ResultRow::getBlobField(const char* szField, int& nLen) const {
	return getBlobField(fieldIndex(szField), nLen);
}