Hello, Everyone,
I’m using a back-end MySQL database for my DHX application. What data type should I use to store the state (checked/unchecked) of a checkbox control, please? Bit? Binary? Integer? String?
Thanks.
Hello, Everyone,
I’m using a back-end MySQL database for my DHX application. What data type should I use to store the state (checked/unchecked) of a checkbox control, please? Bit? Binary? Integer? String?
Thanks.
I found through trial and error that tinyint(1) works well.