diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 844deea514..de1240087c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,13 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-02-27 20:26 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * ChangeLog + + Added missed item in prev commit. + + * contrib/rddsql/sddoci/sddoci.c + ! Comment again the trace msg. + 2010-02-27 20:19 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbcomp.h * harbour/include/hbcompdf.h @@ -45,6 +52,9 @@ * contrib/rddsql/sddodbc/sddodbc.c ! Silenced warnings. + * contrib/hbodbc/odbc.c + + Added SQLBINDPARAMETER() (long-time commented function) + * contrib/rddsql/sddoci/sddoci.c * contrib/rddsql/sddoci/tests/test1.prg + Finished type mapping and value translation. diff --git a/harbour/contrib/rddsql/sddoci/sddoci.c b/harbour/contrib/rddsql/sddoci/sddoci.c index a7535aedac..8bf3c6a6cf 100644 --- a/harbour/contrib/rddsql/sddoci/sddoci.c +++ b/harbour/contrib/rddsql/sddoci/sddoci.c @@ -359,7 +359,7 @@ static HB_ERRCODE ocilibOpen( SQLBASEAREAP pArea ) pFieldInfo.uiLen = ( HB_USHORT ) uiSize; pFieldInfo.uiDec = ( HB_USHORT ) iDec; - HB_TRACE( HB_TR_ALWAYS, ("field: name=%s type=%d len=%d dec=%d nullable=%d %d %d %d %d", pFieldInfo.atomName, uiDataType, uiSize, iDec, bNullable, OCI_ColumnGetScale( col ), OCI_ColumnGetPrecision( col ), OCI_ColumnGetFractionalPrecision( col ), OCI_ColumnGetLeadingPrecision( col ) ) ); + /* HB_TRACE( HB_TR_ALWAYS, ("field: name=%s type=%d len=%d dec=%d nullable=%d %d %d %d %d", pFieldInfo.atomName, uiDataType, uiSize, iDec, bNullable, OCI_ColumnGetScale( col ), OCI_ColumnGetPrecision( col ), OCI_ColumnGetFractionalPrecision( col ), OCI_ColumnGetLeadingPrecision( col ) ) ); */ switch( uiDataType ) {