Sign in

username:

password:



Not a member?

Search Comp.Arch.Embedded



Search tips

embedded by Keywords

68HC11 | 68HC12 | 8051 | 8052 | ARM | ARM7 | Asic | AT91 | AT91RM9200 | Atmel | AVR | AVRStudio | Bootloader | CFP | CompactFlash | Cygnal | Cypress | Dataflash | DSP | eCos | EEPROM | Embedded Linux | Emulator | Endian | Ethernet | Firewire | FPGA | Freescale | GCC | GNUARM | GSM | H8 | HDLC | I2C | Infineon | Interrupts | Java | JTAG | LCD | LED | LPC2000 | MCU | Microchip | MMC | MPLAB | MSP430 | PC104 | PCB | PCI | PCMCIA | PowerPC | Rabbit | RS232 | RS485 | RTOS | SBC | SDRAM | Sensor | SPI | STK500 | UART | UML | USART | USB | Verilog | VHDL | VxWorks | Xilinx

Ads

Discussion Groups

Discussion Groups | Comp.Arch.Embedded | Q: Embedded Database Recommendations?

There are 26 messages in this thread.

You are currently looking at messages 20 to 26.

Re: Q: Embedded Database Recommendations? - Boudewijn Dijkstra - 04:04 14-07-08

Op Sat, 12 Jul 2008 05:16:23 +0200 schreef Peter K.  
<p...@remove.ieee.org>:
> I have a requirement for a database on an embedded platform.
>
> Currently, I have looked at SQLite (http://www.sqlite.org/) and MySQL
> (http://www.mysql.com/).
>
> Does anyone have any other suggestions?
>
> Does anyone have any comments on either of these two regarding
> performance (specifically SELECT speeds and memory footprint)?
>
> Any pointers appreciated!

How about Polyhedra?
	http://www.enea.com/polyhedra



-- 
Gemaakt met Opera's revolutionaire e-mailprogramma:  
http://www.opera.com/mail/



Re: Q: Embedded Database Recommendations? - 06:45 14-07-08

"Boudewijn Dijkstra" <b...@indes.com> writes:

> 
> How about Polyhedra?
> 	http://www.enea.com/polyhedra

Interesting, Boudewijn!  Thanks for the tip.

Ciao,

Peter K.

-- 
"And he sees the vision splendid 
of the sunlit plains extended
And at night the wondrous glory of the everlasting stars."

 

Re: Q: Embedded Database Recommendations? - Ignacio G.T. - 09:09 14-07-08

Peter K. escribió:
> Hi All,
> 
> I have a requirement for a database on an embedded platform.
> 
> Currently, I have looked at SQLite (http://www.sqlite.org/) and MySQL
> (http://www.mysql.com/).
> 
> Does anyone have any other suggestions?
> 
> Does anyone have any comments on either of these two regarding
> performance (specifically SELECT speeds and memory footprint)?
> 
> Any pointers appreciated!

You might consider:

eXtremeDB, form McObject
Berkeley DB, from Oracle

These are considered "truely" embedded DBs.


Re: Q: Embedded Database Recommendations? - CBFalconer - 16:04 14-07-08

"Peter K." wrote:
> CBFalconer <c...@yahoo.com> writes:
> 
>> If an 'in memory' database is satisfactory, take a look at my GPLd
>> hashlib.  It is written in pure standard C, so extremely portable.
>> I own it, so arrangements can be made if the GPL requirement to
>> release your code is a problem.  See:
>>
>>   <http://cbfalconer.home.att.net/download/hashlib.zip>;
> 
> Thanks, Chuck, I'll take a look.

For your purposes one advantage is that the code is very compact. 
The system still gobbles memory to store the data, but that is
inherent for anything.  The code is sharable, so only one code
instance can handle any number of completely independent data
tables.  The code module will occupy about 1.5k when compiled for
the 80386.

-- 
 [mail]: Chuck F (cbfalconer at maineline dot net) 
 [page]: <http://cbfalconer.home.att.net>;
            Try the download section.



Re: Q: Embedded Database Recommendations? - 20:39 14-07-08

"Ignacio G.T." <i...@evomer.yahoo.es> writes:

> You might consider:
> 
> eXtremeDB, form McObject
> Berkeley DB, from Oracle
> 
> These are considered "truely" embedded DBs.

Thanks, Ignacio!

Both look interesting.

Regards,

Peter K.

-- 
"And he sees the vision splendid 
of the sunlit plains extended
And at night the wondrous glory of the everlasting stars."

 

Re: Q: Embedded Database Recommendations? - 20:47 14-07-08

CBFalconer <c...@yahoo.com> writes:

> For your purposes one advantage is that the code is very compact. 
> The system still gobbles memory to store the data, but that is
> inherent for anything.  The code is sharable, so only one code
> instance can handle any number of completely independent data
> tables.  The code module will occupy about 1.5k when compiled for
> the 80386.

Thanks.  I've set myself up with a test case, and I've run MS SQL
Server (yes, not really embedded, but what the hey), MySQL and SQLite
through it.

I hope to do the same now with various other potential solutions.

I'll let you know how things go.

Regards,

Peter K.


-- 
"And he sees the vision splendid 
of the sunlit plains extended
And at night the wondrous glory of the everlasting stars."

 

previous | 1 | 2 | 3