• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r4wp

[#Red] Red language group

Kaj
29-Sep-2012
[2361]
What's the status of that?
BrianH
29-Sep-2012
[2362x4]
All I know is here: http://www.sqlite.org/src4/doc/trunk/www/index.wiki
I suspect that it's in alpha. Still, just due to the system structure, 
even an alpha version would be easier to adapt than the stable SQLite 
< 4.
It is structures as a NoSQL-style key/value store with a SQL engine 
on top. We can put our own engine on top.
We might even be able to implement the API that the storage engines 
plug into, which would allow us to use the storage engines unchanged.
DocKimbel
29-Sep-2012
[2366]
Brian: that last shortest path might be the first thing to try.
BrianH
29-Sep-2012
[2367x2]
Agreed. And it will be easier to keep an API clone updated for future 
SQLite changes, so we can get the benefits of future improvements 
to the storage engines.
SQLite already went through the trouble of extracing and abstracting 
their storage engines, so it's best to reuse their work :)
DocKimbel
29-Sep-2012
[2369]
We certainly have better ways to spend your time than debugging SQLite 
internals, so keeping the same SQLite codebase subset seems the right 
thing to do.
Pekr
30-Sep-2012
[2370x2]
Well, what I would like to see is the ability to have one file per 
table, without artificial limits like having to attach databases, 
to some artificial number of 9, or what was the limit. Second - SQLite 
4 to have encryption storage option ....
Also some record level locking would be nice to have ...
BrianH
30-Sep-2012
[2372]
If you want one file per table, pick another engine. For the rest 
of that stuff SQLite is OK.
Pekr
30-Sep-2012
[2373x2]
Yes, it would really help to more easily backup at the file level 
- not just one monstrous file each time, but certain tables ...
there is no other option to SQLite, other embedded databases are 
either not free, or don't use SQL syntax (e.g. mySQL)
BrianH
30-Sep-2012
[2375]
With the SQLite 4 storage engines you don't necessarily even need 
tables at all - it's a key-value store. Even SQLite recreates the 
table metaphor on top.
Pekr
30-Sep-2012
[2376]
big change in their paradigm. And the one, which fits imo REBOL. 
IIRC Carl always wanted some stronger storage option to load/save 
blocks. IIRC Rebin was needed? He once was considering adding SQLite, 
but found it too big. IMO it would be good if we used SQLite for 
Red, to standardise. I doubt we can find more efficient, powerfull, 
and cross-platform tool with the right licence? Of course more efficient 
solution might be done by pure Red facitilities, but unless we need 
really extra efficient solution, why to reinvent the wheel?
DocKimbel
30-Sep-2012
[2377]
The big advantage of SQLite over other similar engines is that it's 
bundled already in the main mobile platforms (Android and iOS).
Kaj
30-Sep-2012
[2378]
MySQL doesn't use SQL syntax?
Pekr
30-Sep-2012
[2379x2]
Kaj - last I checked it was long time ago. It did not use SQL syntax, 
and was not even free IIRC. But I don't follow mySQL for many years 
now ...
Doc - right - that is also important, that the engine is being present 
on such platforms ...
Kaj
30-Sep-2012
[2381]
It was always a GPL SQL database, but people complained it didn't 
support as much as, say, Oracle and PostgreSQL
BrianH
30-Sep-2012
[2382]
Well, if using an unmodified engine that is already installed is 
the goal, SQLite 4 is out.
Kaj
30-Sep-2012
[2383]
Just give it time
kensingleton
1-Oct-2012
[2384x3]
Hi guys - I am trying out Red/System and all seems very good until 
I try out Kaj's fibonacci and mandelbrot functions. I downloaded 
the c-library -sorted the paths and locations and tested the library 
on simple things and all compiles well. When I try to compile fib 
and mandel I get the following compilation error:
>> do/args %rsc.r "%tests/mine/fibonacci.reds"
Script: "Red/System compiler wrapper" (none)

-= Red/System Compiler =-
Compiling tests/mine/fibonacci.reds ...
Script: "Red/System IA-32 code emitter" (none)
*** Compilation Error: alias name already defined as: [str
uct! [
        item [c-string!]
    ]]
*** in file: %runtime/common.reds
*** at line: 61
*** near: [
    str-array!: alias struct! [
        item [c-string!]
    ]
    typed-value!: alias struct! [
        type [integer!]
        value [integer!]
        _padding [integer!]
    ]
]
Any suggestions as to what I am doing wrong?
Pekr
1-Oct-2012
[2387]
Most probably the binding was not tested for quite some time, and 
Red + Red/System evolves, so there might be some regression there. 
Better wait for experts, though ...
DocKimbel
1-Oct-2012
[2388]
Ken: thanks for giving it a try. We might have left these two scripts 
lagging behind. Anyway, you'll have that fixed during the day (the 
good side of having a fast pace). ;-)
Pekr
1-Oct-2012
[2389]
Go Doc, Go! :-)
kensingleton
1-Oct-2012
[2390x2]
Thanks guys, for the speedy replies
Doc, I think the work you are doing is superb and Red is a very exciting 
project - thankyou!
Kaj
1-Oct-2012
[2392]
I test the bindings and examples regularly, so they should work. 
I'll check, but which version of Red/System are you using?
kensingleton
1-Oct-2012
[2393]
I am using the version downloaded from Github a couple of days ago 
"v0.2.6-39-gfc5c4a3"
Kaj
1-Oct-2012
[2394x2]
Both the Fibonacci and Mandelbrot examples work with the current 
dyn-lib-emitter branch of Red/System, and I tested them for the 0.2.6 
and 0.2.5 releases, so they should work there, too
Did you install the extra Red-common Fossil repository that the C 
library binding now needs? (See the Announce group here)
kensingleton
1-Oct-2012
[2396x2]
Ok - I downloaded the examples by copy and paste from the examples 
in the Files section of the C Library Binding for Red - is this the 
correct way to access the examples as well as the c-library or is 
there another way?
I am running on Windows 8 64 bit by the way
Kaj
1-Oct-2012
[2398x4]
Currently, the Red-common repository goes into a common/ subdirectory 
but the Red-C-library repository goes into a Red-C-library/ subdirectory
It's much easier to download a repository as a Zip package or tarball. 
Go to a particular version or check-in and use the download links 
there
It's even better to check out the repositories with Fossil, so you 
can keep them up to date easily:
http://rebol.esperconsultancy.nl/documentation/how-to-use-Fossil.html
kensingleton
1-Oct-2012
[2402]
Ok - I am confused - are we talking about getting Red/System now, 
or your c-library bindings and examples? I downloaded Red/System 
from Github, the zipped version using the supplied button. Then when 
I had all that working I went to the Red blog site - contributions 
- c library binding - and downloaded your c-library etc from there 
using copy and paste
Kaj
1-Oct-2012
[2403]
No, my bindings
kensingleton
1-Oct-2012
[2404]
I will have a look into using Fossil and try again - it may be that 
the examples I have obtained are out of sync with the examples obtained 
through fossil - once I have figured it out I will try again and 
let you know my results -thanks for your help
Kaj
1-Oct-2012
[2405x2]
There is little opportunity for being out of sync, as I tested them 
all the time
Most likely, you have put files in different places then they're 
supposed to be, and the paths are now wrong
kensingleton
1-Oct-2012
[2407]
Possibly, but I did go through all the #includes and made sure the 
c-library and common.reds was accessible and working, but like I 
said, I will try using Fossil and see what happens that way
Kaj
1-Oct-2012
[2408x2]
More information on handling the repositories for one binding is 
here:
http://rebol.esperconsultancy.nl/extensions/0MQ/
kensingleton
1-Oct-2012
[2410]
Thanks Kaj