Ticket #635 (closed Bug: fixed)

Opened 4 months ago

Last modified 2 months ago

Unknown field type: numeric

Reported by: allain Owned by: Shadowhand
Priority: minor Milestone:
Component: Libraries:Database Version: SVN HEAD
Keywords: Cc:

Description

while working on a new MSSQL Database driver I was asked to report this.

Change History

Changed 4 months ago by Shadowhand

  • owner changed from zombor to Shadowhand
  • status changed from new to assigned

MSSQL has a field type called NUMERIC?! Compared to MySQL, what is it most similar to: DECIMAL, FLOAT, or INT?

Changed 3 months ago by dynom

http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/mysql.mspx

svn diff config/sql_types.php
Index: config/sql_types.php
===================================================================
--- config/sql_types.php        (revision 2875)
+++ config/sql_types.php        (working copy)
@@ -29,7 +29,7 @@
 );

 // DOUBLE
-$config['double'] = $config['decimal'] = $config['real'] = $config['float'];
+$config['double'] = $config['numeric'] = $config['decimal'] = $config['real'] = $config['float'];

 // BIT
 $config['bit'] = $config['boolean'];


Changed 3 months ago by Shadowhand

  • status changed from assigned to closed
  • resolution set to fixed

Fixed in r3143, merged in r3144.

Changed 2 months ago by anonymous

  • milestone deleted

Milestone 2.1.3 deleted

Note: See TracTickets for help on using tickets.