Specifies whether queried tables are in-memory tables.
property InMemory: Boolean
Description
Set InMemory to True before opening a query to query in-memory tables.
With InMemory=True table "MyTable" in the query SELECT * FROM MyTable
is treated as in-memory table
Note: Another way to access in-memory table (even with InMemory=false) is to specify MEMORY keyword in a query, i.e.
SELECT * FROM MEMORY MyMemoryTable
|
|