[Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Todd Blanchard via Pharo-users
--- Begin Message --- I loaded GLORP+P3 without issue. Trying to load SQLite3 - it also wants to load GLORP which complains of conflict. For P3 I used: Metacello new baseline: 'P3'; repository: 'github://svenvc/P3'; load: 'glorp'. For SQLite: Metacello new repository: 'gith

Re: [Pharo-users] String concatenation vs. Stream

2019-10-19 Thread Norbert Hartl
> Am 18.10.2019 um 11:33 schrieb Kasper Østerbye : > > On 18 October 2019 at 08.00.13, Richard O'Keefe (rao...@gmail.com > ) wrote: >> When is it pointless to introduce a WriteStream and just use #, ? >> When #, would not be in a loop or recursion. >> Constructing err

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Sven Van Caekenberghe
Hi Todd, Both specify their dependency on Glorp almost the same way: P3: spec baseline: 'Glorp' with: [ spec repository: 'github://pharo-rdbms/glorp:master/']. Sqlite3: spec baseline: 'Glorp' with: [ spec repository: 'github://pharo-rdbms/glorp' ]. What exactly is the conflict ? Sven > On

[Pharo-users] Pillar in-image rendering (was: String concatenation vs. Stream)

2019-10-19 Thread Kasper Østerbye
On 19 October 2019 at 10.51.53, Norbert Hartl (norb...@hartl.name) wrote: Am 18.10.2019 um 11:33 schrieb Kasper Østerbye : I am working on a pillar to `Text` generator. Here I found concatenation to be simpler to handle as I can add bold, italics, indentation, etc. in a much simpler way. To use a

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Pavel Krivanek
Btw. there exists an updated version of Glorp: github://pavel-krivanek/glorp:8.3.1-23-baseline But the compatibility of it with SQLite was never tested -- Pavel so 19. 10. 2019 v 10:27 odesílatel Todd Blanchard via Pharo-users < pharo-users@lists.pharo.org> napsal: > I loaded GLORP+P3 without is

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Todd Blanchard via Pharo-users
--- Begin Message --- I should probably mention that I do not really have a great handle on how package configurations work these days. Coming back to Smalltalk after a long time away. Pointer to an explanation of how package configurations work would be great. --- End Message ---

[Pharo-users] [ANN] HeySql v1.1

2019-10-19 Thread Petter
Hi, I have just released HeySql, version 1.1 - a database orm for Postgresql. - Support for migrations - Generation of migration templates based on classes - Models can now be subclassed - Updated license to MIT - Updated docs - Some minor stuff https://github.com/pegesund/heysql Petter -- Se

Re: [Pharo-users] New to Pharo. "Could not coerce arguments" (Problem with character encoding?) + Learning resources?

2019-10-19 Thread Christopher Fuhrman
Hello, On Sat, 19 Oct 2019 at 09:45, M O wrote: > I’m new to Pharo, and generally, in programming. I decided that my first > programming language is going to be Pharo. However I have encountered some > issues when I was exploring some examples. I don’t want them to bother me > later, so I’d like

Re: [Pharo-users] Import a pharo 6 image in pharo 7

2019-10-19 Thread Oswall Verny Arguedas C.
Thanks Sean and Sven I'm going to investigate Ston and Fuel to do it. I also thought about passing the data to CouchDB (document database) and then accessing from a clean Pharo 7 with Seaside and Bootstrap. How do you think the status of the drivers for Pharo for CouchDB is currently. I used it fo

Re: [Pharo-users] Import a pharo 6 image in pharo 7

2019-10-19 Thread Alejandro Infante
I wouldn’t recommend Mongo for this use because it doesn’t automagically resolve cycles, so you would have to do a lot of work in order to serialize the data. I agree with the previous suggestions and use Fuel or STON. Cheers, Alejandro > On Oct 19, 2019, at 4:16 PM, Oswall Verny Arguedas C.

Re: [Pharo-users] Import a pharo 6 image in pharo 7

2019-10-19 Thread Sean P. DeNigris
Alejandro Infante wrote > I agree with the previous suggestions and use Fuel or STON. +1. Either of these methods is pretty much a one-liner. The main hiccup with Fuel is installing the same Fuel version in both the source and target images. - Cheers, Sean -- Sent from: http://forum.world.s

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Pierce Ng
On Sat, Oct 19, 2019 at 01:26:10AM -0700, Todd Blanchard via Pharo-users wrote: > I loaded GLORP+P3 without issue. > Trying to load SQLite3 - it also wants to load GLORP which complains of > conflict. Todd, to load SQLite3 only: Metacello new repository: 'github://astares/Pharo-UDBC/src';