Hi,
I have upgraded to 2.4.9.3 from 2.4.8 couple of days back. I am facing some
problems with hash views now. Earlier if i tried to append a row with an
existing 'key', it used to overwirte the old row; not any more. Below is a
session snippet from python command line showing this:

Could somebody point out what i am doing wrong.
Thanks
Rajeev



s=metakit.storage(r'd:\del\5',1)
>>> v=s.getas('DLE_URLS
[url_hash:I,email_sender:S,ufi:S,url_flags:L,request_file_name:S,last_access_tim
e:F,url:S,email_recipients:S,email_timestamp:F,subject:S]')
>>> hv=s.getas('hv[_H:I,_R:I]')
>>> v=v.hash(hv,1)
>>> new_vals={'url_hash':1,
              'url_flags':0,
              'url':'adfsddddsdfdfsdfsdff',
              'ufi':'fdfdsfdsfgfddfdfdfffddyddyy',
              'email_timestamp':313,
              'request_file_name':'abc123'
              }
>>> v.append(new_vals)
0
>>> v.append(new_vals)
1
>>> v.append(new_vals)
2
>>> v.append(new_vals)
3
>>> len(v)
4

_____________________________________________
Metakit mailing list  -  [EMAIL PROTECTED]
http://www.equi4.com/mailman/listinfo/metakit

Reply via email to