|
From: Candy C. <can...@gm...> - 2012-08-30 19:42:13
|
Hi,
I defined a type_conversion struct for an entity called Student. Is it
possible to select into a vector<Student> using this mapper?
template<>
struct soci::type_conversion<Student>
{ .... }
std::vector<Student> students;
sql << "select * from Student", into(students);
Thanks.
|