Hello Denis, That's it (damn namespaces. Life was much simpler before namespaces and the WWW ;-)).
Thanks much! John --- On Mon, 1/3/11, Denis Arnaud <[email protected]> wrote: From: Denis Arnaud <[email protected]> Subject: Re: [SOCI-users] error: ‘into’ was not declared in this scope To: "General-purpose list for SOCI users." <[email protected]> Date: Monday, January 3, 2011, 11:18 AM 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 -----Inline Attachment Follows----- ------------------------------------------------------------------------------ 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 -----Inline Attachment Follows----- _______________________________________________ Soci-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/soci-users ------------------------------------------------------------------------------ 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
