Hi !
I'm searching a way to execute INSERT big query inside my SQLite database.
As i have a lot of items, could i 'load' the query from a text file ? So could you help me with the syntax...
It's a nightmare to edit the query inside the IDE. (it was a Mysql query)
Dim Query as String
Query = " " & <--- data from the file.txt --> & " "
and my file.txt :
insert into t_big_table values ( ... a lot of ...)
Many thanks
I'm searching a way to execute INSERT big query inside my SQLite database.
As i have a lot of items, could i 'load' the query from a text file ? So could you help me with the syntax...
It's a nightmare to edit the query inside the IDE. (it was a Mysql query)
Dim Query as String
Query = " " & <--- data from the file.txt --> & " "
and my file.txt :
insert into t_big_table values ( ... a lot of ...)
Many thanks