Re: [sqlite] in-memory database concept

2009-11-05 Thread Stephan Wehner
On Wed, Nov 4, 2009 at 4:57 AM, Serdar Genc wrote: > Yes I am aware of that but I need to access an in-memory database from two > processes which were written in Java and C++. > I am just looking for a way to do so.. Hey Serdar, do you have any update on this ? I found

Re: [sqlite] in-memory database concept

2009-11-04 Thread O'Neill, Owen
: [sqlite] in-memory database concept Yes I am aware of that but I need to access an in-memory database from two processes which were written in Java and C++. I am just looking for a way to do so.. On Wed, Nov 4, 2009 at 2:50 PM, Jay A. Kreibich <j...@kreibi.ch> wrote: > On Wed, Nov 04, 2

Re: [sqlite] in-memory database concept

2009-11-04 Thread Serdar Genc
Yes I am aware of that but I need to access an in-memory database from two processes which were written in Java and C++. I am just looking for a way to do so.. On Wed, Nov 4, 2009 at 2:50 PM, Jay A. Kreibich wrote: > On Wed, Nov 04, 2009 at 10:27:57AM +0200, Serdar Genc

Re: [sqlite] in-memory database concept

2009-11-04 Thread Jay A. Kreibich
On Wed, Nov 04, 2009 at 10:27:57AM +0200, Serdar Genc scratched on the wall: > But when I try to do this for in-memory, everything is getting chunky. A new > database is being created in memory for every attempt to open > database in memory. Now I am trying to switch the database handler between

Re: [sqlite] in-memory database concept

2009-11-04 Thread Serdar Genc
ehalf Of Serdar Genc > Sent: 04 November 2009 09:13 > To: General Discussion of SQLite Database > Subject: Re: [sqlite] in-memory database concept > > Yes you are right about it but when I tried to mount a place as tmpfs, > its > type seemed swap just like /tmp. > The speed

Re: [sqlite] in-memory database concept

2009-11-04 Thread Abel, John
Of Serdar Genc Sent: 04 November 2009 09:13 To: General Discussion of SQLite Database Subject: Re: [sqlite] in-memory database concept Yes you are right about it but when I tried to mount a place as tmpfs, its type seemed swap just like /tmp. The speed seems to be same with /tmp. What I need

Re: [sqlite] in-memory database concept

2009-11-04 Thread Serdar Genc
Yes you are right about it but when I tried to mount a place as tmpfs, its type seemed swap just like /tmp. The speed seems to be same with /tmp. What I need to increase the speed for /tmp or another solution for in-memory database. Serdar On Wed, Nov 4, 2009 at 10:56 AM, Stephan Wehner

Re: [sqlite] in-memory database concept

2009-11-04 Thread Stephan Wehner
On Wed, Nov 4, 2009 at 12:51 AM, Serdar Genc wrote: > The OS that I am implementing this is SunOS and I have already tried doing > it by creating the file in /tmp but > but because of file I/O operations to reach /tmp. The speed of sqlite is > significantly slow (memory is

Re: [sqlite] in-memory database concept

2009-11-04 Thread Serdar Genc
The OS that I am implementing this is SunOS and I have already tried doing it by creating the file in /tmp but but because of file I/O operations to reach /tmp. The speed of sqlite is significantly slow (memory is 5 times faster than file system). Speed of Sqlite is important for me. That's why I

Re: [sqlite] in-memory database concept

2009-11-04 Thread Stephan Wehner
On Wed, Nov 4, 2009 at 12:27 AM, Serdar Genc wrote: > Hello everyone, > > I have a little bit problem about in-memory database feature of SQLite. I > would like to use two programming languages in my application . > These languages will be Java and C++. I would like to

[sqlite] in-memory database concept

2009-11-04 Thread Serdar Genc
Hello everyone, I have a little bit problem about in-memory database feature of SQLite. I would like to use two programming languages in my application . These languages will be Java and C++. I would like to reach the same database in memory by using both. I used Xerial for JDBC for Java.