On 12/13/2015 08:29 PM, Michael Wilson wrote: > Hi, > > I read with great interest these examples: > > https://bitbucket.org/zzzeek/sqlalchemy/wiki/UsageRecipes/SymmetricEncryption > > Which use hybrid_property or TypeDecorators to implement encryption. > > My question is, now would you use these with a /varying/ key - one that > possibly changed per row (or primary key).
well if you queried ten rows, where would you want to get those ten keys from ? During the query, from the DB, a Python function, or after the fact ? > > Thanks for any ideas! > > -- > You received this message because you are subscribed to the Google > Groups "sqlalchemy" group. > To unsubscribe from this group and stop receiving emails from it, send > an email to [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at https://groups.google.com/group/sqlalchemy. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
