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

2019-06-02 Thread Richard O'Keefe
The issue is that #skipToAll: is the de facto standard name for the operation EXCEPT in Squeak and Pharo. It's not that an alias should be added. What should *really* be done is that #match: should be *renamed* to #skipToAll:. This will - improve compatibility - reduce confusion - improve nav

[Pharo-users] ODBCDriver

2019-06-02 Thread Tomaž Turk
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 "Instance of ODBCLibrary class did not understand #sqlAllocEnv": running on Win 10 and Pharo 7.0.3. I'd apprecia

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

2019-06-02 Thread Sven Van Caekenberghe
Why add an alias ? The API is too wide as it is already. Note that most current implementations of #upToAll: already use words like match, so #match: is not that crazy. Yes it should be possible to talk about naming, but just adding aliases, no. My opinion, of course. > On 2 Jun 2019, at 04:33