This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author debewerker
Recipients debewerker
Date 2013-08-31.07:10:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377933038.86.0.811831713393.issue18892@psf.upfronthosting.co.za>
In-reply-to
Content
In the end I tracked down the behaviour with the attached program
behaviour with an initially empty table:

7 : insert two records with values in the columns
two records show up, # 1,2
as expected
9 : show al records
none
whereas two are to be expected
8 : add records with default values
two records show up # 1,2
as expected in an empty table
7
two records # 3,4
record numbers as expected, but where are records 1,2?  (ABC)
9
the default records are present #1,2
the previous valued records 3,4 not
  unexpected, but identical to first behaviour issuing 7
8
4 records show up # 1-4
record numbers as expected when valued records are not present
0  :  I quit

to summarize:
It is not possible to store records in the database with valued columns.
Records with default values can be stored and retrieved, they are the ones that are persistent
Additional strange behaviour is that after adding valued records (3,4) also the already present records with default values (1,2) should have shown show up, remark (ABC).
History
Date User Action Args
2013-08-31 07:10:38debewerkersetrecipients: + debewerker
2013-08-31 07:10:38debewerkersetmessageid: <1377933038.86.0.811831713393.issue18892@psf.upfronthosting.co.za>
2013-08-31 07:10:38debewerkerlinkissue18892 messages
2013-08-31 07:10:38debewerkercreate