DBXTalk > OpenDBX > MySQL and OSX Lion : working on 2.0
I've been struggling to get the whole thing to work in Pharo 2.0 So, here are some pointers: I am using Xcode 4.6.3 with command line tools installed. I used the MySQL 32-bit client: mysql-connector-c-6.1.0-osx10.7-x86.dmg I used opendbx stable-1.4 To compile OpenDBX itself in 32 bits mode and all, here is the script I used. [PhilMac:~/Documents/Smalltalk/2-MyWorkspaces/workspaceOpenDbx philippeback$] cat compileopendbxosx.sh PATH=/Applications/Xcode.app/Contents/Developer/usr/bin:${PATH} echo `which ld` CPPFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CXXFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ LDFLAGS="-m32 -L/usr/local/lib -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib -lmysqlclient" \ ./configure --with-backends="mysql" --disable-utils LDFLAGS="-m32 -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib" make make install Now, I had to copy the libraries of the mysql client into /usr/local/lib/ The client libraries were in /usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib (you can ln -s them if you do not want to copy). To test that things were okay, I created the sodbxtest user, database, and all in MySQL. Then let's make sure we can use that one: mysql -usodbxtest -psodbxtest sodbxtest And then went to stable-1.4/test and issued: ./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest Which should work. You can open the MySQL Workbench Admin tab > server status tab and see the commands issued. I had to do a symlink in: : /usr/local/pharo/bin/pharo-vm/Pharo.app/Contents/MacOS/Plugins/ (where I have my pharo vm installed) so that: libopendbx.dylib was pointing to /usr/local/lib/libopendbx.dylib Then, start the image where you have loaded the OpenDBXDriver configuration and run the tests. You can get the configuration from the World menu > Configurations OpenDBXDriver (GuillermoPolito.20) I installed the configuration and then did: (ConfigurationOfOpenDBXDriver project version: #stable) load. All tests for the MySQL backend turned up green. Maybe someone can put the above things in the right sections on the DBXTalk site, I didn't got enough info for the OSX version. Next step is to try to get GLORP running, not sure I'll go that route. Phil
Thanks! I updated the tutorial with your info :). On Sun, Jul 28, 2013 at 9:49 PM, phil@highoctane.be <phil@highoctane.be>wrote:
I've been struggling to get the whole thing to work in Pharo 2.0
So, here are some pointers:
I am using Xcode 4.6.3 with command line tools installed.
I used the MySQL 32-bit client: mysql-connector-c-6.1.0-osx10.7-x86.dmg
I used opendbx stable-1.4
To compile OpenDBX itself in 32 bits mode and all, here is the script I used.
[PhilMac:~/Documents/Smalltalk/2-MyWorkspaces/workspaceOpenDbx philippeback$] cat compileopendbxosx.sh
PATH=/Applications/Xcode.app/Contents/Developer/usr/bin:${PATH} echo `which ld` CPPFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CXXFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ LDFLAGS="-m32 -L/usr/local/lib -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib -lmysqlclient" \ ./configure --with-backends="mysql" --disable-utils LDFLAGS="-m32 -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib" make make install
Now, I had to copy the libraries of the mysql client into /usr/local/lib/
The client libraries were in /usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib
(you can ln -s them if you do not want to copy).
To test that things were okay, I created the sodbxtest user, database, and all in MySQL. Then let's make sure we can use that one:
mysql -usodbxtest -psodbxtest sodbxtest
And then went to stable-1.4/test and issued:
./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest
Which should work.
You can open the MySQL Workbench Admin tab > server status tab and see the commands issued.
I had to do a symlink in: : /usr/local/pharo/bin/pharo-vm/Pharo.app/Contents/MacOS/Plugins/
(where I have my pharo vm installed)
so that:
libopendbx.dylib was pointing to /usr/local/lib/libopendbx.dylib
Then, start the image where you have loaded the OpenDBXDriver configuration and run the tests.
You can get the configuration from the World menu > Configurations
OpenDBXDriver (GuillermoPolito.20)
I installed the configuration and then did:
(ConfigurationOfOpenDBXDriver project version: #stable) load.
All tests for the MySQL backend turned up green.
Maybe someone can put the above things in the right sections on the DBXTalk site, I didn't got enough info for the OSX version.
Next step is to try to get GLORP running, not sure I'll go that route.
Phil
Thanks! Once (when the project was still named squeakDBX) we used to have a tutorial (step by step) for each combination of OS and database (ok, not for all of them, but for most). But we kind of lost the image and we couldn't recover that. Anyway, it's time to start building that again. Thanks! On Mon, Jul 29, 2013 at 6:09 AM, Guillermo Polito <guillermopolito@gmail.com
wrote:
Thanks! I updated the tutorial with your info :).
On Sun, Jul 28, 2013 at 9:49 PM, phil@highoctane.be <phil@highoctane.be>wrote:
I've been struggling to get the whole thing to work in Pharo 2.0
So, here are some pointers:
I am using Xcode 4.6.3 with command line tools installed.
I used the MySQL 32-bit client: mysql-connector-c-6.1.0-osx10.7-x86.dmg
I used opendbx stable-1.4
To compile OpenDBX itself in 32 bits mode and all, here is the script I used.
[PhilMac:~/Documents/Smalltalk/2-MyWorkspaces/workspaceOpenDbx philippeback$] cat compileopendbxosx.sh
PATH=/Applications/Xcode.app/Contents/Developer/usr/bin:${PATH} echo `which ld` CPPFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CXXFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ LDFLAGS="-m32 -L/usr/local/lib -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib -lmysqlclient" \ ./configure --with-backends="mysql" --disable-utils LDFLAGS="-m32 -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib" make make install
Now, I had to copy the libraries of the mysql client into /usr/local/lib/
The client libraries were in /usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib
(you can ln -s them if you do not want to copy).
To test that things were okay, I created the sodbxtest user, database, and all in MySQL. Then let's make sure we can use that one:
mysql -usodbxtest -psodbxtest sodbxtest
And then went to stable-1.4/test and issued:
./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest
Which should work.
You can open the MySQL Workbench Admin tab > server status tab and see the commands issued.
I had to do a symlink in: : /usr/local/pharo/bin/pharo-vm/Pharo.app/Contents/MacOS/Plugins/
(where I have my pharo vm installed)
so that:
libopendbx.dylib was pointing to /usr/local/lib/libopendbx.dylib
Then, start the image where you have loaded the OpenDBXDriver configuration and run the tests.
You can get the configuration from the World menu > Configurations
OpenDBXDriver (GuillermoPolito.20)
I installed the configuration and then did:
(ConfigurationOfOpenDBXDriver project version: #stable) load.
All tests for the MySQL backend turned up green.
Maybe someone can put the above things in the right sections on the DBXTalk site, I didn't got enough info for the OSX version.
Next step is to try to get GLORP running, not sure I'll go that route.
Phil
-- Mariano http://marianopeck.wordpress.com
I would love to have a doc for the Pharo for The Entreprise book. Stef On Jul 29, 2013, at 2:22 PM, Mariano Martinez Peck <marianopeck@gmail.com> wrote:
Thanks! Once (when the project was still named squeakDBX) we used to have a tutorial (step by step) for each combination of OS and database (ok, not for all of them, but for most). But we kind of lost the image and we couldn't recover that. Anyway, it's time to start building that again.
Thanks!
On Mon, Jul 29, 2013 at 6:09 AM, Guillermo Polito <guillermopolito@gmail.com> wrote: Thanks! I updated the tutorial with your info :).
On Sun, Jul 28, 2013 at 9:49 PM, phil@highoctane.be <phil@highoctane.be> wrote: I've been struggling to get the whole thing to work in Pharo 2.0
So, here are some pointers:
I am using Xcode 4.6.3 with command line tools installed.
I used the MySQL 32-bit client: mysql-connector-c-6.1.0-osx10.7-x86.dmg
I used opendbx stable-1.4
To compile OpenDBX itself in 32 bits mode and all, here is the script I used.
[PhilMac:~/Documents/Smalltalk/2-MyWorkspaces/workspaceOpenDbx philippeback$] cat compileopendbxosx.sh
PATH=/Applications/Xcode.app/Contents/Developer/usr/bin:${PATH} echo `which ld` CPPFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CXXFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ LDFLAGS="-m32 -L/usr/local/lib -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib -lmysqlclient" \ ./configure --with-backends="mysql" --disable-utils LDFLAGS="-m32 -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib" make make install
Now, I had to copy the libraries of the mysql client into /usr/local/lib/
The client libraries were in /usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib
(you can ln -s them if you do not want to copy).
To test that things were okay, I created the sodbxtest user, database, and all in MySQL. Then let's make sure we can use that one:
mysql -usodbxtest -psodbxtest sodbxtest
And then went to stable-1.4/test and issued:
./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest
Which should work.
You can open the MySQL Workbench Admin tab > server status tab and see the commands issued.
I had to do a symlink in: : /usr/local/pharo/bin/pharo-vm/Pharo.app/Contents/MacOS/Plugins/
(where I have my pharo vm installed)
so that:
libopendbx.dylib was pointing to /usr/local/lib/libopendbx.dylib
Then, start the image where you have loaded the OpenDBXDriver configuration and run the tests.
You can get the configuration from the World menu > Configurations
OpenDBXDriver (GuillermoPolito.20)
I installed the configuration and then did:
(ConfigurationOfOpenDBXDriver project version: #stable) load.
All tests for the MySQL backend turned up green.
Maybe someone can put the above things in the right sections on the DBXTalk site, I didn't got enough info for the OSX version.
Next step is to try to get GLORP running, not sure I'll go that route.
Phil
-- Mariano http://marianopeck.wordpress.com
Ok. I commit to write about that during august. Phil On Monday, July 29, 2013, Stéphane Ducasse <stephane.ducasse@inria.fr> wrote:
I would love to have a doc for the Pharo for The Entreprise book. Stef On Jul 29, 2013, at 2:22 PM, Mariano Martinez Peck <marianopeck@gmail.com> wrote:
Thanks! Once (when the project was still named squeakDBX) we used to have a tutorial (step by step) for each combination of OS and database (ok, not for all of them, but for most). But we kind of lost the image and we couldn't recover that. Anyway, it's time to start building that again. Thanks!
On Mon, Jul 29, 2013 at 6:09 AM, Guillermo Polito < guillermopolito@gmail.com> wrote:
Thanks! I updated the tutorial with your info :).
On Sun, Jul 28, 2013 at 9:49 PM, phil@highoctane.be <phil@highoctane.be> wrote:
I've been struggling to get the whole thing to work in Pharo 2.0 So, here are some pointers: I am using Xcode 4.6.3 with command line tools installed. I used the MySQL 32-bit client: mysql-connector-c-6.1.0-osx10.7-x86.dmg I used opendbx stable-1.4
To compile OpenDBX itself in 32 bits mode and all, here is the script I used.
[PhilMac:~/Documents/Smalltalk/2-MyWorkspaces/workspaceOpenDbx philippeback$] cat compileopendbxosx.sh PATH=/Applications/Xcode.app/Contents/Developer/usr/bin:${PATH} echo `which ld` CPPFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CXXFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ CFLAGS="-m32 -I/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/include" \ LDFLAGS="-m32 -L/usr/local/lib -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib -lmysqlclient" \ ./configure --with-backends="mysql" --disable-utils LDFLAGS="-m32 -L/usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib" make make install Now, I had to copy the libraries of the mysql client into /usr/local/lib/ The client libraries were in /usr/local/mysql-connector-c-6.1.0-osx10.7-x86/lib (you can ln -s them if you do not want to copy). To test that things were okay, I created the sodbxtest user, database, and all in MySQL. Then let's make sure we can use that one: mysql -usodbxtest -psodbxtest sodbxtest
And then went to stable-1.4/test and issued: ./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest
Which should work. You can open the MySQL Workbench Admin tab > server status tab and see the commands issued. I had to do a symlink in: : /usr/local/pharo/bin/pharo-vm/Pharo.app/Contents/MacOS/Plugins/
(where I have my pharo vm installed) so that: libopendbx.dylib was pointing to /usr/local/lib/libopendbx.dylib Then, start the image where you have loaded the OpenDBXDriver configuration and run the tests. You can get the configuration from the World menu > Configurations OpenDBXDriver (GuillermoPolito.20) I installed the configuration and then did: (ConfigurationOfOpenDBXDriver project version: #stable) load. All tests for the MySQL backend turned up green. Maybe someone can put the above things in the right sections on the DBXTalk site, I didn't got enough info for the OSX version. Next step is to try to get GLORP running, not sure I'll go that route. Phil
-- --- Philippe Back Dramatic Performance Improvements Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail:phil@highoctane.be | Web: http://philippeback.eu Blog: http://philippeback.be | Twitter: @philippeback Youtube: http://www.youtube.com/user/philippeback/videos High Octane SPRL rue cour Boisacq 101 | 1301 Bierges | Belgium Featured on the Software Process and Measurement Cast http://spamcast.libsyn.com Sparx Systems Enterprise Architect and Ability Engineering EADocX Value Added Reseller
Hello Following Phil's post I could get it working till here. mysql -usodbxtest -psodbxtest sodbxtest When I enter ./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest from stable-1.4/test I get following ODBX_CAP_BASIC: 1 ODBX_CAP_LO: 0 ODBX_OPT_API_VERSION: 10200 ODBX_OPT_THREAD_SAFE: 1 ODBX_OPT_TLS: 1 ODBX_OPT_CONNECT_TIMEOUT: 1 (using) ODBX_OPT_MULTI_STATEMENTS: 1 (using) ODBX_OPT_PAGED_RESULTS: 1 (using) ODBX_OPT_COMPRESS: 1 (using) ODBX_CAP_BASIC: 1 ODBX_CAP_LO: 0 ODBX_OPT_API_VERSION: 10200 ODBX_OPT_THREAD_SAFE: 1 ODBX_OPT_TLS: 1 ODBX_OPT_CONNECT_TIMEOUT: 1 (using) ODBX_OPT_MULTI_STATEMENTS: 1 (using) ODBX_OPT_PAGED_RESULTS: 1 (using) ODBX_OPT_COMPRESS: 1 (using) Segmentation fault: 11 Any ideas what am I missing. Thanks, Harshit -- View this message in context: http://forum.world.st/Pharo-dev-DBXTalk-OpenDBX-MySQL-and-OSX-Lion-working-o... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
Hello, It will be really helpful if someone can comment on that, as I am not able to proceed. Thanks, Harshit ________________________________________ From: Pharo-dev [pharo-dev-bounces@lists.pharo.org] on behalf of harshit [hdokani2@illinois.edu] Sent: Thursday, July 10, 2014 7:37 PM To: pharo-dev@lists.pharo.org Subject: Re: [Pharo-dev] DBXTalk > OpenDBX > MySQL and OSX Lion : working on 2.0 Hello Following Phil's post I could get it working till here. mysql -usodbxtest -psodbxtest sodbxtest When I enter ./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest from stable-1.4/test I get following ODBX_CAP_BASIC: 1 ODBX_CAP_LO: 0 ODBX_OPT_API_VERSION: 10200 ODBX_OPT_THREAD_SAFE: 1 ODBX_OPT_TLS: 1 ODBX_OPT_CONNECT_TIMEOUT: 1 (using) ODBX_OPT_MULTI_STATEMENTS: 1 (using) ODBX_OPT_PAGED_RESULTS: 1 (using) ODBX_OPT_COMPRESS: 1 (using) ODBX_CAP_BASIC: 1 ODBX_CAP_LO: 0 ODBX_OPT_API_VERSION: 10200 ODBX_OPT_THREAD_SAFE: 1 ODBX_OPT_TLS: 1 ODBX_OPT_CONNECT_TIMEOUT: 1 (using) ODBX_OPT_MULTI_STATEMENTS: 1 (using) ODBX_OPT_PAGED_RESULTS: 1 (using) ODBX_OPT_COMPRESS: 1 (using) Segmentation fault: 11 Any ideas what am I missing. Thanks, Harshit -- View this message in context: http://forum.world.st/Pharo-dev-DBXTalk-OpenDBX-MySQL-and-OSX-Lion-working-o... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
It complied on Lion with thr config above. Now if you could do a build with -g and look at why you segfault with gdb we could tell more. Phil On Friday, July 11, 2014, Dokania, Harshit <hdokani2@illinois.edu> wrote:
Hello,
It will be really helpful if someone can comment on that, as I am not able to proceed.
Thanks, Harshit ________________________________________ From: Pharo-dev [pharo-dev-bounces@lists.pharo.org <javascript:;>] on behalf of harshit [hdokani2@illinois.edu <javascript:;>] Sent: Thursday, July 10, 2014 7:37 PM To: pharo-dev@lists.pharo.org <javascript:;> Subject: Re: [Pharo-dev] DBXTalk > OpenDBX > MySQL and OSX Lion : working on 2.0
Hello
Following Phil's post I could get it working till here. mysql -usodbxtest -psodbxtest sodbxtest
When I enter ./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest from stable-1.4/test I get following ODBX_CAP_BASIC: 1 ODBX_CAP_LO: 0 ODBX_OPT_API_VERSION: 10200 ODBX_OPT_THREAD_SAFE: 1 ODBX_OPT_TLS: 1 ODBX_OPT_CONNECT_TIMEOUT: 1 (using) ODBX_OPT_MULTI_STATEMENTS: 1 (using) ODBX_OPT_PAGED_RESULTS: 1 (using) ODBX_OPT_COMPRESS: 1 (using) ODBX_CAP_BASIC: 1 ODBX_CAP_LO: 0 ODBX_OPT_API_VERSION: 10200 ODBX_OPT_THREAD_SAFE: 1 ODBX_OPT_TLS: 1 ODBX_OPT_CONNECT_TIMEOUT: 1 (using) ODBX_OPT_MULTI_STATEMENTS: 1 (using) ODBX_OPT_PAGED_RESULTS: 1 (using) ODBX_OPT_COMPRESS: 1 (using) Segmentation fault: 11
Any ideas what am I missing.
Thanks, Harshit
-- View this message in context: http://forum.world.st/Pharo-dev-DBXTalk-OpenDBX-MySQL-and-OSX-Lion-working-o... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
-- --- Philippe Back Visible Performance Improvements Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail:phil@highoctane.be | Web: http://philippeback.eu Blog: http://philippeback.be | Twitter: @philippeback Youtube: http://www.youtube.com/user/philippeback/videos High Octane SPRL rue cour Boisacq 101 | 1301 Bierges | Belgium Pharo Consortium Member - http://consortium.pharo.org/ Featured on the Software Process and Measurement Cast - http://spamcast.libsyn.com Sparx Systems Enterprise Architect and Ability Engineering EADocX Value Added Reseller
Thanks for your reply. I was not sure where to use "-g" option, I tried using ./odbxtest -g -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest. But that didn't work. Harshit ________________________________________ From: Pharo-dev [pharo-dev-bounces@lists.pharo.org] on behalf of phil@highoctane.be [phil@highoctane.be] Sent: Friday, July 11, 2014 12:19 PM To: Pharo Development List Subject: Re: [Pharo-dev] DBXTalk > OpenDBX > MySQL and OSX Lion : working on 2.0 It complied on Lion with thr config above. Now if you could do a build with -g and look at why you segfault with gdb we could tell more. Phil On Friday, July 11, 2014, Dokania, Harshit <hdokani2@illinois.edu<mailto:hdokani2@illinois.edu>> wrote: Hello, It will be really helpful if someone can comment on that, as I am not able to proceed. Thanks, Harshit ________________________________________ From: Pharo-dev [pharo-dev-bounces@lists.pharo.org] on behalf of harshit [hdokani2@illinois.edu] Sent: Thursday, July 10, 2014 7:37 PM To: pharo-dev@lists.pharo.org Subject: Re: [Pharo-dev] DBXTalk > OpenDBX > MySQL and OSX Lion : working on 2.0 Hello Following Phil's post I could get it working till here. mysql -usodbxtest -psodbxtest sodbxtest When I enter ./odbxtest -b mysql -h localhost -p 3306 -d sodbxtest -u sodbxtest -w sodbxtest from stable-1.4/test I get following ODBX_CAP_BASIC: 1 ODBX_CAP_LO: 0 ODBX_OPT_API_VERSION: 10200 ODBX_OPT_THREAD_SAFE: 1 ODBX_OPT_TLS: 1 ODBX_OPT_CONNECT_TIMEOUT: 1 (using) ODBX_OPT_MULTI_STATEMENTS: 1 (using) ODBX_OPT_PAGED_RESULTS: 1 (using) ODBX_OPT_COMPRESS: 1 (using) ODBX_CAP_BASIC: 1 ODBX_CAP_LO: 0 ODBX_OPT_API_VERSION: 10200 ODBX_OPT_THREAD_SAFE: 1 ODBX_OPT_TLS: 1 ODBX_OPT_CONNECT_TIMEOUT: 1 (using) ODBX_OPT_MULTI_STATEMENTS: 1 (using) ODBX_OPT_PAGED_RESULTS: 1 (using) ODBX_OPT_COMPRESS: 1 (using) Segmentation fault: 11 Any ideas what am I missing. Thanks, Harshit -- View this message in context: http://forum.world.st/Pharo-dev-DBXTalk-OpenDBX-MySQL-and-OSX-Lion-working-o... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com. -- --- Philippe Back Visible Performance Improvements Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail:phil@highoctane.be<mailto:Mail%3Aphil@highoctane.be> | Web: http://philippeback.eu Blog: http://philippeback.be | Twitter: @philippeback Youtube: http://www.youtube.com/user/philippeback/videos High Octane SPRL rue cour Boisacq 101 | 1301 Bierges | Belgium Pharo Consortium Member - http://consortium.pharo.org/ Featured on the Software Process and Measurement Cast - http://spamcast.libsyn.com Sparx Systems Enterprise Architect and Ability Engineering EADocX Value Added Reseller
participants (6)
-
Dokania, Harshit -
Guillermo Polito -
harshit -
Mariano Martinez Peck -
phil@highoctane.be -
Stéphane Ducasse