Message from discussion
heroku db:push doesnt work
Received: by 10.224.28.148 with SMTP id m20mr2753863qac.16.1294663535623;
Mon, 10 Jan 2011 04:45:35 -0800 (PST)
X-BeenThere: heroku@googlegroups.com
Received: by 10.224.176.70 with SMTP id bd6ls4545404qab.5.p; Mon, 10 Jan 2011
04:45:33 -0800 (PST)
Received: by 10.224.2.210 with SMTP id 18mr2740629qak.2.1294663533498;
Mon, 10 Jan 2011 04:45:33 -0800 (PST)
MIME-Version: 1.0
Received: by 10.224.20.14 with SMTP id d14mr139558qab.25.1294661645989; Mon,
10 Jan 2011 04:14:05 -0800 (PST)
Received: by p8g2000vbs.googlegroups.com with HTTP; Mon, 10 Jan 2011 04:14:05
-0800 (PST)
Date: Mon, 10 Jan 2011 04:14:05 -0800 (PST)
In-Reply-To: <1de0d0a2-7b50-497d-9515-238d25fb47c8@y3g2000vbm.googlegroups.com>
X-IP: 76.116.85.70
References: <aae9829b-f201-4771-b82b-d7e1412fda25@y23g2000yqd.googlegroups.com>
<AANLkTimtj-g3iLHBop9RQ0qXRTd6b4jS_7=CShVbQwss@mail.gmail.com>
<AANLkTi=cXfrP9STdA5+k=nf7mc0qnud=R23N5h30jWFR@mail.gmail.com>
<AANLkTi=kfrXdrSn5tXh6b1SdXheWTn1nqxxpZjt3R2FW@mail.gmail.com> <1de0d0a2-7b50-497d-9515-238d25fb47c8@y3g2000vbm.googlegroups.com>
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US;
rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13,gzip(gfe)
Message-ID: <db4f11e7-0e5e-4aa7-9f42-f43a4e086834@p8g2000vbs.googlegroups.com>
Subject: Re: heroku db:push doesnt work
From: ChrisWolf <cw10...@gmail.com>
To: Heroku <heroku@googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
I am having the same issue. The exact error I get is:
$ heroku db:push
Taps 0.3 Load Error: dlsym(0x101df8ef0, Init_sqlite3_native): symbol
not found - /Library/Ruby/Gems/1.8/gems/sqlite3-ruby-1.3.2/lib/sqlite3/
sqlite3_native.bundle
You may need to install or update the taps gem to use db commands.
This is on MacOSX 10.6 ("Snow Leopard"), Ruby-1.8.7, and taps is
definitely installed:
gem list -d taps
*** LOCAL GEMS ***
taps (0.3.14)
...and if I run this test script:
require 'rubygems'
require 'sqlite3'
tempname = "test.sqlite#{3+rand}"
db = SQLite3::Database.new(tempname)
puts db.execute('select sqlite_version()')
db.close
File.unlink(tempname)
It reports the SQLite version correctly, so I assume the sqlite3-ruby
gem is also properly installed.
At this point, I'm totally stuck. Or maybe pushing from Snow Leopard
isn't supported?, but I doubt it.