Using .NET connector: http://dev.mysql.com/doc/refman/5.1/en/connector-net-ref.html
A field is set in MySQL as:
decimal(6) zerofill not null
How can the "zerofill" flag be detected in VB?
|
Using .NET connector: http://dev.mysql.com/doc/refman/5.1/en/connector-net-ref.html A field is set in MySQL as:
How can the "zerofill" flag be detected in VB?
| ||||
|
feedback
|
|
You can obtain column information using
So to obtain the flag zerofill you have to look in type if the string returned in int contains the 'zerofill' string: Something like this will do the trick:
| |||
|
feedback
|