Hi,
<div><br></div><div>Does vtkSQLDatabaseTableSource have the ability to update and re-execute the sql query?</div><div><br></div><div><code></div><div><blockquote style="margin:0 0 0 40px;border:none;padding:0px">vtkTable* table;<br>
VTK_CREATE( vtkSQLDatabaseTableSource, databaseTable );<br>databaseTable->SetURL("sqlite://database.db"); <br>databaseTable->SetQuery("SELECT * FROM MYTABLE");<br></blockquote></div><div><blockquote style="margin:0 0 0 40px;border:none;padding:0px">
<div>table = databaseTable->GetOutput();</div><div>table->Update();</div><div>table->Dump();</div><div><br></div><div>//add values to table</div><div><br></div><div>table->Update();</div><div>table->Dump();</div>
<div>//does not contain the new values</div></blockquote></code></div>