Binding Checkboxes to MySQL

  • Thread starter Thread starter jwitt
  • Start date Start date
J

jwitt

Ref: WinXP, MySQL 5.0, C#

How to bind a CheckBox to a Boolean column (TINYINT(1)), or to any type
of MySQL column for that matter?

Thanks,
Jim
 
Jwitt,

I do not know if the TinyInt(1) is the same as the Bool column in SQLServer.

If that is the case than you have to bind the Value property from the
checkbox while most start with doing it to the Text property.

I hope this helps,

Cor
 
Back
Top