MySqlReader.GetSchemaTable()

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for MySQL
Post Reply
befan
Posts: 1
Joined: Sun 26 Feb 2006 21:52
Location: Sevastopol, Crimea

MySqlReader.GetSchemaTable()

Post by befan » Sun 26 Feb 2006 22:01

Hi.

I use mySQL 4.0 and MySqlDirect 3

when i try read metadata for DECIMAL field by this code :

case "DECIMAL" :
int NumericPrecision = (short) metaData.Rows["NumericPrecision"];
int NumericScale = (short) metaData.Rows["NumericScale"];
fld = new MySqlNumericFieldColumnName,NumericPrecision,NumericScale,AllowDBNull);
break;

NumericPrecision always zero - this problem fixed in latest version ?

Serious

Post by Serious » Wed 01 Mar 2006 10:03

We have improved MySQLDirect .NET in the way you want. The changes will be included in the next release.

Post Reply