Exemplo n.º 1
0
SQLTypeAdapter::SQLTypeAdapter(const SQLTypeAdapter& other)
: m_nDataCategory(enumBeginDbType)
, m_bEmpty(false)
{
	_CopyData(other);
}
Exemplo n.º 2
0
status_t
IORequest::CopyData(const void* buffer, off_t offset, size_t size)
{
	return _CopyData((void*)buffer, offset, size, false);
}
Exemplo n.º 3
0
SQLTypeAdapter& SQLTypeAdapter::assign(const SQLTypeAdapter& sta)
{
	_CopyData(sta);
	return (*this);
}
Exemplo n.º 4
0
status_t
IORequest::CopyData(off_t offset, void* buffer, size_t size)
{
	return _CopyData(buffer, offset, size, true);
}