diff options
Diffstat (limited to 'Source/CMMCPResult.m')
-rw-r--r-- | Source/CMMCPResult.m | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/CMMCPResult.m b/Source/CMMCPResult.m index f80ff5c3..145825a7 100644 --- a/Source/CMMCPResult.m +++ b/Source/CMMCPResult.m @@ -100,6 +100,10 @@ modified version for use with sequel-pro case FIELD_TYPE_NEWDATE: // Don't know what the format for this type is... theCurrentObj = [self stringWithCString:theData]; break; + + case FIELD_TYPE_BIT: + theCurrentObj = [NSString stringWithFormat:@"%u", theData[0]]; + break; case FIELD_TYPE_TINY_BLOB: case FIELD_TYPE_BLOB: |