Re: cant syncdb with postgresql

2013-04-25 Thread Pedro Silva
i already try it, no success, i think app its fine, its something with postgresql... 2 days ago i was able to sync, create.. db since yesterday its jus give that msg. i already uninstall python and django, reinstall and get same erro. Still works fine with sqlite3, when i change the db... fails

Re: cant syncdb with postgresql

2013-04-25 Thread Tom Evans
On Thu, Apr 25, 2013 at 3:59 PM, Pedro Silva wrote: > installed apps: > 'django.contrib.auth', > 'django.contrib.contenttypes', > 'django.contrib.sessions', > 'django.contrib.messages', > 'django.contrib.staticfiles', > 'django.contrib.admin', > 'django.contrib.admindoc

Re: cant syncdb with postgresql

2013-04-25 Thread Daniele Procida
On Thu, Apr 25, 2013, Pedro Silva wrote: >installed apps: >'django.contrib.auth', >'django.contrib.contenttypes', >'django.contrib.sessions', >'django.contrib.messages', >'django.contrib.staticfiles', >'django.contrib.admin', >'django.contrib.admindocs', >'psycopg2

Re: cant syncdb with postgresql

2013-04-25 Thread Pedro Silva
no luck with that Quinta-feira, 25 de Abril de 2013 14:27:31 UTC+1, Timothy Makobu escreveu: > > You need to catch exceptions during a commit and rollback the incomplete > transaction. > > from django.db import connection > connection._rollback() > > to rollback the current one. > > > On Thu, Apr

Re: cant syncdb with postgresql

2013-04-25 Thread Pedro Silva
installed apps: 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.admin', 'django.contrib.admindocs', 'psycopg2.extensions', #my app 'meetpop.meet', #m

Re: cant syncdb with postgresql

2013-04-25 Thread Daniele Procida
On Thu, Apr 25, 2013, Pedro Silva wrote: >I cant sync db with heroku postgresql, with sqllite works great. >Can anybody help me? >requeriments: >Django==1.4.5 >PIL==1.1.7 >distribute==0.6.36 >dj-database-url==0.2.1 >django-db-log==2.2.1 >django-log-file-viewer==0.4 >psycopg2==2.5 >virtualenv==1.9

Re: cant syncdb with postgresql

2013-04-25 Thread Pedro Silva
no lock with that -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@go

Re: cant syncdb with postgresql

2013-04-25 Thread Timothy Makobu
You need to catch exceptions during a commit and rollback the incomplete transaction. from django.db import connection connection._rollback() to rollback the current one. On Thu, Apr 25, 2013 at 4:08 PM, Pedro Silva wrote: > I cant sync db with heroku postgresql, with sqllite works great. > Ca

cant syncdb with postgresql

2013-04-25 Thread Pedro Silva
I cant sync db with heroku postgresql, with sqllite works great. Can anybody help me? requeriments: Django==1.4.5 PIL==1.1.7 distribute==0.6.36 dj-database-url==0.2.1 django-db-log==2.2.1 django-log-file-viewer==0.4 psycopg2==2.5 virtualenv==1.9.1 erro: c:\WorkspacePY>python manage.py reset meet