World: r3wp
[!REBOL2 Releases] Discuss 2.x releases
older newer | first last |
btiffin 26-Apr-2008 [299x2] | Oh, +s seems to fix it as well. Better. |
Little bit more playing around, to see if +s was taking ... doesn't seem so. rebol [] probe system/script change-dir %.. list-dir ask "waiting" c:\tools\rebol\appdata\rebview +s testing.r ... words: none ] waiting ** Script Error: list-dir expected dir argument of type: file url unset ** Near: list-dir ask "waiting" >> The ask is evaluated before the list-dir error And if list-dir %. is used, it lists the dir, without a security box. | |
Anton 27-Apr-2008 [301x2] | That's natural. list-dir expects an argument. |
just the same as: 1 + print "hello" | |
Geomol 7-May-2008 [303x2] | There seems to be a difference in CALL/SHELL (at least under Windows). Earlier versions open a shell window, the latest doesn't. I can see it, when I run my OpenGL stuff. |
It's been discussed before in this thread, I see. | |
BrianH 7-May-2008 [305] | Try the /show refinement. |
Geomol 7-May-2008 [306] | Thanks! |
Henrik 4-Aug-2008 [307] | Did the r2-beta world go down? I can't reach it. |
Graham 4-Aug-2008 [308] | nor I from yesteday |
Gabriele 4-Aug-2008 [309] | it's been going down every day. i have restarted it twice, but there seems to be something wrong with it, so i'll be waiting for carl to be back and have a look at it (since i have no idea how altserve works :) |
Graham 5-Aug-2008 [310] | down again |
Henrik 5-Aug-2008 [311] | disk full? |
Graham 5-Aug-2008 [312] | why would it only affect one world? |
Gabriele 6-Aug-2008 [313x2] | not a disk problem, this is on www.rebol.net. |
i really think Carl should look into it. i don't like the idea of just restarting it without knowing what's wrong with it. | |
Henrik 24-Aug-2008 [315] | Has anyone tried Cyphre's my-http.r on REBOL/View 2.7.6? I get an error here: >> read http://www.rebol.net ** Script Error: querying has no value ** Where: halt-view ** Near: http-command: either querying ["HEAD"] ["GET"] |
james_nak 9-Sep-2008 [316] | Rebolers, again I reach out to you for some info and advice. I'm creating a DB in Access 2003 for a company (This is what they use so I'm stuck here) and I'd rather create a set of tools (for some work but not all, the majority of the tasks will be strictly access) that has Rebol talking to it rather than having to doing it in VB. I was under the impression that 2.7 had odbc built in, but alas it doesn't seem to. Am I stuck with having to get /Command? |
Pekr 9-Sep-2008 [317] | Not sure it was freed. Maybe we talked about it, but I don't remember Carl's opinion on that. What was freed though was DLL wrapper interface, but I am not sure there is an ODBC wrapper via DLL for REBOL ... |
james_nak 9-Sep-2008 [318] | Thanks Pekr. All that wrapper stuff is beyond me. It sound like VB school for James_Nak. : ( |
Henrik 9-Sep-2008 [319] | DocKimbel was working on one, but I think it's old and unfinished. |
james_nak 9-Sep-2008 [320] | Thanks. That must also mean it is pretty hard to do. |
sqlab 9-Sep-2008 [321] | In the old days of pre-Command or View/beta I wrote an ODBC-Wrapper. |
james_nak 9-Sep-2008 [322] | Can I try it? |
Graham 9-Sep-2008 [323] | you need R/command. |
james_nak 9-Sep-2008 [324] | That's what it is looking like. |
sqlab 9-Sep-2008 [325] | At the moment I have no access to that old pc and script. I takes a few days, but then you can get it. At least someone was even using it on Linux, as Command does not provide ODBC access there. |
james_nak 9-Sep-2008 [326] | Thanks in advance then. I'm really trying hard to not have to learn VB : ) Which may not be a good thing in the long run. Thanks. |
BrianH 9-Sep-2008 [327x2] | If you can get them to upgrade to 2007 (the runtime is free), then you won't have to do as much VB for UI stuff. |
You should also consider having them use SQL Server 2008 Express instead of Access for the database portion, though you still have to be careful about datatype translation if you are still using Access as a front-end, even 2007. | |
Graham 9-Sep-2008 [329] | sqlab, how did your odbc wrapper work? |
james_nak 9-Sep-2008 [330] | Thanks Brian. I forgot about Express. If I can convince them to let me do a complete Rebol app I would do that. : ) |
BrianH 9-Sep-2008 [331x2] | Express 2008 came out last month, even the advanced versions. I have used the client-side tools and they are nice, and have read good things about the server-side improvements. The new report generation tool is purported to have its UI based on the Access 2007 style, though I haven't played with it yet. |
I can say without hesitation that the Access 2007 user interface is drastically better (though its engine needs replacing). | |
james_nak 10-Sep-2008 [333] | Thanks and this project is pretty basic. It's more along the lines of a task management system. Right now they do it with some fairly bulky spreadsheets. Thanks for the tip. |
sqlab 11-Sep-2008 [334] | Graham, you use the wrapper like this do %odbc-lib.r db: sql/open "DSN" "user" "pass" sql/exec db "select * from your_table" while [not empty? row: sql/fetch db] [probe row] sql/close db I used my own routines of calling the odbc.dll, because of some glitches with RT's implementation and some databases. |
Graham 11-Sep-2008 [335] | Interesting. And this works on Linux as well? |
sqlab 11-Sep-2008 [336] | I never tried it, but I sent it to someone and he wrote, that it was working. Of course you have to load .so instead of .dll. |
Anton 16-Sep-2008 [337] | Accessing ODBC data sources with Core and View http://anton.wildit.net.au/rebol/doc/translated/AccessODBC/odbcsockserv_english.html |
GiuseppeC 20-Sep-2008 [338] | I have linked the Article in R2 Wiki but the link to Gavin F.McKenzie parse http://www3.sympatico.ca/gavinis not working. |
PeterWood 20-Sep-2008 [339] | I think you'll find it here http://www.rebol.org/view-script.r?script=xml-parse.r&sid=ij461ww |
GiuseppeC 25-Sep-2008 [340] | The original article should be fixed and the link changed. |
Graham 25-Sep-2008 [341] | sqlab - any luck finding your odbc-lib.r ? |
sqlab 26-Sep-2008 [342] | I sent it already to James_Nak two weeks ago. Since then it did not hear anything |
Graham 26-Sep-2008 [343x2] | Would you send me a copy too? |
I've been using WINE to get ODBC working on Linux .. not very satisfactory due to WINE bugs. | |
sqlab 26-Sep-2008 [345] | It's on the way to you. But there are some years gone, since I used it the last time. |
Graham 26-Sep-2008 [346] | Thanks |
james_nak 26-Sep-2008 [347x2] | Yes, sqlab and Graham, I haven't had the chance to start my testing. I have to wait for weekends and the last two have been swamped. |
Sqlab, OK, I gave your odbc-lib a shot. So far so good. Thanks. I'll be doing some more testing over the weekend. If you know of any quirks, please let me know. I'm pretty much an "insert" and "Select" SQL guy so it should be fine. Thanks again. | |
older newer | first last |