I think the problem with this function is my lack of good understanding of the SQL. What I intend to do is to write one int64_t to the database, but I don't know how to write the proper sql statement, making sqlite3_prepare_v2 return a non SQLITE_OK value.
Any help is much appreciated.

void write(const std::string& table_name, const int pos, const int64_t data) {
    ...
    std::string apstr = "INSERT INTO (";
    apstr += table_name.data();
    apstr += ", ";
    apstr += data;
    apstr += ");";
    rc = sqlite3_prepare_v2(db, apstr.data(), -1, &binary_sql_statement, NULL);
    ...
}

Thanks in advance.

--
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

Reply via email to