I was having the same exact problem when I stumbled on this thread. Even though I installed the sqlite3-ruby gem it seems like "taps" or something was still using the old sqlite3 gem.
So I tried running: "gem uninstall sqlite3" That seemed to fix it for me. Hope this helps -Omar On Jan 1, 4:56 pm, kerri miller <[email protected]> wrote: > Ok, well lets break it down. > > c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/sequel/adapters/ > sqlite.rb:5:in `rescue in <top (required)>': SQLite3::Database#type_ > translation is not defined. If you are using the sqlite3 gem, please > install the sqlite3-ruby gem. (Sequel::Error) > > 1 - are you using the sqlite3 gem? if so, migrate to using sqlite3-ruby > > 2 - you might try specifying the DB: > > heroku db:push sqlite://local.db > > There's a numbre of semi-documented features in the heroku gem around the db > commands - give the source code a read, there might be something in there > about translations (I seem to remember some flag you could set to specify > the source, but its been a few months) > > good luck! > > -kerri- > > > > > > > > On Sat, Jan 1, 2011 at 6:15 AM, sasha revzin <[email protected]> wrote: > > heroku db:push > > > :) > > > On Fri, Dec 31, 2010 at 22:06, kerri miller <[email protected]> wrote: > > >> what are you entering for a command? > > >> On Mon, Dec 27, 2010 at 2:31 AM, Sasha <[email protected]> wrote: > > >>> tried reinstall heroku and taps and nothing helped :( > > >>> here what im getting: > > >>> Sending schema > >>> c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/sequel/adapters/ > >>> sqlite.rb:5:in `rescue in <top (required)>': SQLite3::Database#type_ > >>> translation is not defined. If you are using the sqlite3 gem, please > >>> install the sqlite3-ruby gem. (Sequel::Error) > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/ > >>> sequel/adapters/sqlite.rb:2:in `<top (required)>' > >>> from <internal:lib/rubygems/custom_require>:29:in `require' > >>> from <internal:lib/rubygems/custom_require>:29:in `require' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/ > >>> sequel/core.rb:249:in `block in tsk_require' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/ > >>> sequel/core.rb:72:in `block in check_requiring_thread' > >>> from <internal:prelude>:10:in `synchronize' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/ > >>> sequel/core.rb:69:in `check_requiring_thread' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/ > >>> sequel/core.rb:249:in `tsk_require' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/ > >>> sequel/database/connecting.rb:25:in `adapter_class' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/ > >>> sequel/database/connecting.rb:54:in `connect' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/ > >>> sequel/core.rb:119:in `connect' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/taps-0.3.14/lib/taps/ > >>> schema.rb:18:in `dump_table' > >>> from c:/Ruby192/lib/ruby/gems/1.9.1/gems/taps-0.3.14/bin/ > >>> schema:32:in `<main>' > > >>> p.s im using rails 3.0.3 (ruby 1.9.1) on windows (yes-yes windows with > >>> small 'w' ) > > >>> -- > >>> You received this message because you are subscribed to the Google Groups > >>> "Heroku" group. > >>> To post to this group, send email to [email protected]. > >>> To unsubscribe from this group, send email to > >>> [email protected]<heroku%[email protected]> > >>> . > >>> For more options, visit this group at > >>>http://groups.google.com/group/heroku?hl=en. > > >> -- > >> You received this message because you are subscribed to the Google Groups > >> "Heroku" group. > >> To post to this group, send email to [email protected]. > >> To unsubscribe from this group, send email to > >> [email protected]<heroku%[email protected]> > >> . > >> For more options, visit this group at > >>http://groups.google.com/group/heroku?hl=en. > > > -- > > You received this message because you are subscribed to the Google Groups > > "Heroku" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<heroku%[email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/heroku?hl=en. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
