A few days late for this thread, but I just ran into the problem. After reading through the thread, and poking around the MySQLmodule source a bit. I thought I'd see what happened if I changed the unhandled to long in the MySQLmodule... At line 440 in MySQLmodule.c, change 'unhandled to 'long', or as a unified format diff: --- MySQLmodule.c.orig Mon Jan 25 07:33:46 1999 +++ MySQLmodule.c Mon Mar 8 18:48:00 1999 @@ -435,9 +435,11 @@ type = "timestamp"; break; case FIELD_TYPE_NULL: + type = "unhandled" + break; case FIELD_TYPE_LONGLONG: case FIELD_TYPE_INT24: - type = "unhandled"; + type = "long"; break; case FIELD_TYPE_VAR_STRING: type = "varchar"; So far, no problems. --- John Eikenberry [jae@kavi.com - http://taos.kavi.com/~jae/] ______________________________________________________________ "A society that will trade a little liberty for a little order will deserve neither and lose both." --B. Franklin