2011/1/3 John Deal <[email protected]>

> DbSqliteDirectory::DbSqliteDirectory(std::string path)
> {
>    m_db_session = openDb(path);
>
>    // Begin TEST!! JRD
>    m_prep_get_version = new soci::statement((m_db_session->prepare <<
>        "select version from version", into(m_version_rec)));
>

Have you tried with the "soci" namespace prefix?
   m_prep_get_version = new soci::statement((m_db_session->prepare <<
       "select version from version", soci::into(m_version_rec)));

D
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Soci-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/soci-users

Reply via email to