I'm Currently working to develop a method of creating an edit window in a program I already have, which accesses an Sqlite database which is set and contains 4 pieces for info, id for the entry, name of the entry(which is user specified), a file location(also user entered) and members of the group. In the edit window, there are two labels, a text entry box for the name and a button to open the file browser. my problem is when I set in the sql database in the add new window, the all the data is set in the database, although when I then want to edit the data from the database, I currently delete the old data then add in new, although looking over the documentation on line I found an UPDATE method, and though this would work better, but can't get the right indexes for the database somehow, how I call for index 3, I get an error
Unhandled exception at 0x01143622 in bv.exe: 0xC0000005: Access violation reading location 0x00000000.
after some research I found that this is caused by a NULL reference pointer, which the only cause I could find for this would be that the field is empty, but I clearly set it in the add window. Please Help :(
std::string campaign_sql("SELECT id, name, config, members FROM bv_campaigns");
sqlite3_stmt *prepped_statement;
sqlite3_prepare(mainApp->GetAppData().db_conn, campaign_sql.c_str(), campaign_sql.length(), &prepped_statement, NULL);
//std::string name((const char *)sqlite3_column_text(prepped_statement, 1));
while ( SQLITE_ROW == sqlite3_step(prepped_statement) )
{
std::string name((const char *)sqlite3_column_text(prepped_statement, 1));
wxMessageBox(name);
std::string config((const char *)sqlite3_column_text(prepped_statement, 3));
wxMessageBox(config);
returns NULL reference error
std::string name = pds.getCampaignName();
std::string config = pds.serialize();
std::string update_sql("INSERT INTO bv_campaigns (name, type, config) VALUES(?,'campaignCallListDataSourcePython',?)");
sqlite3_stmt *prepped_statement;
sqlite3_prepare(this->GetAppData().db_conn, update_sql.c_str(), update_sql.length(), &prepped_statement, NULL);
sqlite3_bind_text(prepped_statement, 1, name.c_str(), name.length(), NULL);
sqlite3_bind_text(prepped_statement, 3, config.c_str(), config.length(), NULL);
where data is added, serialize and get campaign name functions get the values from the add window,
I think that's everything needed. If I'm missing anything please ask. Thanks