fixed mapping of I4 to INTEGER now, it was mediumint which is a 3-byte interger only

This commit is contained in:
Ralf Becker 2004-08-30 15:06:05 +00:00
parent c69e9cd32e
commit 7b6b6d5759

View File

@ -95,7 +95,7 @@ class ADODB2_mysql extends ADODB_DataDict {
case 'I': return 'INTEGER';
case 'I1': return 'TINYINT';
case 'I2': return 'SMALLINT';
case 'I4': return 'MEDIUMINT';
case 'I4': return 'INTEGER'; // MEDIUMINT is actualy a I3
case 'I8': return 'BIGINT';
case 'F': return 'DOUBLE';