Changes between Initial Version and Version 1 of Ticket #12108
- Timestamp:
- Oct 28, 2009, 4:41:59 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12108 – Description
initial v1 2 2 3 3 I am getting the following error when I try to insert a row in the table. 4 4 {{{ 5 5 psycopg2.ProgrammingError: current transaction is aborted, commands ignored until end of transaction block 6 6 }}} 7 7 The commands i am using are 8 9 a = route('113','NORTH','TRUE')8 {{{ 9 >>> a = route('113','NORTH','TRUE') 10 10 >>> a.save() 11 11 }}} 12 12 13 13 The model created for route is 14 14 {{{ 15 15 class route(models.Model): 16 16 routeid = models.AutoField(primary_key=True) … … 22 22 return self.name 23 23 24 24 }}} 25 25 The table has been created and I am able to insert value using the posgre interface. Please help me out on this problem