r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[SQLite] C library embeddable DB .

Pekr
29-Nov-2007
[632x2]
... and they definitely should completly remove their claim that 
1 file for db is an advantage. That is the most serious obstacle 
of sqlite ... simplicity comes via ability to easily backup ... one 
file per index, table ...
Robert - tried that. Sadly it does not fix the issue. I will try 
to get to their ml and post the finding. Maybe I am doing something 
incorrectly, otoh I think that corruption should never happen, even 
if query would be nonsense :-)
Ingo
30-Nov-2007
[634]
Well, simplicity lies in the eyes of the beholder ... just having 
to back up a single file seems pretty easy to me ...
Graham
30-Nov-2007
[635]
me too
Pekr
1-Dec-2007
[636]
if that size is not necessarily 100MB and you don't need to back-up 
all the files all the time ....
PeterWood
1-Dec-2007
[637x2]
..then why don't you just back up the tables that you ?
..want ????
Pekr
2-Dec-2007
[639x2]
you can, by creating some code to do so, not by simply looking into 
the directory and using default OS facilities.
well, SQLite is really cool, but simply noone can defend that one 
argument to me. I also communicated that "defficiency" on their ml, 
and simply put - it is the way it is. 'Attach function is just nasty 
workaround, nothing more. But - I talk about some 5% of feature, 
which would I found usefull, I will use sqlite anyway, as simply 
put there is no simple replacement to what it provides ...
PeterWood
2-Dec-2007
[641]
I didn't think that you needed to write any code to backup individual 
tables in SQLite but just supply the table name as a parameter to 
the .dump command.

I believe you can do this from the command line with SQLite3.
Pekr
12-Dec-2007
[642]
It seems I found a bug :-) http://www.sqlite.org/cvstrac/tktview?tn=2832
GiuseppeC
13-Dec-2007
[643]
I ask here too, I want to adopt a database system for my rebol projects: 
which are the advantages of SQLLite over RebDB ? Why should adopt 
the first or the latter ?
Henrik
13-Dec-2007
[644]
I ask here too
 No need to cross post. We can all see the messages.
Pekr
13-Dec-2007
[645x2]
SQLite has one main advantage - it supports SQL like syntax - you 
can join tables. I can't imagine living without those features anymore.
RebDB is also mostly - in memory only database. It does not live 
on hd. So - SQLite has one advantage here - it supports locking over 
file-shared SQLite database.
GiuseppeC
13-Dec-2007
[647]
Sorry Henrik my intentions where not to SPAM, I have later found 
the SQL lite group than the RebDB. Promise I'll write only once starting 
from now. Don't be upset :-)
Pekr
13-Dec-2007
[648]
That is still not full-fledget SQL server - those provide you with 
network independent access ...
GiuseppeC
13-Dec-2007
[649]
Pekr, joining tables and having the data on disk are already two 
good points for SQL Lite. Obviusly I need Rebol/Pro licence before 
using it.
Pekr
13-Dec-2007
[650]
not necessarily.
GiuseppeC
13-Dec-2007
[651]
I ahve read in the doc that Rebol/Pro is necessary. Could you explain 
?
Pekr
13-Dec-2007
[652x2]
Well - there is btn-sqlite (better than nothing) driver on rebol.org 
It works, with one bad effect - black console window appearing during 
the shell call. Just recently I put it on high priority list for 
W.7.6 to be fixed - all is needed is to set one flag for shell call 
....
I hope that it gets fixed.
GiuseppeC
13-Dec-2007
[654]
Thanks pekr, I'll take a look at it. Next year, when I'll have more 
knoledge in RebGUI and Rebol2 I need to start a project which needs 
a database but it will be a single user project so SQL lite.is good 
enough.
Pekr
13-Dec-2007
[655]
Next year you will be using R3 :-)
GiuseppeC
13-Dec-2007
[656x2]
Then I'll give me Rebol/Pro or the whole command/sdk as present.
NO, I want to use R2. I will be using R3 only for small projects 
and to help the comminity into debugging ! Have you already read 
what I think about people complaining R3. Your is a provocation !!! 
:-)))))
Pavel
14-Dec-2007
[658]
To GiuseppeC there is a simple server based on SQLite look at SQLIte 
Wiki/SQLiteNetworks/uSQLiteServer a protocol to this is also in rebol.org.


Anyway I can tell you a secret not to tell anybody: try to use rebface.exe 
from public available REBOL/SDK 2.7.5 BETA . It seems the /Pro restriction 
is not applied there for some reason and SQLite protocol works sweet 
for me there.

You can got  an idea run "local database backend" in one rebface 
process and application in another on rebol version of your choice. 

THANKS ASHLEY FOR A GOOD JOB.
GiuseppeC
14-Dec-2007
[659]
Now I expect a totally free Rebol/Command :-)
BrianH
14-Dec-2007
[660]
You don't need /Command SQLite, just library access and you get that 
in /Pro. There are other advantages to /Command though.
GiuseppeC
14-Dec-2007
[661x2]
I know. I will buy the /pro version next year and the whole package 
when my application will be ready.
(Hoping in a free upgrade to R3)
Robert
17-Dec-2007
[663x2]
Petr, congrats to really find a bug. I think I have been hit by this 
one too.
I will make an update of the SQLite engine. I'm still using a rather 
old one.
Pekr
19-Dec-2007
[665]
New version released ... hehe, my ticket is part of the announcement 
:-) http://www.sqlite.org/news.html
Graham
19-Dec-2007
[666]
what's sqlite's domain?
Pekr
19-Dec-2007
[667x3]
what do you mean by "domain"?
I can confirm it fixes data corruption for my case. Nice fix!
do you mean domain of usage? or?
Graham
19-Dec-2007
[670]
domain of use
Pekr
19-Dec-2007
[671]
single user apps. Or fileshared ones. Embedded space. Advantage against 
mySQL embedded - SQL interface, free. Not easily used for server 
solutions, although could be solved by some server dispatching requests. 
No installation, just one single dll.
Graham
19-Dec-2007
[672x2]
message board??
probably not from what you say.
Ashley
19-Dec-2007
[674]
Why not? It's ACID compliant and SQLite on a server where all file 
ops are local to the DB process seems OK to me.
Ashley
20-Dec-2007
[675]
From "Suggested Uses For SQLite" ( http://www.sqlite.org/features.html
)

Website Database

 Because it requires no configuration and stores information in order 
 disk files, SQLite is a popular choice as the database to back small 
 to medium-sized websites

Stand-in For An Enterprise RDBMS

 SQLite is often used as a surrogate for an enterprise RDBMS for demonstration 
 purposes or for testing. SQLite is fast and requires no setup, which 
 takes a lot of the hassle out of testing and which makes demos perky 
 and easy to launch.
Pekr
20-Dec-2007
[676]
Is there any commonly suggested server mode? I mean tcp server, serialising 
requests, querying db and returning results back to users?
BrianH
20-Dec-2007
[677x3]
It is usually suggested that you build your own wrapper. REBOL/Services 
would be good for this.
BTW, your new release doesn't seem to be downloading :(
Graham, that features page also says how to use SQLite to manage 
the files that store your application data. It's a cool hack.
Graham
20-Dec-2007
[680x2]
Maybe Altme could use it to store local messages?
I'm storing user configuration data on the server (firebird) in a 
text blob field ... which is one serialized rebol object.  Each time 
I change a configuation parameter, the whole object is saved back 
to the database.