Re: [personal kdb+] How to create and update new dictionary for every

Try to think of this in terms of tables. Table is a list of dictionaries:

q)true:100#enlist"Success"

q)newdict:(true)

q)first newdict

true| “Success”

q)false:100#enlist"Error"

q)newdict,:(true:false)

q)last newdict

true| “Error”

  Konstantin