Ejemplo n.º 1
0
int64_t Query::getbigint(const std::string& x)
{
	int index = m_nmap[x] - 1;
	if(index < 0)
		throw std::runtime_error("Column name lookup");
	return getbigint(index);
}
Ejemplo n.º 2
0
int64_t Query::getbigint(const std::string& x)
{
	int index = m_nmap[x] - 1;
	if (index >= 0)
		return getbigint(index);
	error("Column name lookup failure: " + x);
	return 0;
}
Ejemplo n.º 3
0
int64_t Query::getbigint()
{
	return getbigint(rowcount++);
}