Heaplink
Developer & Designer
Hello people,
Me and a friend of mine are currently developing another application in C#. More on that later. But this application should be able to have storage in form of either a file or a embedded database.
I have looked and searched for SQLite and also found Firebird. Those two are fast databases, which is small of size. Now I read that SQLite uses a DLL, which can be referenced. This is fine, but how about embedded INTO the deployment (.exe)?
The application we're developing should be a standalone as in only SINGLE executable file, that you can put on your USB device (or other devices as well). Therefore we need a solution to read and write data within the application, so the application itself store that data no matter where you move it from and to.
The application we are developing is a snipping application, where you can store snippet of texts, codes or anything else (basically just text). Each of these snippets has
I know that Zak is currently working with SQLite in his application, but wether it is embedded into the application without an external file.
Thanks in advance.
Me and a friend of mine are currently developing another application in C#. More on that later. But this application should be able to have storage in form of either a file or a embedded database.
I have looked and searched for SQLite and also found Firebird. Those two are fast databases, which is small of size. Now I read that SQLite uses a DLL, which can be referenced. This is fine, but how about embedded INTO the deployment (.exe)?
The application we're developing should be a standalone as in only SINGLE executable file, that you can put on your USB device (or other devices as well). Therefore we need a solution to read and write data within the application, so the application itself store that data no matter where you move it from and to.
The application we are developing is a snipping application, where you can store snippet of texts, codes or anything else (basically just text). Each of these snippets has
- A name
- A category
- Content (the text or code)
I know that Zak is currently working with SQLite in his application, but wether it is embedded into the application without an external file.
Thanks in advance.