While I'm hoping to eventually switch to a newer, lighter, and/or faster DBMS (such as the aptly-named lightweight SQLite or the document-based Mongo- the latter of which would not present this issue), I am currently sticking to the standard MySQL system. Though I realize that any answer to this question may be one of opinion, I'm wondering how one would store serialized data such as an array or hash-map in a single column of a MySQL [or otherwise relational-based] database. Most data access would be executed via PHP, but I would like to store data in a standard format (i.e. JSON or binary hash-map- preferably the latter) rather than the plain-text of the dumped PHP array. The reason for this is that I may perform some data queries from Python, a compiled C/C++ application, or the command line.
Thanks.