mySQL enum and set fields
mySQL enum and set fields
GMGraying
Posts: 12Questions: 6Answers: 1
I have a mySQL table with two enum fields and one set field. Are there any examples of these types I could follow?
This discussion has been closed.
Answers
I'm afraid none of the Editor examples use enum MySQL columns. However, it shouldn't be any different from any other field - although you'd probably want to use some validation to make sure that the correct token is being submitted. e.g. the
values
validator.Allan