vote up 2 vote down star
1

Hi Girls and Guys!

I'm currently working on some evaluation work for a project that I'm planning.

I recently looked at solutions for a data storage mechanism for my application and while researching stumbled upon SQLite. I currently use SQLite with the System.Data.SQLite wrapper.

I really like the way it works but I have one problem with it that I couldn't get fixed and I also found no help concerning my problem on the internet.

I would like my SQLite Database to be embedded into one of my applications DLLs (ie. Title.Storage.dll) to be used within this DLL. Is this possible?

How can I access the database then?

It would be great if I could use something like:

SQLiteConnection con = new SQLiteConnection();
con.ConnectionString="DataSource=Title.Storage.storage.db3";
con.Open();

Thanks in advance and best regards,

3Fox

flag

3  
This can't possibly be possible. How would you write to the database? You'd have to open the assembly for writing. Not answering because I can't provide technical details. – Will Apr 26 at 17:10
Even if this was possible, I'd imagine it would send some security suites crazy - large, constant changes to a code file. – dommer Apr 26 at 17:29
If you had a small amount of read-only data that you wished to query, this would probably work just fine - read the resource into an in-memory database and query it. – Shog9 Apr 26 at 17:40
I might be mistake, but I remmember when dealing with Dotnet 2 there was a way to embed a sql express DB into the exe/dll – Itay Moav Apr 26 at 17:58

5 Answers

vote up 5 vote down check

An assembly isn't for file storage, it's for code storage. While you can store files in an assembly, they are read only.

link|flag
Resources are definitely read-only from code. – Will Apr 26 at 17:19
vote up 1 vote down

You can do that by simply embedding file as a resource, but you will need to extract the DB from DLL, after that you can take this file and hot-backup it into SQLite memory db and delete file (or simply open that file). If you will need a details - leave a comment.

link|flag
vote up 0 vote down

If you're on NTFS, you can use an alternate data stream. On my project we hide the SQLite database inside another file using an alternate stream called :DB.

link|flag
what happens if I copy the file to a FAT32 partition and back? – Lucas May 23 at 18:43
You will lose alternative stream after copying the file to FAT partition. – mateusza Jun 2 at 11:03
vote up 0 vote down

SQLite is packaged and distributed as a single C file with a few (3 I think) header files. This means that you can compile the entire 50000 line program with one compile command and get a .o file. From there, you can link it into your application DLL with the other files you link into that DLL.

Once you build sqlite3.o into your application DLL, the symbols in its SQLite's API become available to your programs in the same way that your other C/C++ DLLs become available to your C#/VB programs.

Check out www.sqlite.org/amalgamation.html for more info.

link|flag
That was totally not what I was trying to achieve. I wanted to embed the <u>database</u> file in a dll not the dll that allows me to access it. – crischu May 31 at 15:40
vote up 0 vote down

I don't think storing data in DLL is a good idea, but there is a dirty way to do it.

To load data from DLL:

  1. Use System.Reflection.Assembly to load a string from DLL file. (The string is dump of DB)
  2. Create empty SQLite DB in memory.
  3. Use the loaded string as a query to DB to restore its content.

Now you can make any queries in memory.

To save data to DLL:

  1. Dump DB content into a string.
  2. Create temporary file containing SQL-dump wrapped in C# code.
  3. Compile it using "csc" (or "gmcs" in Mono).

It's stupid, but it should work. Hope you will never code that way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.