Better error output

This commit is contained in:
Nyall Dawson 2021-08-27 09:30:58 +10:00 committed by Evan Miller
parent fa336fd325
commit f557e6525b

View File

@ -2088,7 +2088,7 @@ static const char * _odbc_get_client_type_name(MdbColumn *col)
case MDB_COMPLEX:
return "COMPLEX";
default:
// fprintf(stderr,"Unknown type %d\n",srv_type);
fprintf(stderr,"Unknown type for column %s: %d\n",col->name,col->col_type);
break;
}
return NULL;