protyposis / Aurio

Audio Fingerprinting & Retrieval for .NET
GNU Affero General Public License v3.0
136 stars 28 forks source link

SQLite storage broken #3

Closed KassemKallas closed 6 years ago

KassemKallas commented 7 years ago

Dear all,

Finally, the software is compiled without problems and issues like the one I described in previous issue.

Now I would like to excute the program and save the db structure at the local machine disc instead of the memory as it was in the code. That is done by using SQLite. So, the problem can be described in the subsequent code lines.

Here is a piece of code: //db = new SQLiteConnection(":memory:"); --> this works db = new SQLiteConnection("Data Source=C:\test.sqlite"); ---> This does not work ... file not found

Even when I tried to create automatically the file I could not find the method SQLiteConnection.Createfile.

Please, can you give any advice or help on the source of this error encountered and how possibly could be resolved.

Thanks in advance

protyposis commented 7 years ago

Storing to SQLite is currently broken but can be fixed easily:

KassemKallas commented 7 years ago

Thank you

protyposis commented 6 years ago

Issues are fixed in newest version.