Changes between Initial Version and Version 1 of Ticket #14734


Ignore:
Timestamp:
Nov 19, 2010, 2:16:05 PM (13 years ago)
Author:
Alex Gaynor
Comment:

I've reformatted the description of this ticket, in the future you can use the "Preview" button to ensure that your message is formatted the way you intended.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14734 – Description

    initial v1  
    11I attempted to use django with postgresql views by means of model class, the view rows
    22however do not change when the db is externally updated untill reentering python, e.g.
     3{{{
    34>>> mv=MyView.object
    45>>> mv.all()
     
    1415>>> MyView.objects.all()
    1516[<Myview: MyView object>,<Myview: MyView object>]  #2 rows
    16 
     17}}}
    1718That's all.
    1819Fulvio
Back to Top