Posts by Mauro M • 170 points
7 posts
-
0
votes2
answers172
viewsA: Pull in Heroku database to local
I downloaded the Dashboard itself from Heroku by clicking on Databases you can download a snapshot of the database, the problem is that it comes in .dump. To turn this into a postgre format use the…
-
2
votes2
answers172
viewsQ: Pull in Heroku database to local
I need to synchronize my database data in production with what is on my site, is there any way to pull the Heroku database to mine on localhost without having to create a new database locally? My…
-
0
votes2
answers829
views -
-3
votes2
answers829
viewsQ: Httpclient releasing org.hibernate.Exception.Genericjdbcexception exception exception?
Is there any reason for the following code to release this exception? I have one webservice who consults at my bank and turns everything into xml and then make a send to another webservice takes the…
-
1
votes2
answers1632
viewsQ: Regex to pick numbers between the second and third "/"
Let’s say I have the following string /product/976935/ How would I make a regex to return only the numbers between the second and third bar? The amount of numbers varies so it’s no use just…
-
2
votes1
answer577
views -
2
votes3
answers128
viewsQ: Nomethoderror in Users#show
I’m learning Rails, following a book that has the following code: Usercontroller class UsersController < ApplicationController def new @user = User.new end def edit @user = User.find(params[:id])…