Hi,

I can not check because I do not have MS SQL, but to make error more informative, I've passed field type to :osCode. You error log shows it is value 65527. Since it is USHORT value, it can also mean -9, if it is signed. I can not find nor -9 neither 65527 field type sql.h. Varchar is defined equal to 12. More tests/docs required.

In attachment you can see type nvarchar( 300) in field NAZWA.
In this table I see types : int, nvarchar( n), nchar( n), char(n) and
tinyint.
In other tables are too : datetime, decimal( n, n), smallint, money,
bigint, float and varchar(n).
Was this information is enough?

Not enough without full documentation, but you can try to change:
         case SQL_CHAR:
         case SQL_VARCHAR:
         case SQL_LONGVARCHAR:
           pFieldInfo.uiType = HB_FT_STRING;
           break;
to:
         case SQL_CHAR:
         case SQL_VARCHAR:
         case SQL_LONGVARCHAR:
         case -9:
           pFieldInfo.uiType = HB_FT_STRING;
           break;
in odbcdd.c.


Regards,
Mindaugas
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to