Hello, I am just yes fighting is the right word through the Netbeans 6.0 for RoR guidance: [quote]1.gem install mysql 2.Choose the win32 build. 3.Install MySQL and put its /bin directory on your path.[/quote] did the first 2 steps but what means step 3 ??? Your path? What is my path and which path? The connection to the MySQL database is also not working, why? what do i wrong? Please help :) [img]http://img153.imageshack.us/img153/9611/test1ro5.gif[/img] I get that exception? [img]http://img86.imageshack.us/img86/8841/test2rm4.gif[/img] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Greg Donald
2007-Dec-04 23:14 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
On Dec 4, 2007 2:59 PM, Pel <Liquidc4D-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> 3.Install MySQL and put its /bin directory on your path.[/quote] > did the first 2 steps but what means step 3 ???To find if mysql is already in your path do: which mysql If you get nothing, then it''s not. To find it by searching the whole system you can run the find command: find / -type f -name mysql -print Mine shows up as /usr/bin/mysql for example.> Your path? What is my path and which path?Assuming bash.. To see your current PATH environment variable: echo $PATH To add to your path you do export PATH="/path/to/your/mysql/bin:$PATH" -- Greg Donald http://destiney.com/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Pel is using Windows. Right click on my computer, properties, environment variables, path. On Dec 5, 2007 9:44 AM, Greg Donald <gdonald-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > On Dec 4, 2007 2:59 PM, Pel <Liquidc4D-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > 3.Install MySQL and put its /bin directory on your path.[/quote] > > did the first 2 steps but what means step 3 ??? > > To find if mysql is already in your path do: > > which mysql > > If you get nothing, then it''s not. > > To find it by searching the whole system you can run the find command: > > find / -type f -name mysql -print > > Mine shows up as /usr/bin/mysql for example. > > > Your path? What is my path and which path? > > Assuming bash.. > > To see your current PATH environment variable: > > echo $PATH > > To add to your path you do > > export PATH="/path/to/your/mysql/bin:$PATH" > > > -- > Greg Donald > http://destiney.com/ > > > >-- Ryan Bigg --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Oops, I was wrong. Pel, you don''t need to follow the instructions at the top of the database.yml. As long as mysql is running as a service on your box you should be able to get to it. Try typing mysql into a command prompt window or go to c:\program files\mysql\bin\ and type mysql there. If you can''t log in it means mysql is not running. On Dec 5, 2007 9:57 AM, Ryan <radarlistener-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Pel is using Windows. > > Right click on my computer, properties, environment variables, path. > > > On Dec 5, 2007 9:44 AM, Greg Donald <gdonald-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote: > > > > > On Dec 4, 2007 2:59 PM, Pel < Liquidc4D-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > > 3.Install MySQL and put its /bin directory on your path.[/quote] > > > did the first 2 steps but what means step 3 ??? > > > > To find if mysql is already in your path do: > > > > which mysql > > > > If you get nothing, then it''s not. > > > > To find it by searching the whole system you can run the find command: > > > > find / -type f -name mysql -print > > > > Mine shows up as /usr/bin/mysql for example. > > > > > Your path? What is my path and which path? > > > > Assuming bash.. > > > > To see your current PATH environment variable: > > > > echo $PATH > > > > To add to your path you do > > > > export PATH="/path/to/your/mysql/bin:$PATH" > > > > > > -- > > Greg Donald > > http://destiney.com/ > > > > > > > > > > > -- > Ryan Bigg-- Ryan Bigg --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> Pel, you don''t need to follow the instructions at the top of the > database.yml. As long as mysql is running as a service on your box you > should be able to get to it. > > Try typing mysql into a command prompt window or go to c:\program > files\mysql\bin\ and type mysql there. If you can''t log in it means mysql is > not running.the path c:\program files\mysql\bin\ does not exist so which path must I add to the environment variable? How can i start the mysql server without going to the command prompt for example from within the Netbeans IDE ? looks this image is from 2 days ago when i installed netbeans and the mysql driver with "gem install mysql" so mysql should be installed - where i dont know- but how can i start it and is mysql a system service? i thought its a driver... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
thats the mysql image i forgot above to paste... http://666kb.com/i/au3w8t0x4lplm6tb8.gif --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
thats the mysql image i forgot above to paste... http://666kb.com/i/au3w8t0x4lplm6tb8.gif --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I have now downloaded this: http://dev.mysql.com/downloads/mysql/5.0.html#win32 and extraced to c:/mysql is that ok? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I have now downloaded this: http://dev.mysql.com/downloads/mysql/5.0.html#win32 and extraced to c:/mysql is that ok? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I have now downloaded this: http://dev.mysql.com/downloads/mysql/5.0.html#win32 and extraced to c:/mysql is that ok? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Ryan Bigg
2007-Dec-05 22:53 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
Why did you keep posting the same thing? Please refrain from doing that in the future. Ok, if you''ve extracted it to c:/mysql you should now have mysql installed try typing "mysql" in the command prompt and see what comes up. I thought you would''ve had mysql installed. You shouldn''t need the mysql gem. The mysql service should be running automatically if that''s what you selected in your mysql setup. On Dec 6, 2007 7:16 AM, Pel <Liquidc4D-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> > I have now downloaded this: > http://dev.mysql.com/downloads/mysql/5.0.html#win32 > > and extraced to c:/mysql is that ok? > > >-- Ryan Bigg --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Walter Lockhart
2007-Dec-05 23:02 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
For an easy life, download and install InstantRails: http://rubyforge.org/projects/instantrails/ then point NetBeans to InstantRails. Let me know how it goes. Regards Walter On Dec 4, 8:59 pm, Pel <Liquid...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> Hello, > > I am just yes fighting is the right word through the Netbeans 6.0 for > RoR guidance: > > [quote]1.gem install mysql > 2.Choose the win32 build. > 3.Install MySQL and put its /bin directory on your path.[/quote] > did the first 2 steps but what means step 3 ??? > > Your path? What is my path and which path? > > The connection to the MySQL database is also not working, why? what do > i wrong? Please help :) > > [img]http://img153.imageshack.us/img153/9611/test1ro5.gif[/img] > > I get that exception? > > [img]http://img86.imageshack.us/img86/8841/test2rm4.gif[/img]--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
[quote]> http://rubyforge.org/projects/instantrails/ > > then point NetBeans to InstantRails. > > Let me know how it goes.[/quote]Instant Rails is no longer being maintained and has been replaced by the [BitNami RubyStack]. - and RubyStack is crap... because i dont have a GUI. [quote] Ok, if you''ve extracted it to c:/mysql you should now have mysql installed try typing "mysql" in the command prompt and see what comes up. I thought you would''ve had mysql installed. You shouldn''t need the mysql gem. The mysql service should be running automatically if that''s what you selected in your mysql setup. [/quote] I have extracted it to c:\mysql yes but that does not mean that mysql is installed right? Extracting an application does not mean it is installed in my understanding. i thought the mysql GEM is the connection between Netbeans and the mysql driver? run automactially? Where can i select that? I dont see any mysql setup, I just can enter "mysql" at the command prompt for some commands... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
[quote]> http://rubyforge.org/projects/instantrails/ > > then point NetBeans to InstantRails. > > Let me know how it goes.[/quote]Instant Rails is no longer being maintained and has been replaced by the [BitNami RubyStack]. - and RubyStack is crap... because i dont have a GUI. [quote] Ok, if you''ve extracted it to c:/mysql you should now have mysql installed try typing "mysql" in the command prompt and see what comes up. I thought you would''ve had mysql installed. You shouldn''t need the mysql gem. The mysql service should be running automatically if that''s what you selected in your mysql setup. [/quote] I have extracted it to c:\mysql yes but that does not mean that mysql is installed right? Extracting an application does not mean it is installed in my understanding. i thought the mysql GEM is the connection between Netbeans and the mysql driver? run automactially? Where can i select that? I dont see any mysql setup, I just can enter "mysql" at the command prompt for some commands... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
can i integrate mongrel server anyhow into my Netbeans IDE , because WEBrick seems outdated too? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
can i integrate mongrel server anyhow into my Netbeans IDE , because WEBrick seems outdated too? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Walter Lockhart
2007-Dec-06 07:53 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
Chill dude. Only trying to help. InstantRails is still available for download. It''s reasonably current (if not current). It works well. And it will get you out of the mess you seem to have got yourself into and have no idea of how you''re going to get out of. Ask yourself the question: how do you want to spend your life -- diagnosing how to integrate MySQL with Netbeans or writing Ruby on Rails applications. I suggest you choose the latter since you don''t even know where your ''Path'' is located. On Dec 6, 6:40 am, Pel <Liquid...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> [quote] > > >http://rubyforge.org/projects/instantrails/ > > > then point NetBeans to InstantRails. > > > Let me know how it goes.[/quote] > > Instant Rails is no longer being maintained and has been replaced by > the [BitNami RubyStack]. - and RubyStack is crap... because i dont > have a GUI. > > [quote] > Ok, if you''ve extracted it to c:/mysql you should now have mysql > installed > try typing "mysql" in the command prompt and see what comes up. I > thought > you would''ve had mysql installed. > > You shouldn''t need the mysql gem. > > The mysql service should be running automatically if that''s what you > selected in your mysql setup. [/quote] > > I have extracted it to c:\mysql yes but that does not mean that mysql > is installed right? Extracting an application does not mean it is > installed in my understanding. > > i thought the mysql GEM is the connection between Netbeans and the > mysql driver? > > run automactially? Where can i select that? I dont see any mysql > setup, I just can enter "mysql" at the command prompt for some > commands...--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Gianluca Tessarolo
2007-Dec-06 08:26 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
> can i integrate mongrel server anyhow into my Netbeans IDE , because > WEBrick seems outdated too? > > > > >Yes, you can, simply install mongrel gem... gem install mongrel And Netbeans will work with mongrel... (in my Linux workstation it works !!!) A little suggestion: set NetBeans 6 to work with native Ruby (instead of JRuby), so you can work with mysql and debug application too...) (Tools/Options/Ruby set Ruby interpreter...) Good luck ! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> Yes, you can, simply install mongrel gem... > > gem install mongrel > > And Netbeans will work with mongrel... (in my Linux workstation it works > !!!)I knew it somehow it would not work the first try as everything with ruby... look: [img]http://666kb.com/i/au4uvbtvctkbttpy1.gif[/img] is it possible at all to get a working ruby/rails/mongrel/mysql without instantrails ? whatever I do i get only error messages that makes me sick. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> Yes, you can, simply install mongrel gem... > > gem install mongrel > > And Netbeans will work with mongrel... (in my Linux workstation it works > !!!)I knew it somehow it would not work the first try as everything with ruby... look: [img]http://666kb.com/i/au4uvbtvctkbttpy1.gif[/img] is it possible at all to get a working ruby/rails/mongrel/mysql without instantrails ? whatever I do i get only error messages that makes me sick. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> Yes, you can, simply install mongrel gem... > > gem install mongrel > > And Netbeans will work with mongrel... (in my Linux workstation it works > !!!)I knew it somehow it would not work the first try as everything with ruby... look: [img]http://666kb.com/i/au4uvbtvctkbttpy1.gif[/img] is it possible at all to get a working ruby/rails/mongrel/mysql without instantrails ? whatever I do i get only error messages that makes me sick. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
When i need to install the fastthread dependeny why the heck do i have the choice to install the dependency or not? whatever i choose i get an error but thats ... no word for this! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
When i need to install the fastthread dependeny why the heck do i have the choice to install the dependency or not? whatever i choose i get an error but thats ... no word for this! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
sorry i dont know why some answers come twice this is not my intention! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
sorry i dont know why some answers come twice this is not my intention! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Gianluca Tessarolo
2007-Dec-06 13:32 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
One moment... I see the image with trhe given error. I think that for Windows you must install Win32 versions not ruby versions. If you try to install mongrel o fastthread ruby version the installer try to compile native extensions for Linux... So try to install mongrel and fastthread Win32 versions...> When i need to install the fastthread dependeny why the heck do i > have the choice to install the dependency or not? whatever i choose i > get an error but thats ... no word for this! > > > > >-- Gianluca Tessarolo TreNetMediaMaster S.r.l. The Internet Technology Company Telefono +39(049)776196 Fax +39(049)8087806 Visit us @: http://www.trenet.it - http://www.mediamaster.it e-mail me @: tessarolo.gianluca-6ZZdBs7hMehZp5Udy/Obhg@public.gmane.org ---------------------------------------------------------------------- Le informazioni trasmesse sono destinate esclusivamente alla persona o alla società in indirizzo e sono da intendersi confidenziali e riservate. Ogni trasmissione, inoltro, diffusione o altro uso di queste informazioni a persone o società differenti dal destinatario é proibita. Se ricevete questa comunicazione per errore, contattate il mittente e cancellate le informazioni da ogni computer. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
sorry i dont know why some answers come twice this is not my intention! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Netbeans lets you choose to use JRuby or your local Ruby executable. I''ve no experience of using JRuby and always tell it to use the local one. If you are using JRuby inside Netbeans you''ll need to install your gems and stuff there. 0. Install Ruby using the Windows installer - it will set up your path and so on. 1. The gem install installs the Ruby drivers for MySQL. It does nothing else. 2. Download the Windows installer for MySQL and run that. It will set up the windows service, edit your path and everything else. 3. I never bothered with Instant Rails - get Ruby installed from the Windows installer and then gems etc. then get rails. It''s all on google. 4. How are you installing fast thread? Are you doing it from inside a DOS window, where ruby and gems has been installed? If you''re using the JRuby inside Netbeans then I''ve no idea what you need to do but you probably need to go to the bin directory in a DOS window and run the command from there, or put that bin directory in your path. 5. Tell netbeans to use the native Ruby or you''ll have to install the gems twice, once for jruby and once for your normal ruby. HTH On Dec 6, 11:45 am, Pel <Liquid...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> When i need to install the fastthread dependeny why the heck do i > have the choice to install the dependency or not? whatever i choose i > get an error but thats ... no word for this!--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Is it possible to update the instantRails installation to the latest rails and ruby version? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Is it possible to update the instantRails installation to the latest rails and ruby version? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Is it possible to update the instantRails installation to the latest rails and ruby version? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
what the heck is going on with that google shit? i send the msg ONE time but i refresh right after it about 2 times to see the sent msg , but all i see are dupe posts or now 3 times sent messages??? weird... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> 5. Tell netbeans to use the native Ruby or you''ll have to install the > gems twice, once for jruby and once for your normal ruby.sorry i forgot to tell but my NB is since the first time using Ruby as interpreter not JRuby as this is for java ;-) wether i use instant rails or not nothing works so thank you guyz for yur help but i will wait for Rails 2.0 and the coming xmas hols now i am exhausted of all that testing etc... feel like a betatester not a RoR starter... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> 5. Tell netbeans to use the native Ruby or you''ll have to install the > gems twice, once for jruby and once for your normal ruby.sorry i forgot to tell but my NB is since the first time using Ruby as interpreter not JRuby as this is for java ;-) wether i use instant rails or not nothing works so thank you guyz for yur help but i will wait for Rails 2.0 and the coming xmas hols now i am exhausted of all that testing etc... feel like a betatester not a RoR starter... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Gianluca Tessarolo
2007-Dec-06 14:25 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
Pel ha scritto:> >> 5. Tell netbeans to use the native Ruby or you''ll have to install the >> gems twice, once for jruby and once for your normal ruby. >> > > sorry i forgot to tell but my NB is since the first time using Ruby > as interpreter not JRuby as this is for java ;-) > > wether i use instant rails or not nothing works so thank you guyz for > yur help but i will wait for Rails 2.0 and the coming xmas hols now i > am exhausted of all that testing etc... feel like a betatester not a > RoR starter... > > > > >I''m sad for your problems. I never had these kind of problems with NetBeans and Rails/Ruby/JRuby (maybe a fresh install of Linux can solve your problems ? ;-) ) Merry xmas !!! -- Gianluca Tessarolo TreNetMediaMaster S.r.l. The Internet Technology Company Telefono +39(049)776196 Fax +39(049)8087806 Visit us @: http://www.trenet.it - http://www.mediamaster.it e-mail me @: tessarolo.gianluca-6ZZdBs7hMehZp5Udy/Obhg@public.gmane.org ---------------------------------------------------------------------- Le informazioni trasmesse sono destinate esclusivamente alla persona o alla società in indirizzo e sono da intendersi confidenziali e riservate. Ogni trasmissione, inoltro, diffusione o altro uso di queste informazioni a persone o società differenti dal destinatario é proibita. Se ricevete questa comunicazione per errore, contattate il mittente e cancellate le informazioni da ogni computer. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> I''m sad for your problems. > > I never had these kind of problems with NetBeans and Rails/Ruby/JRuby > (maybe a fresh install of Linux can solve your problems ? ;-) )I use windows by the way forgot to mention maybe... ;-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Ryan Bigg
2007-Dec-07 00:51 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
I''m sorry. You are beyond help. I sincerly think you are now trolling. Nobody can be that stupid. Please, just use google and you will learn. I call bullshit on you not knowing it''s posting your message several times. On Dec 7, 2007 1:45 AM, Pel <Liquidc4D-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> > > I''m sad for your problems. > > > > I never had these kind of problems with NetBeans and Rails/Ruby/JRuby > > (maybe a fresh install of Linux can solve your problems ? ;-) ) > > > I use windows by the way forgot to mention maybe... ;-) > > > >-- Ryan Bigg --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Aditya Mittal
2009-Mar-23 05:18 UTC
Re: Can`t connect to MySQL Database with Netbeans 6 for RoR ?
This is a genuine question. I too am using a windows machine and mysql is properly installed and all that. I''ve resolved it after like 5 hours of confusion by simply moving down to the previous version: In environment.rb in your project change the version from 2.2.2 to 2.1.0: RAILS_GEM_VERSION = ''2.1.0'' unless defined? RAILS_GEM_VERSION Install the gem: gem install -v=2.1.0 rails Rake and it will work! rake db:migrate -Aditya Mittal Stanford University -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---