ouch67 wrote:What is the best way to create a table that say consists of 3 columns:
Name char, Price real, Qty real
I don't see where this could be done using wxSqlite3 unless I'm missing something.
(I probably am,

)
If you are actually referring to
SQLite's virtual tables based on the
virtual table mechanism, then you haven't missed anything, since wxSQLite3 has no special support for implementing such virtual tables. This would be way beyond the scope of wxSQLite3.
However, from your below comment I get the impression that ...
ouch67 wrote:
I just want to create a table that I can use but doesn't actually get saved. Is there a better way than virtual tables?
... what you really want to have, are
temporary tables which can be created using the SQL command
CREATE TEMPORARY TABLE.
Temporary tables are only visible to the database connection in which they were created, and temporary tables are always automatically deleted when the database connection is closed.
Regards,
Ulrich