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