Search:

Type: Posts; User: tommy00b

Search: Search took 0.01 seconds.

  1. Assigning each element runtime error

    I moved the assignment inside the column loop that is within the row loop and I believe this assigns each element, correct?

    tableData_gmti[row_index][c_index]= myData_gmti[row_index][c_index];
    ...
  2. How to assign array of pointers to pointers, to content of static array?

    char myData[90][3][50]; //90 rows, 3 columns, each block 50 chars long
    char **tableData[90] = {NULL};

    const char* text;
    text = sqlite3_column_text(stmt, col_index);

    text_lenght =...
Results 1 to 2 of 2