Tagged Questions

19
votes
1answer
432 views

In C#, is there any way to have an in-memory file linked as an in-memory SQLite database with System.Data.SQLite?

What I want to do is something along the lines of the following: using System.Data.SQLite; using System.IO; //My SQLite connection SQLiteConnection myCon; public void ReadAndOpenDB(string filename) ...
5
votes
3answers
2k views

How do I create a sqllite3 in-memory database?

One of the appropriate uses for sqlite3 is "in-memory databases". This sounds like a really useful tool for my C++ applications. Does anyone have an example of how this is done in C or C++? I'm ...
3
votes
3answers
111 views

Optimize QSql of memory database in multiprocessor-thread

Here's my problem, I have one sqlite memory database by using QSql. I have several threads each handling one different table of this common database. And I use Win API to make sure these threads ...
2
votes
1answer
416 views

Using PDO Sqlite in-memory Db for PHPUnit tests

I recently got PHPUnit working with xDebug for testing my Zend Framework applications. The fact I use ZF shouldn't make any difference to this question- just mentioned it for completeness. Anyway, it ...
1
vote
1answer
45 views

Is there a thread lock for QSqlQuery when using memory sqlite database

When I use several QSqlQuery querying and inserting in different table of the same memory sqlite database, it seems that there's a thread-safe lock so I cannot speed up my program. I use Windows API ...
1
vote
2answers
128 views

Loading on-disk SQLite database into in-memory database and syncing back

I have a SQLite database that has pretty intensive repeated reads and occasional writes. However, the writes (because of indexing) tend to block the reads. I would like to read the on-disk database ...
1
vote
2answers
770 views

PDO: Unable to create SQLite database in memory

Trying to learn a bit about PDO and is going through this tutorial. It has the following snippet of code: <?php try { $db = new PDO('sqlite::memory'); echo "SQLite created in memory."; } ...
0
votes
2answers
31 views

MySQL vs Sqlite: which is better for in-memory DB?

If some records are needed to be stored in memory, which is the better choice: MySQL memory engine or Sqlite? Which DB engine has better performance for select operations? Which DB engine occupies ...
0
votes
0answers
12 views

sqlite:How to use in memory

I am trying to store my data in memory here is what i have right now //sq lite driver Class.forName("org.sqlite.JDBC"); //database path, if it's new data base it will be ...
0
votes
1answer
64 views

How to backup/store between sqlite memory database and file database in Qt?

What's the easiest way to backup/restore sqlite memory database to file database in Qt.
0
votes
1answer
34 views

Feasibility of SQLite in-memory as main database for web app

Is anyone running SQLite in-memory db as their main database for their web app? I'm trying to get a handle on the feasibility/stupidity of such a setup. If I have a web application with fewer than ...
0
votes
2answers
158 views

How to browse an in-memory SQLite database with the command line tool sqlite3

Is there a way to load an entire SQLite database into memory for faster results, using the sqlite3 CLI tool? Thanks!
0
votes
2answers
522 views

64-bit SQLite.dll and Any CPU

I finally decided to post a question here after some time spent trying to figure out this problem. A few days ago I posted this same question on sqlite forum but that website is currently not ...
0
votes
1answer
233 views

How to load a disk-based database to in-memory database using Sqlite in Mono?

Can I load a disk-database file (.db) to a in-memory database created by :memory: in Sqlite? I am using Mono, and Mono.Data.Sqlite is the library I am linking to. Does anyone know how to do that? or ...
0
votes
1answer
128 views

In-memory/Embedded DB solution

I'm currently using the in-memory option for SQLite and while it works (a bit slow right now but I'm still exploring ways to optimize my usage of it like batching and such), I'm just curious whether ...
0
votes
0answers
223 views

How Fast would a SQLite join be compared to a custom tree search?

Continuing some themes in this question, I would like to know if I could get a performance of O(log n) on the size of the table from somes sqlite queries. The first would get the mth element of a ...
0
votes
1answer
358 views

SubSonic 3 Repository - SQLite In-Memory

Before I invest the time in modifying the SubSonic 3 source, I figured I ask to see if I'm missing something simple. Is it possible to use the SubSonic 3 Repository with migrations on a SQLite ...