Re: [sqlite] Can anyone recommend some ISAM db to me?

2006-10-09 Thread Paul Smith
At 11:38 08/10/2006, you wrote: Hi, all After trying SQLite on my embedded platform, I feel that it's a little too complicated and time-consuming to my platform, especially the parsing. So, could someone recommend several ISAM ones to me?(I'm a newbie of database*^_^*) You could have a look

Re: [sqlite] Can anyone recommend some ISAM db to me?

2006-10-08 Thread John Stanton
All the involvement of SQL makes no sense in a simple embedded application which is performing associative lookups or ISAM type access. Look at perhaps using DBM or its derivative or something like C-Tree or another B-Tree method. In mimimal applications we have used AVL trees with success. The

Re: [sqlite] Can anyone recommend some ISAM db to me?

2006-10-08 Thread Clay Dowling
Sarah wrote: > Hi, all > After trying SQLite on my embedded platform, I feel that it's a little too > complicated and time-consuming to my platform, especially the parsing. > So, could someone recommend several ISAM ones to me?(I'm a newbie of > database*^_^*) I can recommend Berkeley DB from

Re: [sqlite] Can anyone recommend some ISAM db to me?

2006-10-08 Thread Mark Richards
By "the parsing" do you mean to say it is difficult to read the result of a query? Yes, I think that can become quite complicated. But there are some good recipes for doing this, including the simple one in the documentation. You can do a lot with simple SQL statements. Before throwing SQLite

RE: [sqlite] Can anyone recommend some ISAM db to me?

2006-10-08 Thread Fred Williams
Well there's always XBase. Old, solid, widespread. But, I doubt XBase will be that much different overhead, and complexity wise. SQLite is really hard to beat for its intended purpose. And as far as superior implementation, I have never seen an XBase implementation that can even come close to