[Mono-bugs] [Bug 53169][Maj] Changed - Mono maps BigInt Sql 2000 column to System.Decimal instead of System.Int64

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 7 Jun 2004 06:23:03 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by sumadevi@novell.com.

http://bugzilla.ximian.com/show_bug.cgi?id=53169

--- shadow/53169	2004-05-13 15:47:36.000000000 -0400
+++ shadow/53169.tmp.10428	2004-06-07 06:23:03.000000000 -0400
@@ -17,6 +17,17 @@
 Summary: Mono maps BigInt Sql 2000 column to System.Decimal instead of System.Int64
 
 I have an sql table where one column is defined as a BigInt primary key 
 (identity) when mono returns a DataRow from that table the BigInt column 
 is mapped to System.Decimal. I checked this on MS .NET 1.0 and it maps 
 this column to System.Int64.
+
+------- Additional Comments From sumadevi@novell.com  2004-06-07 06:23 -------
+
+Mono uses TDS 7.0 to communicate to MS SQL 2000 Server. 
+TDS7.0 does not support bigint data. MS SQL converts it to
+decimal(19,0) values to return to TDS 7.0 clients.
+
+
+Currently the effort to change to TDS 8.0 is significant.
+
+Uma