Re: [Pharo-users] Block/Brick

2019-06-03 Thread Steve Quezadas
Glenn, Thank you for your response. Ok, so you can browse examples by inspecting the class? Which classes do you mean because I can't seem to find any ones with examples. For example, here: https://steverstuff.s3.amazonaws.com/pharo2.png I can't find the examples tag! Maybe I am looking in the

Re: [Pharo-users] ODBCDriver

2019-06-03 Thread Tomaž Turk
I see - thanks! Best wishes, Tomaz -- Original Message -- From: "Julián Maestri" To: "Tomaž Turk" ; "Any question about pharo is welcome" Sent: 3.6.2019 16:03:25 Subject: Re: [Pharo-users] ODBCDriver As far as I know, he just started porting it to Pharo 7. On Sun, Jun 2, 2019,

Re: [Pharo-users] Find after in strings?

2019-06-03 Thread Tim Mackinnon
Would it be really bad to use the deprecation feature in Pharo to gently migrate to a more common name in stream? There are 101 senders of match: (in my P7 image - presumably some of them my usage), and a lot of them actually referring to string regex match:. Its big but not immense. #match:

Re: [Pharo-users] Find after in strings?

2019-06-03 Thread Sven Van Caekenberghe
To each his own opinion, #match: is not that bad a name, IMHO. There is much more bloat than the mixing of reading and writing. The concept of being positionable is bad too: it makes no sense for network and other non-collection backed streams. There is also all the binary, encoding and

Re: [Pharo-users] ODBCDriver

2019-06-03 Thread Julián Maestri
As far as I know, he just started porting it to Pharo 7. On Sun, Jun 2, 2019, 13:51 Tomaž Turk wrote: > I just found this marvel: https://github.com/apiorno/ODBCDriver. > > But when I try to > > | con | > con := ODBCConnection dsn:'myDSN' user:'usr' password:'pwd'. > > it responds with an error