windows 10, emacs 26.1
I has file my_test.sql
. This file content SQLite
query. Is it possible to execute this sql query and get results?
I has
sqlite
db filetest.db
It has table
notification_invoice
I create file my_test.sql with one sql query:
select * from notification_invoice order by notificationDate
So here my steps:
As you can see I not get sql result.
What is wrong with my steps?