in reply to Configuration Storage (Perl Vars) in Database

I would dislike using Data::Dumper for that, because you have to eval the text representation to get a data structure back, and eval() is a security risk under some circumstances. I like JSON much better for such things.

But you can simply use the same config file format as before, and dump it into a table. I don't know what you hope to gain from having it in a database table, so I don't know if that will work for you.

  • Comment on Re: Configuration Storage (Perl Vars) in Database