Hi,

On Sat, Aug 26, 2017 at 9:34 PM, Papa <p...@arbolone.ca> wrote:
> class SQLite3_RDB {
>     private:
>         sqlite3* db; //!< Data Base
>         std::string database_name;
>    public:
>         SQLite3_RDB();
>         ~SQLite3_RDB(){sqlite3_close(db); }
> };
> SQLite3_RDB::SQLite3_RDB(){
>     databese_name.assign("information.sql3db");
>     rc = sqlite3_open(databese_name.c_str(), &db);
>     std::cout << "RC: " << rc << std::endl; // ==> RC: 14

RC14 => /* Unable to open the database file */

Do you have appropriate rights to create/open file in the directory?
Are you trying to run it on the system with the AV/FW installed?

Thank you.

> }
>
> Why do I get this error message?
> Any help is appreciated.
>
> --
> ArbolOne.ca
> Using Fire Fox and Thunderbird.
> ArbolOne is composed of students and volunteers dedicated to providing free
> services to charitable organizations.
> ArbolOne on Java Development in progress [ í ]
>
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to