I want to import data in SQLite In-Memory Databases with JSL command. Until now, I did not find how to import it within JSL environment.
I can find how to connect In-Memory Databases generated by Python programming. But I did not find to import data within JMP.
Though I know the reason is that it is imported from other instance(process) not from same process, I'd like to know whether there is the solution or not. The JSL open Database script is as follows.
Open Database(
"DSN=SQLite3 ODBC;DATABASE=file::memory:?cache=shared",
query,
JMP_name
);