The title says it all: I am looking for a standard way to preserve Python [frozen]sets in a MySQL database.
Note: the SET
MySql datatype is not an equivalent; it is more of a multiple-choice from a restricted list object.
Note (2): I can invent something ad-hoc; assuming my set is of strings which contain no commas, I can record it as a sorted comma-separated list of strings. I am looking for something which is a bit more general and more standard.
Note (3): I have looked at MySQL reference webpages. I could not find it there. I am still asking, as I am not so proficient with databases, and I think that it is possible that a standard method exists.