// // SPMySQLDataTypes.h // SPMySQLFramework // // Created by Stuart Connolly (stuconnolly.com) on January 14, 2014. // Copyright (c) 2014 Stuart Connolly. All rights reserved. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation // files (the "Software"), to deal in the Software without // restriction, including without limitation the rights to use, // copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following // conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. // // More info at extern NSString *SPMySQLTinyIntType; extern NSString *SPMySQLSmallIntType; extern NSString *SPMySQLMediumIntType; extern NSString *SPMySQLIntType; extern NSString *SPMySQLBigIntType; extern NSString *SPMySQLFloatType; extern NSString *SPMySQLDoubleType; extern NSString *SPMySQLDoublePrecisionType; extern NSString *SPMySQLRealType; extern NSString *SPMySQLDecimalType; extern NSString *SPMySQLBitType; extern NSString *SPMySQLSerialType; extern NSString *SPMySQLBoolType; extern NSString *SPMySQLBoolean; extern NSString *SPMySQLDecType; extern NSString *SPMySQLFixedType; extern NSString *SPMySQLNumericType; extern NSString *SPMySQLCharType; extern NSString *SPMySQLVarCharType; extern NSString *SPMySQLTinyTextType; extern NSString *SPMySQLTextType; extern NSString *SPMySQLMediumTextType; extern NSString *SPMySQLLongTextType; extern NSString *SPMySQLTinyBlobType; extern NSString *SPMySQLMediumBlobType; extern NSString *SPMySQLBlobType; extern NSString *SPMySQLLongBlobType; extern NSString *SPMySQLBinaryType; extern NSString *SPMySQLVarBinaryType; extern NSString *SPMySQLEnumType; extern NSString *SPMySQLSetType; extern NSString *SPMySQLDateType; extern NSString *SPMySQLDatetimeType; extern NSString *SPMySQLTimestampType; extern NSString *SPMySQLTimeType; extern NSString *SPMySQLYearType; extern NSString *SPMySQLGeometryType; extern NSString *SPMySQLPointType; extern NSString *SPMySQLLineStringType; extern NSString *SPMySQLPolygonType; extern NSString *SPMySQLMultiPointType; extern NSString *SPMySQLMultiLineStringType; extern NSString *SPMySQLMultiPolygonType; extern NSString *SPMySQLGeometryCollectionType;