Hello list I would like to report a bug in ''generate scaffold'' - is this the place to do it? Thank you. -Erin ------------------------------------------------- This mail sent through IMP: http://horde.org/imp/
Wolfgang Klinger
2005-Apr-12 17:43 UTC
Re: Where can I report a bug in ''generate scaffold''
Hi! On Tue, 12 Apr 2005, Erin Clerico wrote the following:> I would like to report a bug in ''generate scaffold'' - is this the place to do it?If you don''t need to discuss anything beforehand, simply file a ticket here: http://dev.rubyonrails.com/newticket bye Wolfgang
Hello! I am not able to get a complete scaffold build when using a MS SQL database, it errors right after creating the edit.rhtml file: OLE error code:80004005 in Microsoft OLE DB Provider for SQL Server [DBNMPNTW]ConnectionOpen (CreateFile()). HRESULT error code:0x80020009 Exception occurred. I do this with no problems on my Mac with mySQL, this happens on Windows using ADO Adapter and the latest everything in ROR. I am not far enough along with ROR or MS SQL to debug this - is there something obvious I missed? Thank you. -Erin> > Hi! > > On Tue, 12 Apr 2005, Erin Clerico wrote the following: > > I would like to report a bug in ''generate scaffold'' - is this the place to > do it? > > If you don''t need to discuss anything beforehand, simply > file a ticket here: http://dev.rubyonrails.com/newticket > > > bye > Wolfgang > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >------------------------------------------------- This mail sent through IMP: http://horde.org/imp/
You need to have your database.yml file set up first, and before that, have the ADO stuff from the Ruby DBI package installed in the right place (the HOWTO is on the RubyOnRails.org website...) I''ve successfully been doing scaffold/generate at work against SQL Server 2000. \Your error message is similar to the first time I tried connecting to sql server w/o having my config/database.yml file set up correctly. Off the top of my head, it should look something like this: development: adapter: sqlserver database: <your database name> host: <your sql server server name> username: <dbusername> password: <dbuserpassword> It does and should work! -Corey On 4/12/05, Erin Clerico <erin-en54UhrNc7/xXtTrXRITwwC/G2K4zDHf@public.gmane.org> wrote:> Hello! > > I am not able to get a complete scaffold build when using a MS SQL database, it > errors right after creating the edit.rhtml file: > > OLE error code:80004005 in Microsoft OLE DB Provider for SQL Server > [DBNMPNTW]ConnectionOpen (CreateFile()). > HRESULT error code:0x80020009 > Exception occurred. > > I do this with no problems on my Mac with mySQL, this happens on Windows using > ADO Adapter and the latest everything in ROR. > > I am not far enough along with ROR or MS SQL to debug this - is there something > obvious I missed? > > Thank you. > > -Erin > > > > > > Hi! > > > > On Tue, 12 Apr 2005, Erin Clerico wrote the following: > > > I would like to report a bug in ''generate scaffold'' - is this the place to > > do it? > > > > If you don''t need to discuss anything beforehand, simply > > file a ticket here: http://dev.rubyonrails.com/newticket > > > > > > bye > > Wolfgang > > > > > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > ------------------------------------------------- > This mail sent through IMP: http://horde.org/imp/ > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >