aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/SPMySQLFramework/Source
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2018-02-28 01:30:40 +0100
committerMax <post@wickenrode.com>2018-02-28 01:30:40 +0100
commit3e93a122e338083ff38760ce3bbec062d4516cb0 (patch)
tree84e58125dce2cfac1c9db2a294761b9e467ea5a9 /Frameworks/SPMySQLFramework/Source
parent808ae467381bf597c487fb321dbabc3ccb309b67 (diff)
downloadsequelpro-3e93a122e338083ff38760ce3bbec062d4516cb0.tar.gz
sequelpro-3e93a122e338083ff38760ce3bbec062d4516cb0.tar.bz2
sequelpro-3e93a122e338083ff38760ce3bbec062d4516cb0.zip
Move 4 misplaced files
Diffstat (limited to 'Frameworks/SPMySQLFramework/Source')
-rw-r--r--Frameworks/SPMySQLFramework/Source/SPMySQLDataTypes.h75
-rw-r--r--Frameworks/SPMySQLFramework/Source/SPMySQLDataTypes.m77
-rw-r--r--Frameworks/SPMySQLFramework/Source/SPMySQLEmptyResult.h39
-rw-r--r--Frameworks/SPMySQLFramework/Source/SPMySQLEmptyResult.m139
4 files changed, 330 insertions, 0 deletions
diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLDataTypes.h b/Frameworks/SPMySQLFramework/Source/SPMySQLDataTypes.h
new file mode 100644
index 00000000..31acf6b8
--- /dev/null
+++ b/Frameworks/SPMySQLFramework/Source/SPMySQLDataTypes.h
@@ -0,0 +1,75 @@
+//
+// 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 <https://github.com/sequelpro/sequelpro>
+
+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;
+extern NSString *SPMySQLJsonType;
diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLDataTypes.m b/Frameworks/SPMySQLFramework/Source/SPMySQLDataTypes.m
new file mode 100644
index 00000000..d7f54c0e
--- /dev/null
+++ b/Frameworks/SPMySQLFramework/Source/SPMySQLDataTypes.m
@@ -0,0 +1,77 @@
+//
+// SPMySQLDataTypes.m
+// 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 <https://github.com/sequelpro/sequelpro>
+
+#import "SPMySQLDataTypes.h"
+
+NSString *SPMySQLTinyIntType = @"TINYINT";
+NSString *SPMySQLSmallIntType = @"SMALLINT";
+NSString *SPMySQLMediumIntType = @"MEDIUMINT";
+NSString *SPMySQLIntType = @"INT";
+NSString *SPMySQLBigIntType = @"BIGINT";
+NSString *SPMySQLFloatType = @"FLOAT";
+NSString *SPMySQLDoubleType = @"DOUBLE";
+NSString *SPMySQLDoublePrecisionType = @"DOUBLE PRECISION";
+NSString *SPMySQLRealType = @"REAL";
+NSString *SPMySQLDecimalType = @"DECIMAL";
+NSString *SPMySQLBitType = @"BIT";
+NSString *SPMySQLSerialType = @"SERIAL";
+NSString *SPMySQLBoolType = @"BOOL";
+NSString *SPMySQLBoolean = @"BOOLEAN";
+NSString *SPMySQLDecType = @"DEC";
+NSString *SPMySQLFixedType = @"FIXED";
+NSString *SPMySQLNumericType = @"NUMERIC";
+NSString *SPMySQLCharType = @"CHAR";
+NSString *SPMySQLVarCharType = @"VARCHAR";
+NSString *SPMySQLTinyTextType = @"TINYTEXT";
+NSString *SPMySQLTextType = @"TEXT";
+NSString *SPMySQLMediumTextType = @"MEDIUMTEXT";
+NSString *SPMySQLLongTextType = @"LONGTEXT";
+NSString *SPMySQLTinyBlobType = @"TINYBLOB";
+NSString *SPMySQLMediumBlobType = @"MEDIUMBLOB";
+NSString *SPMySQLBlobType = @"BLOB";
+NSString *SPMySQLLongBlobType = @"LONGBLOB";
+NSString *SPMySQLBinaryType = @"BINARY";
+NSString *SPMySQLVarBinaryType = @"VARBINARY";
+NSString *SPMySQLEnumType = @"ENUM";
+NSString *SPMySQLSetType = @"SET";
+NSString *SPMySQLDateType = @"DATE";
+NSString *SPMySQLDatetimeType = @"DATETIME";
+NSString *SPMySQLTimestampType = @"TIMESTAMP";
+NSString *SPMySQLTimeType = @"TIME";
+NSString *SPMySQLYearType = @"YEAR";
+NSString *SPMySQLGeometryType = @"GEOMETRY";
+NSString *SPMySQLPointType = @"POINT";
+NSString *SPMySQLLineStringType = @"LINESTRING";
+NSString *SPMySQLPolygonType = @"POLYGON";
+NSString *SPMySQLMultiPointType = @"MULTIPOINT";
+NSString *SPMySQLMultiLineStringType = @"MULTILINESTRING";
+NSString *SPMySQLMultiPolygonType = @"MULTIPOLYGON";
+NSString *SPMySQLGeometryCollectionType = @"GEOMETRYCOLLECTION";
+NSString *SPMySQLJsonType = @"JSON";
diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLEmptyResult.h b/Frameworks/SPMySQLFramework/Source/SPMySQLEmptyResult.h
new file mode 100644
index 00000000..577a1ca0
--- /dev/null
+++ b/Frameworks/SPMySQLFramework/Source/SPMySQLEmptyResult.h
@@ -0,0 +1,39 @@
+//
+// SPMySQLEmptyResult.h
+// SPMySQLFramework
+//
+// Created by Rowan Beentje (rowan.beent.je) on March 11, 2013
+// Copyright (c) 2013 Rowan Beentje. 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 <https://github.com/sequelpro/sequelpro>
+
+@interface SPMySQLEmptyResult : SPMySQLResult {
+
+ id delegate;
+
+}
+
+@property (readwrite, assign) id delegate;
+
+@end
diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLEmptyResult.m b/Frameworks/SPMySQLFramework/Source/SPMySQLEmptyResult.m
new file mode 100644
index 00000000..db63e12e
--- /dev/null
+++ b/Frameworks/SPMySQLFramework/Source/SPMySQLEmptyResult.m
@@ -0,0 +1,139 @@
+//
+// $$
+//
+// SPMySQLEmptyResult.m
+// SPMySQLFramework
+//
+// Created by Rowan Beentje (rowan.beent.je) on March 11, 2013
+// Copyright (c) 2013 Rowan Beentje. 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 <https://github.com/sequelpro/sequelpro>
+
+#import "SPMySQLEmptyResult.h"
+
+@implementation SPMySQLEmptyResult
+
+@synthesize delegate;
+
+#pragma mark -
+#pragma mark Setup and teardown
+
+/**
+ * Override the standard SPMySQLResult interface
+ */
+- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding
+{
+ return [super init];
+}
+
+- (void)dealloc
+{
+ [super dealloc];
+}
+
+#pragma mark -
+#pragma mark Overrides
+
+- (NSUInteger)numberOfFields
+{
+ return 0;
+}
+
+- (unsigned long long)numberOfRows
+{
+ return 0;
+}
+
+- (NSArray *)fieldNames
+{
+ return nil;
+}
+
+- (void)seekToRow:(unsigned long long)targetRow
+{
+}
+
+- (BOOL)dataDownloaded
+{
+ return YES;
+}
+
+- (id)getRow
+{
+ return nil;
+}
+
+- (NSArray *)getRowAsArray
+{
+ return nil;
+}
+
+- (NSDictionary *)getRowAsDictionary
+{
+ return nil;
+}
+
+- (id)getRowAsType:(SPMySQLResultRowType)theType
+{
+ return nil;
+}
+
+- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len
+{
+ return 0;
+}
+
+- (NSArray *)fieldDefinitions
+{
+ return nil;
+}
+
+- (void)startDownload
+{
+}
+
+- (void)cancelResultLoad
+{
+}
+
+- (void)removeAllRows
+{
+}
+
+- (id)_stringWithBytes:(const void *)bytes length:(NSUInteger)length
+{
+ return nil;
+}
+
+- (NSString *)_lossyStringWithBytes:(const void *)bytes length:(NSUInteger)length wasLossy:(BOOL *)outLossy
+{
+ return nil;
+}
+
+- (id)_getObjectFromBytes:(char *)bytes ofLength:(NSUInteger)length fieldDefinitionIndex:(NSUInteger)fieldIndex previewLength:(NSUInteger)previewLength
+{
+ return nil;
+}
+
+@end