From cc3c436432e592d15c46a4a9e38c6cb689eca0ee Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Mon, 20 Feb 2012 00:51:47 +0000 Subject: Initial commit of the new SPMySQL Framework, which is added to the project and ready for use but not yet integrated. This new framework should provide much of the functionality required from MCPKit and is based around its interface for relatively easy integration. The largest missing component is Hans' structure code which I believe is better placed outside the framework. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From the Readme file: The SPMySQL Framework is intended to provide a stable MySQL connection framework, with the ability to run text-based queries and rapidly retrieve result sets with conversion from MySQL data types to Cocoa objects. SPMySQL.framework has an interface loosely based around that provided by MCPKit by Serge Cohen and Bertrand Mansion (http://mysql-cocoa.sourceforge.net/), and in particular the heavily modified Sequel Pro version (http://www.sequelpro.com/). It is a full rewrite of the original framework, although it includes code from patches implementing the following Sequel Pro functionality, largely contributed by Hans-Jörg Bibiko, Stuart Connolly, Jakob Egger, and Rowan Beentje: - Connection locking (Jakob et al) - Ping & keepalive (Rowan et al) - Query cancellation (Rowan et al) - Delegate setup (Stuart et al) - SSL support (Rowan et al) - Connection checking (Rowan et al) - Version state (Stuart et al) - Maximum packet size control (Hans et al) - Result multithreading and streaming (Rowan et al) - Improved encoding support & switching (Rowan et al) - Database structure; moved to inside the app (Hans et al) - Query reattempts and error-handling approach (Rowan et al) - Geometry result class (Hans et al) - Connection proxy (Stuart et al) --- .../English.lproj/InfoPlist.strings | 2 + .../MySQL Client Libraries/include/my_alloc.h | 51 + .../MySQL Client Libraries/include/my_list.h | 45 + .../MySQL Client Libraries/include/mysql.h | 872 ++++ .../MySQL Client Libraries/include/mysql_com.h | 532 ++ .../MySQL Client Libraries/include/mysql_embed.h | 31 + .../MySQL Client Libraries/include/mysql_time.h | 55 + .../MySQL Client Libraries/include/mysql_version.h | 30 + .../MySQL Client Libraries/include/typelib.h | 39 + Frameworks/SPMySQLFramework/Readme.txt | 44 + Frameworks/SPMySQLFramework/Resources/Info.plist | 28 + .../SPMySQLFramework.xcodeproj/project.pbxproj | 606 +++ .../SPMySQLFramework.xcodeproj/rowan.mode1v3 | 1435 ++++++ .../SPMySQLFramework.xcodeproj/rowan.pbxuser | 5058 ++++++++++++++++++++ .../SPMySQLFramework/Source/SPMySQL Private APIs.h | 110 + Frameworks/SPMySQLFramework/Source/SPMySQL.h | 62 + .../SPMySQLConnection Categories/Conversion.h | 60 + .../SPMySQLConnection Categories/Conversion.m | 97 + .../Databases & Tables.h | 49 + .../Databases & Tables.m | 258 + .../Delegate & Proxy.h | 36 + .../Delegate & Proxy.m | 133 + .../Source/SPMySQLConnection Categories/Encoding.h | 53 + .../Source/SPMySQLConnection Categories/Encoding.m | 414 ++ .../Source/SPMySQLConnection Categories/Locking.h | 41 + .../Source/SPMySQLConnection Categories/Locking.m | 104 + .../SPMySQLConnection Categories/Max Packet Size.h | 40 + .../SPMySQLConnection Categories/Max Packet Size.m | 196 + .../Ping & KeepAlive.h | 58 + .../Ping & KeepAlive.m | 227 + .../Querying & Preparation.h | 103 + .../Querying & Preparation.m | 622 +++ .../SPMySQLConnection Categories/Server Info.h | 50 + .../SPMySQLConnection Categories/Server Info.m | 175 + .../SPMySQLFramework/Source/SPMySQLConnection.h | 177 + .../SPMySQLFramework/Source/SPMySQLConnection.m | 834 ++++ .../Source/SPMySQLConnectionDelegate.h | 106 + .../Source/SPMySQLConnectionProxy.h | 77 + .../SPMySQLFramework/Source/SPMySQLConstants.h | 76 + .../Source/SPMySQLFastStreamingResult.h | 47 + .../Source/SPMySQLFastStreamingResult.m | 417 ++ .../Source/SPMySQLFramework_Prefix.pch | 11 + .../SPMySQLFramework/Source/SPMySQLGeometryData.h | 53 + .../SPMySQLFramework/Source/SPMySQLGeometryData.m | 810 ++++ .../SPMySQLResult Categories/Field Definitions.h | 38 + .../SPMySQLResult Categories/Field Definitions.m | 557 +++ Frameworks/SPMySQLFramework/Source/SPMySQLResult.h | 120 + Frameworks/SPMySQLFramework/Source/SPMySQLResult.m | 459 ++ .../Source/SPMySQLStreamingResult.h | 54 + .../Source/SPMySQLStreamingResult.m | 246 + .../Source/SPMySQLStringAdditions.h | 39 + .../Source/SPMySQLStringAdditions.m | 57 + .../SPMySQLFramework/Source/SPMySQLUtilities.h | 45 + Frameworks/SPMySQLFramework/build-mysql-client.sh | 171 + .../build/Debug/SPMySQL.framework/Headers | 1 + .../build/Debug/SPMySQL.framework/Resources | 1 + .../build/Debug/SPMySQL.framework/SPMySQL | 1 + .../Versions/A/Headers/Databases & Tables.h | 49 + .../Versions/A/Headers/Delegate & Proxy.h | 36 + .../Versions/A/Headers/Encoding.h | 53 + .../Versions/A/Headers/Field Definitions.h | 38 + .../Versions/A/Headers/Max Packet Size.h | 40 + .../Versions/A/Headers/Querying & Preparation.h | 103 + .../SPMySQL.framework/Versions/A/Headers/SPMySQL.h | 62 + .../Versions/A/Headers/SPMySQLConnection.h | 177 + .../Versions/A/Headers/SPMySQLConnectionDelegate.h | 106 + .../Versions/A/Headers/SPMySQLConnectionProxy.h | 77 + .../Versions/A/Headers/SPMySQLConstants.h | 76 + .../A/Headers/SPMySQLFastStreamingResult.h | 47 + .../Versions/A/Headers/SPMySQLGeometryData.h | 53 + .../Versions/A/Headers/SPMySQLResult.h | 120 + .../Versions/A/Headers/SPMySQLStreamingResult.h | 54 + .../Versions/A/Headers/Server Info.h | 50 + .../A/Resources/English.lproj/InfoPlist.strings | Bin 0 -> 92 bytes .../Versions/A/Resources/Info.plist | 40 + .../Debug/SPMySQL.framework/Versions/A/SPMySQL | Bin 0 -> 1249328 bytes .../build/Debug/SPMySQL.framework/Versions/Current | 1 + .../build/Release/SPMySQL.framework/Headers | 1 + .../build/Release/SPMySQL.framework/Resources | 1 + .../build/Release/SPMySQL.framework/SPMySQL | 1 + .../Versions/A/Headers/Databases & Tables.h | 49 + .../Versions/A/Headers/Delegate & Proxy.h | 36 + .../Versions/A/Headers/Encoding.h | 53 + .../Versions/A/Headers/Field Definitions.h | 38 + .../Versions/A/Headers/Max Packet Size.h | 40 + .../Versions/A/Headers/Querying & Preparation.h | 103 + .../SPMySQL.framework/Versions/A/Headers/SPMySQL.h | 62 + .../Versions/A/Headers/SPMySQLConnection.h | 177 + .../Versions/A/Headers/SPMySQLConnectionDelegate.h | 106 + .../Versions/A/Headers/SPMySQLConnectionProxy.h | 77 + .../Versions/A/Headers/SPMySQLConstants.h | 76 + .../A/Headers/SPMySQLFastStreamingResult.h | 47 + .../Versions/A/Headers/SPMySQLGeometryData.h | 53 + .../Versions/A/Headers/SPMySQLResult.h | 120 + .../Versions/A/Headers/SPMySQLStreamingResult.h | 54 + .../Versions/A/Headers/Server Info.h | 50 + .../A/Resources/English.lproj/InfoPlist.strings | Bin 0 -> 92 bytes .../Versions/A/Resources/Info.plist | 40 + .../Release/SPMySQL.framework/Versions/A/SPMySQL | Bin 0 -> 2249976 bytes .../Release/SPMySQL.framework/Versions/Current | 1 + .../Objects-normal/x86_64/SPMySQL.LinkFileList | 16 + .../SPMySQL-all-target-headers.hmap | Bin 0 -> 2453 bytes .../SPMySQL-generated-files.hmap | Bin 0 -> 121 bytes .../SPMySQL-own-target-headers.hmap | Bin 0 -> 3221 bytes .../SPMySQL-project-headers.hmap | Bin 0 -> 1716 bytes .../SPMySQL.framework.build/SPMySQL.framework.dep | 142 + .../SPMySQL.framework.build/SPMySQL.framework~.dep | 101 + .../Debug/SPMySQL.framework.build/SPMySQL.hmap | Bin 0 -> 3249 bytes .../StaticAnalyzer/normal/x86_64/Conversion.plist | 12 + .../normal/x86_64/Databases & Tables.plist | 12 + .../normal/x86_64/Delegate & Proxy.plist | 12 + .../StaticAnalyzer/normal/x86_64/Encoding.plist | 12 + .../normal/x86_64/Field Definitions.plist | 12 + .../StaticAnalyzer/normal/x86_64/Locking.plist | 12 + .../normal/x86_64/Max Packet Size.plist | 12 + .../normal/x86_64/Ping & KeepAlive.plist | 12 + .../normal/x86_64/Querying & Preparation.plist | 12 + .../normal/x86_64/SPMySQLConnection.plist | 12 + .../normal/x86_64/SPMySQLFastStreamingResult.plist | 12 + .../normal/x86_64/SPMySQLGeometryData.plist | 12 + .../normal/x86_64/SPMySQLResult.plist | 12 + .../normal/x86_64/SPMySQLStreamingResult.plist | 12 + .../normal/x86_64/SPMySQLStringAdditions.plist | 12 + .../StaticAnalyzer/normal/x86_64/Server Info.plist | 12 + .../Debug/SPMySQL.framework.build/build-state.dat | 2676 +++++++++++ .../Debug/SPMySQL.framework.build/build-state~.dat | 1941 ++++++++ .../x86_64/SPMySQLFramework.LinkFileList | 4 + .../SPMySQLFramework.build/SPMySQL.framework.dep | 26 + .../SPMySQLFramework-all-target-headers.hmap | Bin 0 -> 1615 bytes .../SPMySQLFramework-generated-files.hmap | Bin 0 -> 121 bytes .../SPMySQLFramework-own-target-headers.hmap | Bin 0 -> 1615 bytes .../SPMySQLFramework-project-headers.hmap | Bin 0 -> 1204 bytes .../SPMySQLFramework.build/SPMySQLFramework.dep | 26 + .../SPMySQLFramework.build/SPMySQLFramework.hmap | Bin 0 -> 2411 bytes .../SPMySQLFramework.build/SPMySQLFramework~.dep | 26 + .../Debug/SPMySQLFramework.build/build-state.dat | 573 +++ .../Debug/SPMySQLFramework.build/build-state~.dat | 573 +++ .../Objects-normal/i386/SPMySQL | Bin 0 -> 1033464 bytes .../Objects-normal/i386/SPMySQL.LinkFileList | 16 + .../Objects-normal/x86_64/SPMySQL | Bin 0 -> 1209176 bytes .../Objects-normal/x86_64/SPMySQL.LinkFileList | 16 + .../SPMySQL-all-target-headers.hmap | Bin 0 -> 2369 bytes .../SPMySQL-generated-files.hmap | Bin 0 -> 121 bytes .../SPMySQL-own-target-headers.hmap | Bin 0 -> 3137 bytes .../SPMySQL-project-headers.hmap | Bin 0 -> 1632 bytes .../SPMySQL.framework.build/SPMySQL.framework.dep | 95 + .../SPMySQL.framework.build/SPMySQL.framework~.dep | 88 + .../Release/SPMySQL.framework.build/SPMySQL.hmap | Bin 0 -> 3165 bytes .../StaticAnalyzer/normal/i386/Conversion.plist | 12 + .../normal/i386/Databases & Tables.plist | 12 + .../normal/i386/Delegate & Proxy.plist | 12 + .../StaticAnalyzer/normal/i386/Encoding.plist | 12 + .../normal/i386/Field Definitions.plist | 12 + .../StaticAnalyzer/normal/i386/Locking.plist | 12 + .../normal/i386/Max Packet Size.plist | 12 + .../normal/i386/Ping & KeepAlive.plist | 12 + .../normal/i386/Querying & Preparation.plist | 12 + .../normal/i386/SPMySQLConnection.plist | 12 + .../normal/i386/SPMySQLFastStreamingResult.plist | 12 + .../normal/i386/SPMySQLGeometryData.plist | 12 + .../StaticAnalyzer/normal/i386/SPMySQLResult.plist | 12 + .../normal/i386/SPMySQLStreamingResult.plist | 12 + .../normal/i386/SPMySQLStringAdditions.plist | 12 + .../StaticAnalyzer/normal/i386/Server Info.plist | 12 + .../StaticAnalyzer/normal/x86_64/Conversion.plist | 12 + .../normal/x86_64/Databases & Tables.plist | 12 + .../normal/x86_64/Delegate & Proxy.plist | 12 + .../StaticAnalyzer/normal/x86_64/Encoding.plist | 12 + .../normal/x86_64/Field Definitions.plist | 12 + .../StaticAnalyzer/normal/x86_64/Locking.plist | 12 + .../normal/x86_64/Max Packet Size.plist | 12 + .../normal/x86_64/Ping & KeepAlive.plist | 12 + .../normal/x86_64/Querying & Preparation.plist | 12 + .../normal/x86_64/SPMySQLConnection.plist | 12 + .../normal/x86_64/SPMySQLFastStreamingResult.plist | 12 + .../normal/x86_64/SPMySQLGeometryData.plist | 12 + .../normal/x86_64/SPMySQLResult.plist | 12 + .../normal/x86_64/SPMySQLStreamingResult.plist | 12 + .../normal/x86_64/SPMySQLStringAdditions.plist | 12 + .../StaticAnalyzer/normal/x86_64/Server Info.plist | 12 + .../SPMySQL.framework.build/build-state.dat | 1690 +++++++ .../SPMySQL.framework.build/build-state~.dat | 1498 ++++++ .../SPMySQLFramework.pbxindex/categories.pbxbtree | Bin 0 -> 3076 bytes .../SPMySQLFramework.pbxindex/cdecls.pbxbtree | Bin 0 -> 544304 bytes .../SPMySQLFramework.pbxindex/decls.pbxbtree | Bin 0 -> 541600 bytes .../SPMySQLFramework.pbxindex/files.pbxbtree | Bin 0 -> 7140 bytes .../SPMySQLFramework.pbxindex/imports.pbxbtree | Bin 0 -> 20476 bytes .../SPMySQLFramework.pbxindex/pbxindex.header | Bin 0 -> 24 bytes .../SPMySQLFramework.pbxindex/protocols.pbxbtree | Bin 0 -> 2412 bytes .../SPMySQLFramework.pbxindex/refs.pbxbtree | Bin 0 -> 415996 bytes .../strings.pbxstrings/control | Bin 0 -> 1048596 bytes .../strings.pbxstrings/strings | Bin 0 -> 1189076 bytes .../SPMySQLFramework.pbxindex/subclasses.pbxbtree | Bin 0 -> 3044 bytes .../SPMySQLFramework.pbxindex/symbols0.pbxsymbols | Bin 0 -> 2066312 bytes 194 files changed, 28563 insertions(+) create mode 100644 Frameworks/SPMySQLFramework/English.lproj/InfoPlist.strings create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_list.h create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_embed.h create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/include/typelib.h create mode 100644 Frameworks/SPMySQLFramework/Readme.txt create mode 100644 Frameworks/SPMySQLFramework/Resources/Info.plist create mode 100644 Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj create mode 100644 Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.mode1v3 create mode 100644 Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.pbxuser create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQL Private APIs.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQL.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLResult.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLResult.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h create mode 100755 Frameworks/SPMySQLFramework/build-mysql-client.sh create mode 120000 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers create mode 120000 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources create mode 120000 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings create mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist create mode 100755 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL create mode 120000 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current create mode 120000 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers create mode 120000 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources create mode 120000 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings create mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist create mode 100755 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL create mode 120000 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat create mode 100755 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList create mode 100755 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree create mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols (limited to 'Frameworks') diff --git a/Frameworks/SPMySQLFramework/English.lproj/InfoPlist.strings b/Frameworks/SPMySQLFramework/English.lproj/InfoPlist.strings new file mode 100644 index 00000000..88f65cf6 --- /dev/null +++ b/Frameworks/SPMySQLFramework/English.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h new file mode 100644 index 00000000..93b7438a --- /dev/null +++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h @@ -0,0 +1,51 @@ +/* Copyright (C) 2000 MySQL AB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +/* + Data structures for mysys/my_alloc.c (root memory allocator) +*/ + +#ifndef _my_alloc_h +#define _my_alloc_h + +#define ALLOC_MAX_BLOCK_TO_DROP 4096 +#define ALLOC_MAX_BLOCK_USAGE_BEFORE_DROP 10 + +typedef struct st_used_mem +{ /* struct for once_alloc (block) */ + struct st_used_mem *next; /* Next block in use */ + unsigned int left; /* memory left in block */ + unsigned int size; /* size of block */ +} USED_MEM; + + +typedef struct st_mem_root +{ + USED_MEM *free; /* blocks with free memory in it */ + USED_MEM *used; /* blocks almost without free memory */ + USED_MEM *pre_alloc; /* preallocated block */ + /* if block have less memory it will be put in 'used' list */ + size_t min_malloc; + size_t block_size; /* initial block size */ + unsigned int block_num; /* allocated blocks counter */ + /* + first free block in queue test counter (if it exceed + MAX_BLOCK_USAGE_BEFORE_DROP block will be dropped in 'used' list) + */ + unsigned int first_block_usage; + + void (*error_handler)(void); +} MEM_ROOT; +#endif diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_list.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_list.h new file mode 100644 index 00000000..775b5658 --- /dev/null +++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_list.h @@ -0,0 +1,45 @@ +/* Copyright (C) 2000 MySQL AB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +#ifndef _list_h_ +#define _list_h_ + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct st_list { + struct st_list *prev,*next; + void *data; +} LIST; + +typedef int (*list_walk_action)(void *,void *); + +extern LIST *list_add(LIST *root,LIST *element); +extern LIST *list_delete(LIST *root,LIST *element); +extern LIST *list_cons(void *data,LIST *root); +extern LIST *list_reverse(LIST *root); +extern void list_free(LIST *root,unsigned int free_data); +extern unsigned int list_length(LIST *); +extern int list_walk(LIST *,list_walk_action action,unsigned char * argument); + +#define list_rest(a) ((a)->next) +#define list_push(a,b) (a)=list_cons((b),(a)) +#define list_pop(A) {LIST *old=(A); (A)=list_delete(old,old) ; my_free((unsigned char *) old,MYF(MY_FAE)); } + +#ifdef __cplusplus +} +#endif +#endif diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h new file mode 100644 index 00000000..da477278 --- /dev/null +++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h @@ -0,0 +1,872 @@ +/* + Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +/* + This file defines the client API to MySQL and also the ABI of the + dynamically linked libmysqlclient. + + The ABI should never be changed in a released product of MySQL + thus you need to take great care when changing the file. In case + the file is changed so the ABI is broken, you must also + update the SHAREDLIB_MAJOR_VERSION in configure.in . + +*/ + +#ifndef _mysql_h +#define _mysql_h + +#ifdef _AIX /* large-file support will break without this */ +#include +#endif + +#ifdef __CYGWIN__ /* CYGWIN implements a UNIX API */ +#undef WIN +#undef _WIN +#undef _WIN32 +#undef _WIN64 +#undef __WIN__ +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef _global_h /* If not standard header */ +#ifndef MYSQL_ABI_CHECK +#include +#endif +#ifdef __LCC__ +#include /* For windows */ +#endif +typedef char my_bool; +#if (defined(_WIN32) || defined(_WIN64)) && !defined(__WIN__) +#define __WIN__ +#endif +#if !defined(__WIN__) +#define STDCALL +#else +#define STDCALL __stdcall +#endif + +#ifndef my_socket_defined +#ifdef __WIN__ +#define my_socket SOCKET +#else +typedef int my_socket; +#endif /* __WIN__ */ +#endif /* my_socket_defined */ +#endif /* _global_h */ + +#include "mysql_version.h" +#include "mysql_com.h" +#include "mysql_time.h" + +#include "my_list.h" /* for LISTs used in 'MYSQL' and 'MYSQL_STMT' */ + +extern unsigned int mysql_port; +extern char *mysql_unix_port; + +#define CLIENT_NET_READ_TIMEOUT 365*24*3600 /* Timeout on read */ +#define CLIENT_NET_WRITE_TIMEOUT 365*24*3600 /* Timeout on write */ + +#ifdef __NETWARE__ +#pragma pack(push, 8) /* 8 byte alignment */ +#endif + +#define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG) +#define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG) +#define IS_BLOB(n) ((n) & BLOB_FLAG) +#define IS_NUM(t) ((t) <= MYSQL_TYPE_INT24 || (t) == MYSQL_TYPE_YEAR || (t) == MYSQL_TYPE_NEWDECIMAL) +#define IS_NUM_FIELD(f) ((f)->flags & NUM_FLAG) +#define INTERNAL_NUM_FIELD(f) (((f)->type <= MYSQL_TYPE_INT24 && ((f)->type != MYSQL_TYPE_TIMESTAMP || (f)->length == 14 || (f)->length == 8)) || (f)->type == MYSQL_TYPE_YEAR) +#define IS_LONGDATA(t) ((t) >= MYSQL_TYPE_TINY_BLOB && (t) <= MYSQL_TYPE_STRING) + + +typedef struct st_mysql_field { + char *name; /* Name of column */ + char *org_name; /* Original column name, if an alias */ + char *table; /* Table of column if column was a field */ + char *org_table; /* Org table name, if table was an alias */ + char *db; /* Database for table */ + char *catalog; /* Catalog for table */ + char *def; /* Default value (set by mysql_list_fields) */ + unsigned long length; /* Width of column (create length) */ + unsigned long max_length; /* Max width for selected set */ + unsigned int name_length; + unsigned int org_name_length; + unsigned int table_length; + unsigned int org_table_length; + unsigned int db_length; + unsigned int catalog_length; + unsigned int def_length; + unsigned int flags; /* Div flags */ + unsigned int decimals; /* Number of decimals in field */ + unsigned int charsetnr; /* Character set */ + enum enum_field_types type; /* Type of field. See mysql_com.h for types */ + void *extension; +} MYSQL_FIELD; + +typedef char **MYSQL_ROW; /* return data as array of strings */ +typedef unsigned int MYSQL_FIELD_OFFSET; /* offset to current field */ + +#ifndef _global_h +#if defined(NO_CLIENT_LONG_LONG) +typedef unsigned long my_ulonglong; +#elif defined (__WIN__) +typedef unsigned __int64 my_ulonglong; +#else +typedef unsigned long long my_ulonglong; +#endif +#endif + +#include "typelib.h" + +#define MYSQL_COUNT_ERROR (~(my_ulonglong) 0) + +/* backward compatibility define - to be removed eventually */ +#define ER_WARN_DATA_TRUNCATED WARN_DATA_TRUNCATED + +typedef struct st_mysql_rows { + struct st_mysql_rows *next; /* list of rows */ + MYSQL_ROW data; + unsigned long length; +} MYSQL_ROWS; + +typedef MYSQL_ROWS *MYSQL_ROW_OFFSET; /* offset to current row */ + +#include "my_alloc.h" + +typedef struct embedded_query_result EMBEDDED_QUERY_RESULT; +typedef struct st_mysql_data { + MYSQL_ROWS *data; + struct embedded_query_result *embedded_info; + MEM_ROOT alloc; + my_ulonglong rows; + unsigned int fields; + /* extra info for embedded library */ + void *extension; +} MYSQL_DATA; + +enum mysql_option +{ + MYSQL_OPT_CONNECT_TIMEOUT, MYSQL_OPT_COMPRESS, MYSQL_OPT_NAMED_PIPE, + MYSQL_INIT_COMMAND, MYSQL_READ_DEFAULT_FILE, MYSQL_READ_DEFAULT_GROUP, + MYSQL_SET_CHARSET_DIR, MYSQL_SET_CHARSET_NAME, MYSQL_OPT_LOCAL_INFILE, + MYSQL_OPT_PROTOCOL, MYSQL_SHARED_MEMORY_BASE_NAME, MYSQL_OPT_READ_TIMEOUT, + MYSQL_OPT_WRITE_TIMEOUT, MYSQL_OPT_USE_RESULT, + MYSQL_OPT_USE_REMOTE_CONNECTION, MYSQL_OPT_USE_EMBEDDED_CONNECTION, + MYSQL_OPT_GUESS_CONNECTION, MYSQL_SET_CLIENT_IP, MYSQL_SECURE_AUTH, + MYSQL_REPORT_DATA_TRUNCATION, MYSQL_OPT_RECONNECT, + MYSQL_OPT_SSL_VERIFY_SERVER_CERT +}; + +struct st_mysql_options { + unsigned int connect_timeout, read_timeout, write_timeout; + unsigned int port, protocol; + unsigned long client_flag; + char *host,*user,*password,*unix_socket,*db; + struct st_dynamic_array *init_commands; + char *my_cnf_file,*my_cnf_group, *charset_dir, *charset_name; + char *ssl_key; /* PEM key file */ + char *ssl_cert; /* PEM cert file */ + char *ssl_ca; /* PEM CA file */ + char *ssl_capath; /* PEM directory of CA-s? */ + char *ssl_cipher; /* cipher to use */ + char *shared_memory_base_name; + unsigned long max_allowed_packet; + my_bool use_ssl; /* if to use SSL or not */ + my_bool compress,named_pipe; + /* + On connect, find out the replication role of the server, and + establish connections to all the peers + */ + my_bool rpl_probe; + /* + Each call to mysql_real_query() will parse it to tell if it is a read + or a write, and direct it to the slave or the master + */ + my_bool rpl_parse; + /* + If set, never read from a master, only from slave, when doing + a read that is replication-aware + */ + my_bool no_master_reads; +#if !defined(CHECK_EMBEDDED_DIFFERENCES) || defined(EMBEDDED_LIBRARY) + my_bool separate_thread; +#endif + enum mysql_option methods_to_use; + char *client_ip; + /* Refuse client connecting to server if it uses old (pre-4.1.1) protocol */ + my_bool secure_auth; + /* 0 - never report, 1 - always report (default) */ + my_bool report_data_truncation; + + /* function pointers for local infile support */ + int (*local_infile_init)(void **, const char *, void *); + int (*local_infile_read)(void *, char *, unsigned int); + void (*local_infile_end)(void *); + int (*local_infile_error)(void *, char *, unsigned int); + void *local_infile_userdata; + void *extension; +}; + +enum mysql_status +{ + MYSQL_STATUS_READY, MYSQL_STATUS_GET_RESULT, MYSQL_STATUS_USE_RESULT, + MYSQL_STATUS_STATEMENT_GET_RESULT +}; + +enum mysql_protocol_type +{ + MYSQL_PROTOCOL_DEFAULT, MYSQL_PROTOCOL_TCP, MYSQL_PROTOCOL_SOCKET, + MYSQL_PROTOCOL_PIPE, MYSQL_PROTOCOL_MEMORY +}; +/* + There are three types of queries - the ones that have to go to + the master, the ones that go to a slave, and the adminstrative + type which must happen on the pivot connectioin +*/ +enum mysql_rpl_type +{ + MYSQL_RPL_MASTER, MYSQL_RPL_SLAVE, MYSQL_RPL_ADMIN +}; + +typedef struct character_set +{ + unsigned int number; /* character set number */ + unsigned int state; /* character set state */ + const char *csname; /* collation name */ + const char *name; /* character set name */ + const char *comment; /* comment */ + const char *dir; /* character set directory */ + unsigned int mbminlen; /* min. length for multibyte strings */ + unsigned int mbmaxlen; /* max. length for multibyte strings */ +} MY_CHARSET_INFO; + +struct st_mysql_methods; +struct st_mysql_stmt; + +typedef struct st_mysql +{ + NET net; /* Communication parameters */ + unsigned char *connector_fd; /* ConnectorFd for SSL */ + char *host,*user,*passwd,*unix_socket,*server_version,*host_info; + char *info, *db; + struct charset_info_st *charset; + MYSQL_FIELD *fields; + MEM_ROOT field_alloc; + my_ulonglong affected_rows; + my_ulonglong insert_id; /* id if insert on table with NEXTNR */ + my_ulonglong extra_info; /* Not used */ + unsigned long thread_id; /* Id for connection in server */ + unsigned long packet_length; + unsigned int port; + unsigned long client_flag,server_capabilities; + unsigned int protocol_version; + unsigned int field_count; + unsigned int server_status; + unsigned int server_language; + unsigned int warning_count; + struct st_mysql_options options; + enum mysql_status status; + my_bool free_me; /* If free in mysql_close */ + my_bool reconnect; /* set to 1 if automatic reconnect */ + + /* session-wide random string */ + char scramble[SCRAMBLE_LENGTH+1]; + + /* + Set if this is the original connection, not a master or a slave we have + added though mysql_rpl_probe() or mysql_set_master()/ mysql_add_slave() + */ + my_bool rpl_pivot; + /* + Pointers to the master, and the next slave connections, points to + itself if lone connection. + */ + struct st_mysql* master, *next_slave; + + struct st_mysql* last_used_slave; /* needed for round-robin slave pick */ + /* needed for send/read/store/use result to work correctly with replication */ + struct st_mysql* last_used_con; + + LIST *stmts; /* list of all statements */ + const struct st_mysql_methods *methods; + void *thd; + /* + Points to boolean flag in MYSQL_RES or MYSQL_STMT. We set this flag + from mysql_stmt_close if close had to cancel result set of this object. + */ + my_bool *unbuffered_fetch_owner; + /* needed for embedded server - no net buffer to store the 'info' */ + char *info_buffer; + void *extension; +} MYSQL; + + +typedef struct st_mysql_res { + my_ulonglong row_count; + MYSQL_FIELD *fields; + MYSQL_DATA *data; + MYSQL_ROWS *data_cursor; + unsigned long *lengths; /* column lengths of current row */ + MYSQL *handle; /* for unbuffered reads */ + const struct st_mysql_methods *methods; + MYSQL_ROW row; /* If unbuffered read */ + MYSQL_ROW current_row; /* buffer to current row */ + MEM_ROOT field_alloc; + unsigned int field_count, current_field; + my_bool eof; /* Used by mysql_fetch_row */ + /* mysql_stmt_close() had to cancel this result */ + my_bool unbuffered_fetch_cancelled; + void *extension; +} MYSQL_RES; + +#define MAX_MYSQL_MANAGER_ERR 256 +#define MAX_MYSQL_MANAGER_MSG 256 + +#define MANAGER_OK 200 +#define MANAGER_INFO 250 +#define MANAGER_ACCESS 401 +#define MANAGER_CLIENT_ERR 450 +#define MANAGER_INTERNAL_ERR 500 + +#if !defined(MYSQL_SERVER) && !defined(MYSQL_CLIENT) +#define MYSQL_CLIENT +#endif + + +typedef struct st_mysql_manager +{ + NET net; + char *host, *user, *passwd; + char *net_buf, *net_buf_pos, *net_data_end; + unsigned int port; + int cmd_status; + int last_errno; + int net_buf_size; + my_bool free_me; + my_bool eof; + char last_error[MAX_MYSQL_MANAGER_ERR]; + void *extension; +} MYSQL_MANAGER; + +typedef struct st_mysql_parameters +{ + unsigned long *p_max_allowed_packet; + unsigned long *p_net_buffer_length; + void *extension; +} MYSQL_PARAMETERS; + +#if !defined(MYSQL_SERVER) && !defined(EMBEDDED_LIBRARY) +#define max_allowed_packet (*mysql_get_parameters()->p_max_allowed_packet) +#define net_buffer_length (*mysql_get_parameters()->p_net_buffer_length) +#endif + +/* + Set up and bring down the server; to ensure that applications will + work when linked against either the standard client library or the + embedded server library, these functions should be called. +*/ +int STDCALL mysql_server_init(int argc, char **argv, char **groups); +void STDCALL mysql_server_end(void); + +/* + mysql_server_init/end need to be called when using libmysqld or + libmysqlclient (exactly, mysql_server_init() is called by mysql_init() so + you don't need to call it explicitely; but you need to call + mysql_server_end() to free memory). The names are a bit misleading + (mysql_SERVER* to be used when using libmysqlCLIENT). So we add more general + names which suit well whether you're using libmysqld or libmysqlclient. We + intend to promote these aliases over the mysql_server* ones. +*/ +#define mysql_library_init mysql_server_init +#define mysql_library_end mysql_server_end + +MYSQL_PARAMETERS *STDCALL mysql_get_parameters(void); + +/* + Set up and bring down a thread; these function should be called + for each thread in an application which opens at least one MySQL + connection. All uses of the connection(s) should be between these + function calls. +*/ +my_bool STDCALL mysql_thread_init(void); +void STDCALL mysql_thread_end(void); + +/* + Functions to get information from the MYSQL and MYSQL_RES structures + Should definitely be used if one uses shared libraries. +*/ + +my_ulonglong STDCALL mysql_num_rows(MYSQL_RES *res); +unsigned int STDCALL mysql_num_fields(MYSQL_RES *res); +my_bool STDCALL mysql_eof(MYSQL_RES *res); +MYSQL_FIELD *STDCALL mysql_fetch_field_direct(MYSQL_RES *res, + unsigned int fieldnr); +MYSQL_FIELD * STDCALL mysql_fetch_fields(MYSQL_RES *res); +MYSQL_ROW_OFFSET STDCALL mysql_row_tell(MYSQL_RES *res); +MYSQL_FIELD_OFFSET STDCALL mysql_field_tell(MYSQL_RES *res); + +unsigned int STDCALL mysql_field_count(MYSQL *mysql); +my_ulonglong STDCALL mysql_affected_rows(MYSQL *mysql); +my_ulonglong STDCALL mysql_insert_id(MYSQL *mysql); +unsigned int STDCALL mysql_errno(MYSQL *mysql); +const char * STDCALL mysql_error(MYSQL *mysql); +const char *STDCALL mysql_sqlstate(MYSQL *mysql); +unsigned int STDCALL mysql_warning_count(MYSQL *mysql); +const char * STDCALL mysql_info(MYSQL *mysql); +unsigned long STDCALL mysql_thread_id(MYSQL *mysql); +const char * STDCALL mysql_character_set_name(MYSQL *mysql); +int STDCALL mysql_set_character_set(MYSQL *mysql, const char *csname); + +MYSQL * STDCALL mysql_init(MYSQL *mysql); +my_bool STDCALL mysql_ssl_set(MYSQL *mysql, const char *key, + const char *cert, const char *ca, + const char *capath, const char *cipher); +const char * STDCALL mysql_get_ssl_cipher(MYSQL *mysql); +my_bool STDCALL mysql_change_user(MYSQL *mysql, const char *user, + const char *passwd, const char *db); +MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host, + const char *user, + const char *passwd, + const char *db, + unsigned int port, + const char *unix_socket, + unsigned long clientflag); +int STDCALL mysql_select_db(MYSQL *mysql, const char *db); +int STDCALL mysql_query(MYSQL *mysql, const char *q); +int STDCALL mysql_send_query(MYSQL *mysql, const char *q, + unsigned long length); +int STDCALL mysql_real_query(MYSQL *mysql, const char *q, + unsigned long length); +MYSQL_RES * STDCALL mysql_store_result(MYSQL *mysql); +MYSQL_RES * STDCALL mysql_use_result(MYSQL *mysql); + +/* perform query on master */ +my_bool STDCALL mysql_master_query(MYSQL *mysql, const char *q, + unsigned long length); +my_bool STDCALL mysql_master_send_query(MYSQL *mysql, const char *q, + unsigned long length); +/* perform query on slave */ +my_bool STDCALL mysql_slave_query(MYSQL *mysql, const char *q, + unsigned long length); +my_bool STDCALL mysql_slave_send_query(MYSQL *mysql, const char *q, + unsigned long length); +void STDCALL mysql_get_character_set_info(MYSQL *mysql, + MY_CHARSET_INFO *charset); + +/* local infile support */ + +#define LOCAL_INFILE_ERROR_LEN 512 + +void +mysql_set_local_infile_handler(MYSQL *mysql, + int (*local_infile_init)(void **, const char *, + void *), + int (*local_infile_read)(void *, char *, + unsigned int), + void (*local_infile_end)(void *), + int (*local_infile_error)(void *, char*, + unsigned int), + void *); + +void +mysql_set_local_infile_default(MYSQL *mysql); + + +/* + enable/disable parsing of all queries to decide if they go on master or + slave +*/ +void STDCALL mysql_enable_rpl_parse(MYSQL* mysql); +void STDCALL mysql_disable_rpl_parse(MYSQL* mysql); +/* get the value of the parse flag */ +int STDCALL mysql_rpl_parse_enabled(MYSQL* mysql); + +/* enable/disable reads from master */ +void STDCALL mysql_enable_reads_from_master(MYSQL* mysql); +void STDCALL mysql_disable_reads_from_master(MYSQL* mysql); +/* get the value of the master read flag */ +my_bool STDCALL mysql_reads_from_master_enabled(MYSQL* mysql); + +enum mysql_rpl_type STDCALL mysql_rpl_query_type(const char* q, int len); + +/* discover the master and its slaves */ +my_bool STDCALL mysql_rpl_probe(MYSQL* mysql); + +/* set the master, close/free the old one, if it is not a pivot */ +int STDCALL mysql_set_master(MYSQL* mysql, const char* host, + unsigned int port, + const char* user, + const char* passwd); +int STDCALL mysql_add_slave(MYSQL* mysql, const char* host, + unsigned int port, + const char* user, + const char* passwd); + +int STDCALL mysql_shutdown(MYSQL *mysql, + enum mysql_enum_shutdown_level + shutdown_level); +int STDCALL mysql_dump_debug_info(MYSQL *mysql); +int STDCALL mysql_refresh(MYSQL *mysql, + unsigned int refresh_options); +int STDCALL mysql_kill(MYSQL *mysql,unsigned long pid); +int STDCALL mysql_set_server_option(MYSQL *mysql, + enum enum_mysql_set_option + option); +int STDCALL mysql_ping(MYSQL *mysql); +const char * STDCALL mysql_stat(MYSQL *mysql); +const char * STDCALL mysql_get_server_info(MYSQL *mysql); +const char * STDCALL mysql_get_client_info(void); +unsigned long STDCALL mysql_get_client_version(void); +const char * STDCALL mysql_get_host_info(MYSQL *mysql); +unsigned long STDCALL mysql_get_server_version(MYSQL *mysql); +unsigned int STDCALL mysql_get_proto_info(MYSQL *mysql); +MYSQL_RES * STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild); +MYSQL_RES * STDCALL mysql_list_tables(MYSQL *mysql,const char *wild); +MYSQL_RES * STDCALL mysql_list_processes(MYSQL *mysql); +int STDCALL mysql_options(MYSQL *mysql,enum mysql_option option, + const void *arg); +void STDCALL mysql_free_result(MYSQL_RES *result); +void STDCALL mysql_data_seek(MYSQL_RES *result, + my_ulonglong offset); +MYSQL_ROW_OFFSET STDCALL mysql_row_seek(MYSQL_RES *result, + MYSQL_ROW_OFFSET offset); +MYSQL_FIELD_OFFSET STDCALL mysql_field_seek(MYSQL_RES *result, + MYSQL_FIELD_OFFSET offset); +MYSQL_ROW STDCALL mysql_fetch_row(MYSQL_RES *result); +unsigned long * STDCALL mysql_fetch_lengths(MYSQL_RES *result); +MYSQL_FIELD * STDCALL mysql_fetch_field(MYSQL_RES *result); +MYSQL_RES * STDCALL mysql_list_fields(MYSQL *mysql, const char *table, + const char *wild); +unsigned long STDCALL mysql_escape_string(char *to,const char *from, + unsigned long from_length); +unsigned long STDCALL mysql_hex_string(char *to,const char *from, + unsigned long from_length); +unsigned long STDCALL mysql_real_escape_string(MYSQL *mysql, + char *to,const char *from, + unsigned long length); +void STDCALL mysql_debug(const char *debug); +void STDCALL myodbc_remove_escape(MYSQL *mysql,char *name); +unsigned int STDCALL mysql_thread_safe(void); +my_bool STDCALL mysql_embedded(void); +MYSQL_MANAGER* STDCALL mysql_manager_init(MYSQL_MANAGER* con); +MYSQL_MANAGER* STDCALL mysql_manager_connect(MYSQL_MANAGER* con, + const char* host, + const char* user, + const char* passwd, + unsigned int port); +void STDCALL mysql_manager_close(MYSQL_MANAGER* con); +int STDCALL mysql_manager_command(MYSQL_MANAGER* con, + const char* cmd, int cmd_len); +int STDCALL mysql_manager_fetch_line(MYSQL_MANAGER* con, + char* res_buf, + int res_buf_size); +my_bool STDCALL mysql_read_query_result(MYSQL *mysql); + + +/* + The following definitions are added for the enhanced + client-server protocol +*/ + +/* statement state */ +enum enum_mysql_stmt_state +{ + MYSQL_STMT_INIT_DONE= 1, MYSQL_STMT_PREPARE_DONE, MYSQL_STMT_EXECUTE_DONE, + MYSQL_STMT_FETCH_DONE +}; + + +/* + This structure is used to define bind information, and + internally by the client library. + Public members with their descriptions are listed below + (conventionally `On input' refers to the binds given to + mysql_stmt_bind_param, `On output' refers to the binds given + to mysql_stmt_bind_result): + + buffer_type - One of the MYSQL_* types, used to describe + the host language type of buffer. + On output: if column type is different from + buffer_type, column value is automatically converted + to buffer_type before it is stored in the buffer. + buffer - On input: points to the buffer with input data. + On output: points to the buffer capable to store + output data. + The type of memory pointed by buffer must correspond + to buffer_type. See the correspondence table in + the comment to mysql_stmt_bind_param. + + The two above members are mandatory for any kind of bind. + + buffer_length - the length of the buffer. You don't have to set + it for any fixed length buffer: float, double, + int, etc. It must be set however for variable-length + types, such as BLOBs or STRINGs. + + length - On input: in case when lengths of input values + are different for each execute, you can set this to + point at a variable containining value length. This + way the value length can be different in each execute. + If length is not NULL, buffer_length is not used. + Note, length can even point at buffer_length if + you keep bind structures around while fetching: + this way you can change buffer_length before + each execution, everything will work ok. + On output: if length is set, mysql_stmt_fetch will + write column length into it. + + is_null - On input: points to a boolean variable that should + be set to TRUE for NULL values. + This member is useful only if your data may be + NULL in some but not all cases. + If your data is never NULL, is_null should be set to 0. + If your data is always NULL, set buffer_type + to MYSQL_TYPE_NULL, and is_null will not be used. + + is_unsigned - On input: used to signify that values provided for one + of numeric types are unsigned. + On output describes signedness of the output buffer. + If, taking into account is_unsigned flag, column data + is out of range of the output buffer, data for this column + is regarded truncated. Note that this has no correspondence + to the sign of result set column, if you need to find it out + use mysql_stmt_result_metadata. + error - where to write a truncation error if it is present. + possible error value is: + 0 no truncation + 1 value is out of range or buffer is too small + + Please note that MYSQL_BIND also has internals members. +*/ + +typedef struct st_mysql_bind +{ + unsigned long *length; /* output length pointer */ + my_bool *is_null; /* Pointer to null indicator */ + void *buffer; /* buffer to get/put data */ + /* set this if you want to track data truncations happened during fetch */ + my_bool *error; + unsigned char *row_ptr; /* for the current data position */ + void (*store_param_func)(NET *net, struct st_mysql_bind *param); + void (*fetch_result)(struct st_mysql_bind *, MYSQL_FIELD *, + unsigned char **row); + void (*skip_result)(struct st_mysql_bind *, MYSQL_FIELD *, + unsigned char **row); + /* output buffer length, must be set when fetching str/binary */ + unsigned long buffer_length; + unsigned long offset; /* offset position for char/binary fetch */ + unsigned long length_value; /* Used if length is 0 */ + unsigned int param_number; /* For null count and error messages */ + unsigned int pack_length; /* Internal length for packed data */ + enum enum_field_types buffer_type; /* buffer type */ + my_bool error_value; /* used if error is 0 */ + my_bool is_unsigned; /* set if integer type is unsigned */ + my_bool long_data_used; /* If used with mysql_send_long_data */ + my_bool is_null_value; /* Used if is_null is 0 */ + void *extension; +} MYSQL_BIND; + + +/* statement handler */ +typedef struct st_mysql_stmt +{ + MEM_ROOT mem_root; /* root allocations */ + LIST list; /* list to keep track of all stmts */ + MYSQL *mysql; /* connection handle */ + MYSQL_BIND *params; /* input parameters */ + MYSQL_BIND *bind; /* output parameters */ + MYSQL_FIELD *fields; /* result set metadata */ + MYSQL_DATA result; /* cached result set */ + MYSQL_ROWS *data_cursor; /* current row in cached result */ + /* + mysql_stmt_fetch() calls this function to fetch one row (it's different + for buffered, unbuffered and cursor fetch). + */ + int (*read_row_func)(struct st_mysql_stmt *stmt, + unsigned char **row); + /* copy of mysql->affected_rows after statement execution */ + my_ulonglong affected_rows; + my_ulonglong insert_id; /* copy of mysql->insert_id */ + unsigned long stmt_id; /* Id for prepared statement */ + unsigned long flags; /* i.e. type of cursor to open */ + unsigned long prefetch_rows; /* number of rows per one COM_FETCH */ + /* + Copied from mysql->server_status after execute/fetch to know + server-side cursor status for this statement. + */ + unsigned int server_status; + unsigned int last_errno; /* error code */ + unsigned int param_count; /* input parameter count */ + unsigned int field_count; /* number of columns in result set */ + enum enum_mysql_stmt_state state; /* statement state */ + char last_error[MYSQL_ERRMSG_SIZE]; /* error message */ + char sqlstate[SQLSTATE_LENGTH+1]; + /* Types of input parameters should be sent to server */ + my_bool send_types_to_server; + my_bool bind_param_done; /* input buffers were supplied */ + unsigned char bind_result_done; /* output buffers were supplied */ + /* mysql_stmt_close() had to cancel this result */ + my_bool unbuffered_fetch_cancelled; + /* + Is set to true if we need to calculate field->max_length for + metadata fields when doing mysql_stmt_store_result. + */ + my_bool update_max_length; + void *extension; +} MYSQL_STMT; + +enum enum_stmt_attr_type +{ + /* + When doing mysql_stmt_store_result calculate max_length attribute + of statement metadata. This is to be consistent with the old API, + where this was done automatically. + In the new API we do that only by request because it slows down + mysql_stmt_store_result sufficiently. + */ + STMT_ATTR_UPDATE_MAX_LENGTH, + /* + unsigned long with combination of cursor flags (read only, for update, + etc) + */ + STMT_ATTR_CURSOR_TYPE, + /* + Amount of rows to retrieve from server per one fetch if using cursors. + Accepts unsigned long attribute in the range 1 - ulong_max + */ + STMT_ATTR_PREFETCH_ROWS +}; + + +typedef struct st_mysql_methods +{ + my_bool (*read_query_result)(MYSQL *mysql); + my_bool (*advanced_command)(MYSQL *mysql, + enum enum_server_command command, + const unsigned char *header, + unsigned long header_length, + const unsigned char *arg, + unsigned long arg_length, + my_bool skip_check, + MYSQL_STMT *stmt); + MYSQL_DATA *(*read_rows)(MYSQL *mysql,MYSQL_FIELD *mysql_fields, + unsigned int fields); + MYSQL_RES * (*use_result)(MYSQL *mysql); + void (*fetch_lengths)(unsigned long *to, + MYSQL_ROW column, unsigned int field_count); + void (*flush_use_result)(MYSQL *mysql); +#if !defined(MYSQL_SERVER) || defined(EMBEDDED_LIBRARY) + MYSQL_FIELD * (*list_fields)(MYSQL *mysql); + my_bool (*read_prepare_result)(MYSQL *mysql, MYSQL_STMT *stmt); + int (*stmt_execute)(MYSQL_STMT *stmt); + int (*read_binary_rows)(MYSQL_STMT *stmt); + int (*unbuffered_fetch)(MYSQL *mysql, char **row); + void (*free_embedded_thd)(MYSQL *mysql); + const char *(*read_statistics)(MYSQL *mysql); + my_bool (*next_result)(MYSQL *mysql); + int (*read_change_user_result)(MYSQL *mysql, char *buff, const char *passwd); + int (*read_rows_from_cursor)(MYSQL_STMT *stmt); +#endif +} MYSQL_METHODS; + + +MYSQL_STMT * STDCALL mysql_stmt_init(MYSQL *mysql); +int STDCALL mysql_stmt_prepare(MYSQL_STMT *stmt, const char *query, + unsigned long length); +int STDCALL mysql_stmt_execute(MYSQL_STMT *stmt); +int STDCALL mysql_stmt_fetch(MYSQL_STMT *stmt); +int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *bind_arg, + unsigned int column, + unsigned long offset); +int STDCALL mysql_stmt_store_result(MYSQL_STMT *stmt); +unsigned long STDCALL mysql_stmt_param_count(MYSQL_STMT * stmt); +my_bool STDCALL mysql_stmt_attr_set(MYSQL_STMT *stmt, + enum enum_stmt_attr_type attr_type, + const void *attr); +my_bool STDCALL mysql_stmt_attr_get(MYSQL_STMT *stmt, + enum enum_stmt_attr_type attr_type, + void *attr); +my_bool STDCALL mysql_stmt_bind_param(MYSQL_STMT * stmt, MYSQL_BIND * bnd); +my_bool STDCALL mysql_stmt_bind_result(MYSQL_STMT * stmt, MYSQL_BIND * bnd); +my_bool STDCALL mysql_stmt_close(MYSQL_STMT * stmt); +my_bool STDCALL mysql_stmt_reset(MYSQL_STMT * stmt); +my_bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt); +my_bool STDCALL mysql_stmt_send_long_data(MYSQL_STMT *stmt, + unsigned int param_number, + const char *data, + unsigned long length); +MYSQL_RES *STDCALL mysql_stmt_result_metadata(MYSQL_STMT *stmt); +MYSQL_RES *STDCALL mysql_stmt_param_metadata(MYSQL_STMT *stmt); +unsigned int STDCALL mysql_stmt_errno(MYSQL_STMT * stmt); +const char *STDCALL mysql_stmt_error(MYSQL_STMT * stmt); +const char *STDCALL mysql_stmt_sqlstate(MYSQL_STMT * stmt); +MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_seek(MYSQL_STMT *stmt, + MYSQL_ROW_OFFSET offset); +MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_tell(MYSQL_STMT *stmt); +void STDCALL mysql_stmt_data_seek(MYSQL_STMT *stmt, my_ulonglong offset); +my_ulonglong STDCALL mysql_stmt_num_rows(MYSQL_STMT *stmt); +my_ulonglong STDCALL mysql_stmt_affected_rows(MYSQL_STMT *stmt); +my_ulonglong STDCALL mysql_stmt_insert_id(MYSQL_STMT *stmt); +unsigned int STDCALL mysql_stmt_field_count(MYSQL_STMT *stmt); + +my_bool STDCALL mysql_commit(MYSQL * mysql); +my_bool STDCALL mysql_rollback(MYSQL * mysql); +my_bool STDCALL mysql_autocommit(MYSQL * mysql, my_bool auto_mode); +my_bool STDCALL mysql_more_results(MYSQL *mysql); +int STDCALL mysql_next_result(MYSQL *mysql); +void STDCALL mysql_close(MYSQL *sock); + + +/* status return codes */ +#define MYSQL_NO_DATA 100 +#define MYSQL_DATA_TRUNCATED 101 + +#define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT) + +#ifdef USE_OLD_FUNCTIONS +MYSQL * STDCALL mysql_connect(MYSQL *mysql, const char *host, + const char *user, const char *passwd); +int STDCALL mysql_create_db(MYSQL *mysql, const char *DB); +int STDCALL mysql_drop_db(MYSQL *mysql, const char *DB); +#define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT) +#endif +#define HAVE_MYSQL_REAL_CONNECT + +/* + The following functions are mainly exported because of mysqlbinlog; + They are not for general usage +*/ + +#define simple_command(mysql, command, arg, length, skip_check) \ + (*(mysql)->methods->advanced_command)(mysql, command, 0, \ + 0, arg, length, skip_check, NULL) +#define stmt_command(mysql, command, arg, length, stmt) \ + (*(mysql)->methods->advanced_command)(mysql, command, 0, \ + 0, arg, length, 1, stmt) + +#ifdef __NETWARE__ +#pragma pack(pop) /* restore alignment */ +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* _mysql_h */ diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h new file mode 100644 index 00000000..357519d5 --- /dev/null +++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h @@ -0,0 +1,532 @@ +/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +/* +** Common definition between mysql server & client +*/ + +#ifndef _mysql_com_h +#define _mysql_com_h + +#define HOSTNAME_LENGTH 60 +#define SYSTEM_CHARSET_MBMAXLEN 3 +#define NAME_CHAR_LEN 64 /* Field/table name length */ +#define USERNAME_CHAR_LENGTH 16 +#define NAME_LEN (NAME_CHAR_LEN*SYSTEM_CHARSET_MBMAXLEN) +#define USERNAME_LENGTH (USERNAME_CHAR_LENGTH*SYSTEM_CHARSET_MBMAXLEN) + +#define SERVER_VERSION_LENGTH 60 +#define SQLSTATE_LENGTH 5 + +/* + USER_HOST_BUFF_SIZE -- length of string buffer, that is enough to contain + username and hostname parts of the user identifier with trailing zero in + MySQL standard format: + user_name_part@host_name_part\0 +*/ +#define USER_HOST_BUFF_SIZE HOSTNAME_LENGTH + USERNAME_LENGTH + 2 + +#define LOCAL_HOST "localhost" +#define LOCAL_HOST_NAMEDPIPE "." + + +#if defined(__WIN__) && !defined( _CUSTOMCONFIG_) +#define MYSQL_NAMEDPIPE "MySQL" +#define MYSQL_SERVICENAME "MySQL" +#endif /* __WIN__ */ + +/* + You should add new commands to the end of this list, otherwise old + servers won't be able to handle them as 'unsupported'. +*/ + +enum enum_server_command +{ + COM_SLEEP, COM_QUIT, COM_INIT_DB, COM_QUERY, COM_FIELD_LIST, + COM_CREATE_DB, COM_DROP_DB, COM_REFRESH, COM_SHUTDOWN, COM_STATISTICS, + COM_PROCESS_INFO, COM_CONNECT, COM_PROCESS_KILL, COM_DEBUG, COM_PING, + COM_TIME, COM_DELAYED_INSERT, COM_CHANGE_USER, COM_BINLOG_DUMP, + COM_TABLE_DUMP, COM_CONNECT_OUT, COM_REGISTER_SLAVE, + COM_STMT_PREPARE, COM_STMT_EXECUTE, COM_STMT_SEND_LONG_DATA, COM_STMT_CLOSE, + COM_STMT_RESET, COM_SET_OPTION, COM_STMT_FETCH, COM_DAEMON, + /* don't forget to update const char *command_name[] in sql_parse.cc */ + + /* Must be last */ + COM_END +}; + + +/* + Length of random string sent by server on handshake; this is also length of + obfuscated password, recieved from client +*/ +#define SCRAMBLE_LENGTH 20 +#define SCRAMBLE_LENGTH_323 8 +/* length of password stored in the db: new passwords are preceeded with '*' */ +#define SCRAMBLED_PASSWORD_CHAR_LENGTH (SCRAMBLE_LENGTH*2+1) +#define SCRAMBLED_PASSWORD_CHAR_LENGTH_323 (SCRAMBLE_LENGTH_323*2) + + +#define NOT_NULL_FLAG 1 /* Field can't be NULL */ +#define PRI_KEY_FLAG 2 /* Field is part of a primary key */ +#define UNIQUE_KEY_FLAG 4 /* Field is part of a unique key */ +#define MULTIPLE_KEY_FLAG 8 /* Field is part of a key */ +#define BLOB_FLAG 16 /* Field is a blob */ +#define UNSIGNED_FLAG 32 /* Field is unsigned */ +#define ZEROFILL_FLAG 64 /* Field is zerofill */ +#define BINARY_FLAG 128 /* Field is binary */ + +/* The following are only sent to new clients */ +#define ENUM_FLAG 256 /* field is an enum */ +#define AUTO_INCREMENT_FLAG 512 /* field is a autoincrement field */ +#define TIMESTAMP_FLAG 1024 /* Field is a timestamp */ +#define SET_FLAG 2048 /* field is a set */ +#define NO_DEFAULT_VALUE_FLAG 4096 /* Field doesn't have default value */ +#define ON_UPDATE_NOW_FLAG 8192 /* Field is set to NOW on UPDATE */ +#define NUM_FLAG 32768 /* Field is num (for clients) */ +#define PART_KEY_FLAG 16384 /* Intern; Part of some key */ +#define GROUP_FLAG 32768 /* Intern: Group field */ +#define UNIQUE_FLAG 65536 /* Intern: Used by sql_yacc */ +#define BINCMP_FLAG 131072 /* Intern: Used by sql_yacc */ +#define GET_FIXED_FIELDS_FLAG (1 << 18) /* Used to get fields in item tree */ +#define FIELD_IN_PART_FUNC_FLAG (1 << 19)/* Field part of partition func */ +#define FIELD_IN_ADD_INDEX (1<< 20) /* Intern: Field used in ADD INDEX */ +#define FIELD_IS_RENAMED (1<< 21) /* Intern: Field is being renamed */ + +#define REFRESH_GRANT 1 /* Refresh grant tables */ +#define REFRESH_LOG 2 /* Start on new log file */ +#define REFRESH_TABLES 4 /* close all tables */ +#define REFRESH_HOSTS 8 /* Flush host cache */ +#define REFRESH_STATUS 16 /* Flush status variables */ +#define REFRESH_THREADS 32 /* Flush thread cache */ +#define REFRESH_SLAVE 64 /* Reset master info and restart slave + thread */ +#define REFRESH_MASTER 128 /* Remove all bin logs in the index + and truncate the index */ + +/* The following can't be set with mysql_refresh() */ +#define REFRESH_READ_LOCK 16384 /* Lock tables for read */ +#define REFRESH_FAST 32768 /* Intern flag */ + +/* RESET (remove all queries) from query cache */ +#define REFRESH_QUERY_CACHE 65536 +#define REFRESH_QUERY_CACHE_FREE 0x20000L /* pack query cache */ +#define REFRESH_DES_KEY_FILE 0x40000L +#define REFRESH_USER_RESOURCES 0x80000L + +#define CLIENT_LONG_PASSWORD 1 /* new more secure passwords */ +#define CLIENT_FOUND_ROWS 2 /* Found instead of affected rows */ +#define CLIENT_LONG_FLAG 4 /* Get all column flags */ +#define CLIENT_CONNECT_WITH_DB 8 /* One can specify db on connect */ +#define CLIENT_NO_SCHEMA 16 /* Don't allow database.table.column */ +#define CLIENT_COMPRESS 32 /* Can use compression protocol */ +#define CLIENT_ODBC 64 /* Odbc client */ +#define CLIENT_LOCAL_FILES 128 /* Can use LOAD DATA LOCAL */ +#define CLIENT_IGNORE_SPACE 256 /* Ignore spaces before '(' */ +#define CLIENT_PROTOCOL_41 512 /* New 4.1 protocol */ +#define CLIENT_INTERACTIVE 1024 /* This is an interactive client */ +#define CLIENT_SSL 2048 /* Switch to SSL after handshake */ +#define CLIENT_IGNORE_SIGPIPE 4096 /* IGNORE sigpipes */ +#define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */ +#define CLIENT_RESERVED 16384 /* Old flag for 4.1 protocol */ +#define CLIENT_SECURE_CONNECTION 32768 /* New 4.1 authentication */ +#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */ +#define CLIENT_MULTI_RESULTS (1UL << 17) /* Enable/disable multi-results */ + +#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30) +#define CLIENT_REMEMBER_OPTIONS (1UL << 31) + +/* Gather all possible capabilites (flags) supported by the server */ +#define CLIENT_ALL_FLAGS (CLIENT_LONG_PASSWORD | \ + CLIENT_FOUND_ROWS | \ + CLIENT_LONG_FLAG | \ + CLIENT_CONNECT_WITH_DB | \ + CLIENT_NO_SCHEMA | \ + CLIENT_COMPRESS | \ + CLIENT_ODBC | \ + CLIENT_LOCAL_FILES | \ + CLIENT_IGNORE_SPACE | \ + CLIENT_PROTOCOL_41 | \ + CLIENT_INTERACTIVE | \ + CLIENT_SSL | \ + CLIENT_IGNORE_SIGPIPE | \ + CLIENT_TRANSACTIONS | \ + CLIENT_RESERVED | \ + CLIENT_SECURE_CONNECTION | \ + CLIENT_MULTI_STATEMENTS | \ + CLIENT_MULTI_RESULTS | \ + CLIENT_SSL_VERIFY_SERVER_CERT | \ + CLIENT_REMEMBER_OPTIONS) + +/* + Switch off the flags that are optional and depending on build flags + If any of the optional flags is supported by the build it will be switched + on before sending to the client during the connection handshake. +*/ +#define CLIENT_BASIC_FLAGS (((CLIENT_ALL_FLAGS & ~CLIENT_SSL) \ + & ~CLIENT_COMPRESS) \ + & ~CLIENT_SSL_VERIFY_SERVER_CERT) + +#define SERVER_STATUS_IN_TRANS 1 /* Transaction has started */ +#define SERVER_STATUS_AUTOCOMMIT 2 /* Server in auto_commit mode */ +#define SERVER_MORE_RESULTS_EXISTS 8 /* Multi query - next query exists */ +#define SERVER_QUERY_NO_GOOD_INDEX_USED 16 +#define SERVER_QUERY_NO_INDEX_USED 32 +/** + The server was able to fulfill the clients request and opened a + read-only non-scrollable cursor for a query. This flag comes + in reply to COM_STMT_EXECUTE and COM_STMT_FETCH commands. +*/ +#define SERVER_STATUS_CURSOR_EXISTS 64 +/** + This flag is sent when a read-only cursor is exhausted, in reply to + COM_STMT_FETCH command. +*/ +#define SERVER_STATUS_LAST_ROW_SENT 128 +#define SERVER_STATUS_DB_DROPPED 256 /* A database was dropped */ +#define SERVER_STATUS_NO_BACKSLASH_ESCAPES 512 +/** + Sent to the client if after a prepared statement reprepare + we discovered that the new statement returns a different + number of result set columns. +*/ +#define SERVER_STATUS_METADATA_CHANGED 1024 + +/** + Server status flags that must be cleared when starting + execution of a new SQL statement. + Flags from this set are only added to the + current server status by the execution engine, but + never removed -- the execution engine expects them + to disappear automagically by the next command. +*/ +#define SERVER_STATUS_CLEAR_SET (SERVER_QUERY_NO_GOOD_INDEX_USED| \ + SERVER_QUERY_NO_INDEX_USED|\ + SERVER_MORE_RESULTS_EXISTS|\ + SERVER_STATUS_METADATA_CHANGED) + +#define MYSQL_ERRMSG_SIZE 512 +#define NET_READ_TIMEOUT 30 /* Timeout on read */ +#define NET_WRITE_TIMEOUT 60 /* Timeout on write */ +#define NET_WAIT_TIMEOUT 8*60*60 /* Wait for new query */ + +#define ONLY_KILL_QUERY 1 + + +struct st_vio; /* Only C */ +typedef struct st_vio Vio; + +#define MAX_TINYINT_WIDTH 3 /* Max width for a TINY w.o. sign */ +#define MAX_SMALLINT_WIDTH 5 /* Max width for a SHORT w.o. sign */ +#define MAX_MEDIUMINT_WIDTH 8 /* Max width for a INT24 w.o. sign */ +#define MAX_INT_WIDTH 10 /* Max width for a LONG w.o. sign */ +#define MAX_BIGINT_WIDTH 20 /* Max width for a LONGLONG */ +#define MAX_CHAR_WIDTH 255 /* Max length for a CHAR colum */ +#define MAX_BLOB_WIDTH 16777216 /* Default width for blob */ + +typedef struct st_net { +#if !defined(CHECK_EMBEDDED_DIFFERENCES) || !defined(EMBEDDED_LIBRARY) + Vio *vio; + unsigned char *buff,*buff_end,*write_pos,*read_pos; + my_socket fd; /* For Perl DBI/dbd */ + /* + The following variable is set if we are doing several queries in one + command ( as in LOAD TABLE ... FROM MASTER ), + and do not want to confuse the client with OK at the wrong time + */ + unsigned long remain_in_buf,length, buf_length, where_b; + unsigned long max_packet,max_packet_size; + unsigned int pkt_nr,compress_pkt_nr; + unsigned int write_timeout, read_timeout, retry_count; + int fcntl; + unsigned int *return_status; + unsigned char reading_or_writing; + char save_char; + my_bool unused0; /* Please remove with the next incompatible ABI change. */ + my_bool unused; /* Please remove with the next incompatible ABI change */ + my_bool compress; + my_bool unused1; /* Please remove with the next incompatible ABI change. */ + /* + Pointer to query object in query cache, do not equal NULL (0) for + queries in cache that have not stored its results yet + */ +#endif + /* + 'query_cache_query' should be accessed only via query cache + functions and methods to maintain proper locking. + */ + unsigned char *query_cache_query; + unsigned int last_errno; + unsigned char error; + my_bool unused2; /* Please remove with the next incompatible ABI change. */ + my_bool return_errno; + /** Client library error message buffer. Actually belongs to struct MYSQL. */ + char last_error[MYSQL_ERRMSG_SIZE]; + /** Client library sqlstate buffer. Set along with the error message. */ + char sqlstate[SQLSTATE_LENGTH+1]; + void *extension; +#if defined(MYSQL_SERVER) && !defined(EMBEDDED_LIBRARY) + /* + Controls whether a big packet should be skipped. + + Initially set to FALSE by default. Unauthenticated sessions must have + this set to FALSE so that the server can't be tricked to read packets + indefinitely. + */ + my_bool skip_big_packet; +#endif +} NET; + + +#define packet_error (~(unsigned long) 0) + +enum enum_field_types { MYSQL_TYPE_DECIMAL, MYSQL_TYPE_TINY, + MYSQL_TYPE_SHORT, MYSQL_TYPE_LONG, + MYSQL_TYPE_FLOAT, MYSQL_TYPE_DOUBLE, + MYSQL_TYPE_NULL, MYSQL_TYPE_TIMESTAMP, + MYSQL_TYPE_LONGLONG,MYSQL_TYPE_INT24, + MYSQL_TYPE_DATE, MYSQL_TYPE_TIME, + MYSQL_TYPE_DATETIME, MYSQL_TYPE_YEAR, + MYSQL_TYPE_NEWDATE, MYSQL_TYPE_VARCHAR, + MYSQL_TYPE_BIT, + MYSQL_TYPE_NEWDECIMAL=246, + MYSQL_TYPE_ENUM=247, + MYSQL_TYPE_SET=248, + MYSQL_TYPE_TINY_BLOB=249, + MYSQL_TYPE_MEDIUM_BLOB=250, + MYSQL_TYPE_LONG_BLOB=251, + MYSQL_TYPE_BLOB=252, + MYSQL_TYPE_VAR_STRING=253, + MYSQL_TYPE_STRING=254, + MYSQL_TYPE_GEOMETRY=255 + +}; + +/* For backward compatibility */ +#define CLIENT_MULTI_QUERIES CLIENT_MULTI_STATEMENTS +#define FIELD_TYPE_DECIMAL MYSQL_TYPE_DECIMAL +#define FIELD_TYPE_NEWDECIMAL MYSQL_TYPE_NEWDECIMAL +#define FIELD_TYPE_TINY MYSQL_TYPE_TINY +#define FIELD_TYPE_SHORT MYSQL_TYPE_SHORT +#define FIELD_TYPE_LONG MYSQL_TYPE_LONG +#define FIELD_TYPE_FLOAT MYSQL_TYPE_FLOAT +#define FIELD_TYPE_DOUBLE MYSQL_TYPE_DOUBLE +#define FIELD_TYPE_NULL MYSQL_TYPE_NULL +#define FIELD_TYPE_TIMESTAMP MYSQL_TYPE_TIMESTAMP +#define FIELD_TYPE_LONGLONG MYSQL_TYPE_LONGLONG +#define FIELD_TYPE_INT24 MYSQL_TYPE_INT24 +#define FIELD_TYPE_DATE MYSQL_TYPE_DATE +#define FIELD_TYPE_TIME MYSQL_TYPE_TIME +#define FIELD_TYPE_DATETIME MYSQL_TYPE_DATETIME +#define FIELD_TYPE_YEAR MYSQL_TYPE_YEAR +#define FIELD_TYPE_NEWDATE MYSQL_TYPE_NEWDATE +#define FIELD_TYPE_ENUM MYSQL_TYPE_ENUM +#define FIELD_TYPE_SET MYSQL_TYPE_SET +#define FIELD_TYPE_TINY_BLOB MYSQL_TYPE_TINY_BLOB +#define FIELD_TYPE_MEDIUM_BLOB MYSQL_TYPE_MEDIUM_BLOB +#define FIELD_TYPE_LONG_BLOB MYSQL_TYPE_LONG_BLOB +#define FIELD_TYPE_BLOB MYSQL_TYPE_BLOB +#define FIELD_TYPE_VAR_STRING MYSQL_TYPE_VAR_STRING +#define FIELD_TYPE_STRING MYSQL_TYPE_STRING +#define FIELD_TYPE_CHAR MYSQL_TYPE_TINY +#define FIELD_TYPE_INTERVAL MYSQL_TYPE_ENUM +#define FIELD_TYPE_GEOMETRY MYSQL_TYPE_GEOMETRY +#define FIELD_TYPE_BIT MYSQL_TYPE_BIT + + +/* Shutdown/kill enums and constants */ + +/* Bits for THD::killable. */ +#define MYSQL_SHUTDOWN_KILLABLE_CONNECT (unsigned char)(1 << 0) +#define MYSQL_SHUTDOWN_KILLABLE_TRANS (unsigned char)(1 << 1) +#define MYSQL_SHUTDOWN_KILLABLE_LOCK_TABLE (unsigned char)(1 << 2) +#define MYSQL_SHUTDOWN_KILLABLE_UPDATE (unsigned char)(1 << 3) + +enum mysql_enum_shutdown_level { + /* + We want levels to be in growing order of hardness (because we use number + comparisons). Note that DEFAULT does not respect the growing property, but + it's ok. + */ + SHUTDOWN_DEFAULT = 0, + /* wait for existing connections to finish */ + SHUTDOWN_WAIT_CONNECTIONS= MYSQL_SHUTDOWN_KILLABLE_CONNECT, + /* wait for existing trans to finish */ + SHUTDOWN_WAIT_TRANSACTIONS= MYSQL_SHUTDOWN_KILLABLE_TRANS, + /* wait for existing updates to finish (=> no partial MyISAM update) */ + SHUTDOWN_WAIT_UPDATES= MYSQL_SHUTDOWN_KILLABLE_UPDATE, + /* flush InnoDB buffers and other storage engines' buffers*/ + SHUTDOWN_WAIT_ALL_BUFFERS= (MYSQL_SHUTDOWN_KILLABLE_UPDATE << 1), + /* don't flush InnoDB buffers, flush other storage engines' buffers*/ + SHUTDOWN_WAIT_CRITICAL_BUFFERS= (MYSQL_SHUTDOWN_KILLABLE_UPDATE << 1) + 1, + /* Now the 2 levels of the KILL command */ +#if MYSQL_VERSION_ID >= 50000 + KILL_QUERY= 254, +#endif + KILL_CONNECTION= 255 +}; + + +enum enum_cursor_type +{ + CURSOR_TYPE_NO_CURSOR= 0, + CURSOR_TYPE_READ_ONLY= 1, + CURSOR_TYPE_FOR_UPDATE= 2, + CURSOR_TYPE_SCROLLABLE= 4 +}; + + +/* options for mysql_set_option */ +enum enum_mysql_set_option +{ + MYSQL_OPTION_MULTI_STATEMENTS_ON, + MYSQL_OPTION_MULTI_STATEMENTS_OFF +}; + +#define net_new_transaction(net) ((net)->pkt_nr=0) + +#ifdef __cplusplus +extern "C" { +#endif + +my_bool my_net_init(NET *net, Vio* vio); +void my_net_local_init(NET *net); +void net_end(NET *net); + void net_clear(NET *net, my_bool clear_buffer); +my_bool net_realloc(NET *net, size_t length); +my_bool net_flush(NET *net); +my_bool my_net_write(NET *net,const unsigned char *packet, size_t len); +my_bool net_write_command(NET *net,unsigned char command, + const unsigned char *header, size_t head_len, + const unsigned char *packet, size_t len); +int net_real_write(NET *net,const unsigned char *packet, size_t len); +unsigned long my_net_read(NET *net); + +#ifdef _global_h +void my_net_set_write_timeout(NET *net, uint timeout); +void my_net_set_read_timeout(NET *net, uint timeout); +#endif + +/* + The following function is not meant for normal usage + Currently it's used internally by manager.c +*/ +struct sockaddr; +int my_connect(my_socket s, const struct sockaddr *name, unsigned int namelen, + unsigned int timeout); + +struct rand_struct { + unsigned long seed1,seed2,max_value; + double max_value_dbl; +}; + +#ifdef __cplusplus +} +#endif + + /* The following is for user defined functions */ + +enum Item_result {STRING_RESULT=0, REAL_RESULT, INT_RESULT, ROW_RESULT, + DECIMAL_RESULT}; + +typedef struct st_udf_args +{ + unsigned int arg_count; /* Number of arguments */ + enum Item_result *arg_type; /* Pointer to item_results */ + char **args; /* Pointer to argument */ + unsigned long *lengths; /* Length of string arguments */ + char *maybe_null; /* Set to 1 for all maybe_null args */ + char **attributes; /* Pointer to attribute name */ + unsigned long *attribute_lengths; /* Length of attribute arguments */ + void *extension; +} UDF_ARGS; + + /* This holds information about the result */ + +typedef struct st_udf_init +{ + my_bool maybe_null; /* 1 if function can return NULL */ + unsigned int decimals; /* for real functions */ + unsigned long max_length; /* For string functions */ + char *ptr; /* free pointer for function data */ + my_bool const_item; /* 1 if function always returns the same value */ + void *extension; +} UDF_INIT; +/* + TODO: add a notion for determinism of the UDF. + See Item_udf_func::update_used_tables () +*/ + + /* Constants when using compression */ +#define NET_HEADER_SIZE 4 /* standard header size */ +#define COMP_HEADER_SIZE 3 /* compression header extra size */ + + /* Prototypes to password functions */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* + These functions are used for authentication by client and server and + implemented in sql/password.c +*/ + +void randominit(struct rand_struct *, unsigned long seed1, + unsigned long seed2); +double my_rnd(struct rand_struct *); +void create_random_string(char *to, unsigned int length, struct rand_struct *rand_st); + +void hash_password(unsigned long *to, const char *password, unsigned int password_len); +void make_scrambled_password_323(char *to, const char *password); +void scramble_323(char *to, const char *message, const char *password); +my_bool check_scramble_323(const char *, const char *message, + unsigned long *salt); +void get_salt_from_password_323(unsigned long *res, const char *password); +void make_password_from_salt_323(char *to, const unsigned long *salt); + +void make_scrambled_password(char *to, const char *password); +void scramble(char *to, const char *message, const char *password); +my_bool check_scramble(const char *reply, const char *message, + const unsigned char *hash_stage2); +void get_salt_from_password(unsigned char *res, const char *password); +void make_password_from_salt(char *to, const unsigned char *hash_stage2); +char *octet2hex(char *to, const char *str, unsigned int len); + +/* end of password.c */ + +char *get_tty_password(const char *opt_message); +const char *mysql_errno_to_sqlstate(unsigned int mysql_errno); + +/* Some other useful functions */ + +my_bool my_thread_init(void); +void my_thread_end(void); + +#ifdef _global_h +ulong STDCALL net_field_length(uchar **packet); +my_ulonglong net_field_length_ll(uchar **packet); +uchar *net_store_length(uchar *pkg, ulonglong length); +#endif + +#ifdef __cplusplus +} +#endif + +#define NULL_LENGTH ((unsigned long) ~0) /* For net_store_length */ +#define MYSQL_STMT_HEADER 4 +#define MYSQL_LONG_DATA_HEADER 6 + +#endif diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_embed.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_embed.h new file mode 100644 index 00000000..e3318864 --- /dev/null +++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_embed.h @@ -0,0 +1,31 @@ +/* + Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +/* Defines that are unique to the embedded version of MySQL */ + +#ifdef EMBEDDED_LIBRARY + +/* Things we don't need in the embedded version of MySQL */ +/* TODO HF add #undef HAVE_VIO if we don't want client in embedded library */ + +#undef HAVE_OPENSSL +#undef HAVE_SMEM /* No shared memory */ +#undef HAVE_NDBCLUSTER_DB /* No NDB cluster */ + +#define DONT_USE_RAID + +#endif /* EMBEDDED_LIBRARY */ diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h new file mode 100644 index 00000000..0a3f17a8 --- /dev/null +++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h @@ -0,0 +1,55 @@ +/* Copyright (C) 2004 MySQL AB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +#ifndef _mysql_time_h_ +#define _mysql_time_h_ + +/* + Time declarations shared between the server and client API: + you should not add anything to this header unless it's used + (and hence should be visible) in mysql.h. + If you're looking for a place to add new time-related declaration, + it's most likely my_time.h. See also "C API Handling of Date + and Time Values" chapter in documentation. +*/ + +enum enum_mysql_timestamp_type +{ + MYSQL_TIMESTAMP_NONE= -2, MYSQL_TIMESTAMP_ERROR= -1, + MYSQL_TIMESTAMP_DATE= 0, MYSQL_TIMESTAMP_DATETIME= 1, MYSQL_TIMESTAMP_TIME= 2 +}; + + +/* + Structure which is used to represent datetime values inside MySQL. + + We assume that values in this structure are normalized, i.e. year <= 9999, + month <= 12, day <= 31, hour <= 23, hour <= 59, hour <= 59. Many functions + in server such as my_system_gmt_sec() or make_time() family of functions + rely on this (actually now usage of make_*() family relies on a bit weaker + restriction). Also functions that produce MYSQL_TIME as result ensure this. + There is one exception to this rule though if this structure holds time + value (time_type == MYSQL_TIMESTAMP_TIME) days and hour member can hold + bigger values. +*/ +typedef struct st_mysql_time +{ + unsigned int year, month, day, hour, minute, second; + unsigned long second_part; + my_bool neg; + enum enum_mysql_timestamp_type time_type; +} MYSQL_TIME; + +#endif /* _mysql_time_h_ */ diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h new file mode 100644 index 00000000..dc8c5b3f --- /dev/null +++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h @@ -0,0 +1,30 @@ +/* Copyright Abandoned 1996, 1999, 2001 MySQL AB + This file is public domain and comes with NO WARRANTY of any kind */ + +/* Version numbers for protocol & mysqld */ + +#ifndef _mysql_version_h +#define _mysql_version_h +#ifdef _CUSTOMCONFIG_ +#include +#else +#define PROTOCOL_VERSION 10 +#define MYSQL_SERVER_VERSION "5.1.61" +#define MYSQL_BASE_VERSION "mysqld-5.1" +#define MYSQL_SERVER_SUFFIX_DEF "" +#define FRM_VER 6 +#define MYSQL_VERSION_ID 50161 +#define MYSQL_PORT 3306 +#define MYSQL_PORT_DEFAULT 0 +#define MYSQL_UNIX_ADDR "/tmp/mysql.sock" +#define MYSQL_CONFIG_NAME "my" +#define MYSQL_COMPILATION_COMMENT "Source distribution" + +/* mysqld compile time options */ +#endif /* _CUSTOMCONFIG_ */ + +#ifndef LICENSE +#define LICENSE GPL +#endif /* LICENSE */ + +#endif /* _mysql_version_h */ diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/typelib.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/typelib.h new file mode 100644 index 00000000..46106d1b --- /dev/null +++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/typelib.h @@ -0,0 +1,39 @@ +/* Copyright (C) 2000 MySQL AB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + + +#ifndef _typelib_h +#define _typelib_h + +#include "my_alloc.h" + +typedef struct st_typelib { /* Different types saved here */ + unsigned int count; /* How many types */ + const char *name; /* Name of typelib */ + const char **type_names; + unsigned int *type_lengths; +} TYPELIB; + +extern my_ulonglong find_typeset(char *x, TYPELIB *typelib,int *error_position); +extern int find_type_or_exit(const char *x, TYPELIB *typelib, + const char *option); +extern int find_type(char *x, const TYPELIB *typelib, unsigned int full_name); +extern void make_type(char *to,unsigned int nr,TYPELIB *typelib); +extern const char *get_type(TYPELIB *typelib,unsigned int nr); +extern TYPELIB *copy_typelib(MEM_ROOT *root, TYPELIB *from); + +extern TYPELIB sql_protocol_typelib; + +#endif /* _typelib_h */ diff --git a/Frameworks/SPMySQLFramework/Readme.txt b/Frameworks/SPMySQLFramework/Readme.txt new file mode 100644 index 00000000..de828890 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Readme.txt @@ -0,0 +1,44 @@ +The SPMySQL Framework is intended to provide a stable MySQL connection framework, with the ability to run text-based queries and rapidly retrieve result sets with conversion from MySQL data types to Cocoa objects. + +SPMySQL.framework has an interface loosely based around that provided by MCPKit by Serge Cohen and Bertrand Mansion (http://mysql-cocoa.sourceforge.net/), and in particular the heavily modified Sequel Pro version (http://www.sequelpro.com/). It is a full rewrite of the original framework, although it includes code from patches implementing the following Sequel Pro functionality, largely contributed by Hans-Jörg Bibiko, Stuart Connolly, Jakob Egger, and Rowan Beentje: + - Connection locking (Jakob et al) + - Ping & keepalive (Rowan et al) + - Query cancellation (Rowan et al) + - Delegate setup (Stuart et al) + - SSL support (Rowan et al) + - Connection checking (Rowan et al) + - Version state (Stuart et al) + - Maximum packet size control (Hans et al) + - Result multithreading and streaming (Rowan et al) + - Improved encoding support & switching (Rowan et al) + - Database structure; moved to inside the app (Hans et al) + - Query reattempts and error-handling approach (Rowan et al) + - Geometry result class (Hans et al) + - Connection proxy (Stuart et al) + + +INTEGRATION + +SPMySQL.framework can be added to your project as a standard Cocoa framework, or the entire project can be added as a subproject in Xcode. +To add as a subproject in Xcode: + 1) Add the SPMySQL framework's .xcodeproj to your current project + 2) Choose an existing target, Get Info, and under direct dependenies add a new dependency. Choose the SPMySQL.framework target from the sub-project + 3) Expand the subproject to see its child target - SPMySQL.framework. Drag this to the "Link Binary With Libraries" build phase of any targets using the framework. + 4) If you don't have a Copy Frameworks phase, add one; drag the SPMySQL.framework child target to this phase. + 5) In your build settings, add a User Header Search Path; make it a recursive path to the SPMySQL project folder location (for example ${PROJECT_DIR}/Frameworks/SPMySQLFramework). This should allow you to #include "SPMySQL.h" and have everything function. + +As a last resort jump onto IRC and join #sequel-pro on irc.freenode.net and any of the +developers will be more than happy to help you out. + + +LICENSE + +Copyright (c) 2012 Rowan Beentje (rowan.beent.je) and the Sequel Pro team. + +The SPMySQL framework is offered under the MIT license: + +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. \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Resources/Info.plist b/Frameworks/SPMySQLFramework/Resources/Info.plist new file mode 100644 index 00000000..392b428f --- /dev/null +++ b/Frameworks/SPMySQLFramework/Resources/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.${PRODUCT_NAME:rfc1034Identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + SPDT + CFBundleVersion + 1 + NSPrincipalClass + + + diff --git a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj new file mode 100644 index 00000000..344a498b --- /dev/null +++ b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj @@ -0,0 +1,606 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 45; + objects = { + +/* Begin PBXBuildFile section */ + 580A331E14D75CF7000D6933 /* SPMySQLGeometryData.h in Headers */ = {isa = PBXBuildFile; fileRef = 580A331C14D75CF7000D6933 /* SPMySQLGeometryData.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 580A331F14D75CF7000D6933 /* SPMySQLGeometryData.m in Sources */ = {isa = PBXBuildFile; fileRef = 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */; }; + 58428E0014BA5FAE000F8438 /* SPMySQLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58428E0114BA5FAE000F8438 /* SPMySQLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; }; + 5842929F14C34B36000F8438 /* my_alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842929414C34B36000F8438 /* my_alloc.h */; settings = {ATTRIBUTES = (); }; }; + 584292A014C34B36000F8438 /* my_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842929514C34B36000F8438 /* my_list.h */; settings = {ATTRIBUTES = (); }; }; + 584292A114C34B36000F8438 /* mysql.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842929614C34B36000F8438 /* mysql.h */; }; + 584292A214C34B36000F8438 /* mysql_com.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842929714C34B36000F8438 /* mysql_com.h */; }; + 584292A314C34B36000F8438 /* mysql_embed.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842929814C34B36000F8438 /* mysql_embed.h */; }; + 584292A414C34B36000F8438 /* mysql_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842929914C34B36000F8438 /* mysql_time.h */; }; + 584292A514C34B36000F8438 /* mysql_version.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842929A14C34B36000F8438 /* mysql_version.h */; }; + 584292A614C34B36000F8438 /* typelib.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842929B14C34B36000F8438 /* typelib.h */; }; + 584292A714C34B36000F8438 /* libmysqlclient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5842929D14C34B36000F8438 /* libmysqlclient.a */; }; + 584294E414CB8002000F8438 /* SPMySQLConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 584294F014CB8002000F8438 /* Ping & KeepAlive.h in Headers */ = {isa = PBXBuildFile; fileRef = 584294EE14CB8002000F8438 /* Ping & KeepAlive.h */; }; + 584294F114CB8002000F8438 /* Ping & KeepAlive.m in Sources */ = {isa = PBXBuildFile; fileRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; }; + 584294F614CB8002000F8438 /* Querying & Preparation.h in Headers */ = {isa = PBXBuildFile; fileRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 584294FA14CB8002000F8438 /* Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 584294F814CB8002000F8438 /* Encoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 584294FB14CB8002000F8438 /* Encoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 584294F914CB8002000F8438 /* Encoding.m */; }; + 584294FE14CB8002000F8438 /* Server Info.h in Headers */ = {isa = PBXBuildFile; fileRef = 584294FC14CB8002000F8438 /* Server Info.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 584294FF14CB8002000F8438 /* Server Info.m in Sources */ = {isa = PBXBuildFile; fileRef = 584294FD14CB8002000F8438 /* Server Info.m */; }; + 586A99FB14F02E21007F82BF /* SPMySQLStreamingResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 586A99FC14F02E21007F82BF /* SPMySQLStreamingResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; }; + 5884127714CC63830078027F /* SPMySQL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5884127614CC63830078027F /* SPMySQL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 588412A814CC7A4D0078027F /* Locking.h in Headers */ = {isa = PBXBuildFile; fileRef = 588412A614CC7A4D0078027F /* Locking.h */; }; + 5884133C14CCEC6B0078027F /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 5884133B14CCEC6B0078027F /* libz.dylib */; }; + 5884142714CCF5190078027F /* Conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5884142514CCF5190078027F /* Conversion.h */; }; + 5884142814CCF5190078027F /* Conversion.m in Sources */ = {isa = PBXBuildFile; fileRef = 5884142614CCF5190078027F /* Conversion.m */; }; + 588414BD14CE3B110078027F /* SPMySQLConnectionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 588414BC14CE3B110078027F /* SPMySQLConnectionDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5884159414D1A6760078027F /* Locking.m in Sources */ = {isa = PBXBuildFile; fileRef = 588412A714CC7A4D0078027F /* Locking.m */; }; + 5884159514D1A6880078027F /* Querying & Preparation.m in Sources */ = {isa = PBXBuildFile; fileRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; }; + 5884165514D2306A0078027F /* SPMySQLResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5884165614D2306A0078027F /* SPMySQLResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; }; + 58C006C814E0B18A00AC489A /* SPMySQLUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */; }; + 58C008CD14E2AC7D00AC489A /* SPMySQLConnectionProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58C009D514E31D3800AC489A /* SPMySQLStringAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C009D314E31D3800AC489A /* SPMySQLStringAdditions.h */; }; + 58C009D614E31D3800AC489A /* SPMySQLStringAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C009D414E31D3800AC489A /* SPMySQLStringAdditions.m */; }; + 58C00AA914E4869C00AC489A /* Max Packet Size.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C00AA714E4869C00AC489A /* Max Packet Size.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58C00AAA14E4869C00AC489A /* Max Packet Size.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; }; + 58C00AB514E4892E00AC489A /* Delegate & Proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C00AB314E4892E00AC489A /* Delegate & Proxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58C00AB614E4892E00AC489A /* Delegate & Proxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */; }; + 58C00ADA14E4959A00AC489A /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C00AD914E4959A00AC489A /* SystemConfiguration.framework */; }; + 58C00BD114E7459600AC489A /* Databases & Tables.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C00BCF14E7459600AC489A /* Databases & Tables.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58C00BD214E7459600AC489A /* Databases & Tables.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C00BD014E7459600AC489A /* Databases & Tables.m */; }; + 58C00CA514E845D800AC489A /* SPMySQL Private APIs.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; }; + 58C7C1E414DB6E4C00436315 /* SPMySQLFastStreamingResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58C7C1E514DB6E4C00436315 /* SPMySQLFastStreamingResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; }; + 58C7C1E814DB6E8600436315 /* Field Definitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C7C1E614DB6E8600436315 /* Field Definitions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58C7C1E914DB6E8600436315 /* Field Definitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; }; + 8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; }; + 8DC2EF570486A6940098B216 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 0867D69BFE84028FC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 0867D6A5FE840307C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 089C1667FE841158C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 32DBCF5E0370ADEE00C91783 /* SPMySQLFramework_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLFramework_Prefix.pch; path = Source/SPMySQLFramework_Prefix.pch; sourceTree = ""; }; + 580A331C14D75CF7000D6933 /* SPMySQLGeometryData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLGeometryData.h; path = Source/SPMySQLGeometryData.h; sourceTree = ""; }; + 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLGeometryData.m; path = Source/SPMySQLGeometryData.m; sourceTree = ""; }; + 58428DF614BA5A13000F8438 /* build-mysql-client.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "build-mysql-client.sh"; sourceTree = ""; }; + 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLConnection.h; path = Source/SPMySQLConnection.h; sourceTree = ""; }; + 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLConnection.m; path = Source/SPMySQLConnection.m; sourceTree = ""; }; + 5842929414C34B36000F8438 /* my_alloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = my_alloc.h; sourceTree = ""; }; + 5842929514C34B36000F8438 /* my_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = my_list.h; sourceTree = ""; }; + 5842929614C34B36000F8438 /* mysql.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mysql.h; sourceTree = ""; }; + 5842929714C34B36000F8438 /* mysql_com.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mysql_com.h; sourceTree = ""; }; + 5842929814C34B36000F8438 /* mysql_embed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mysql_embed.h; sourceTree = ""; }; + 5842929914C34B36000F8438 /* mysql_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mysql_time.h; sourceTree = ""; }; + 5842929A14C34B36000F8438 /* mysql_version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mysql_version.h; sourceTree = ""; }; + 5842929B14C34B36000F8438 /* typelib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = typelib.h; sourceTree = ""; }; + 5842929D14C34B36000F8438 /* libmysqlclient.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libmysqlclient.a; sourceTree = ""; }; + 584294E314CB8002000F8438 /* SPMySQLConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLConstants.h; path = Source/SPMySQLConstants.h; sourceTree = ""; }; + 584294EE14CB8002000F8438 /* Ping & KeepAlive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Ping & KeepAlive.h"; path = "Source/SPMySQLConnection Categories/Ping & KeepAlive.h"; sourceTree = ""; }; + 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Ping & KeepAlive.m"; path = "Source/SPMySQLConnection Categories/Ping & KeepAlive.m"; sourceTree = ""; }; + 584294F414CB8002000F8438 /* Querying & Preparation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Querying & Preparation.h"; path = "Source/SPMySQLConnection Categories/Querying & Preparation.h"; sourceTree = ""; }; + 584294F514CB8002000F8438 /* Querying & Preparation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Querying & Preparation.m"; path = "Source/SPMySQLConnection Categories/Querying & Preparation.m"; sourceTree = ""; }; + 584294F814CB8002000F8438 /* Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Encoding.h; path = "Source/SPMySQLConnection Categories/Encoding.h"; sourceTree = ""; }; + 584294F914CB8002000F8438 /* Encoding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Encoding.m; path = "Source/SPMySQLConnection Categories/Encoding.m"; sourceTree = ""; }; + 584294FC14CB8002000F8438 /* Server Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Server Info.h"; path = "Source/SPMySQLConnection Categories/Server Info.h"; sourceTree = ""; }; + 584294FD14CB8002000F8438 /* Server Info.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Server Info.m"; path = "Source/SPMySQLConnection Categories/Server Info.m"; sourceTree = ""; }; + 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLStreamingResult.h; path = Source/SPMySQLStreamingResult.h; sourceTree = ""; }; + 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLStreamingResult.m; path = Source/SPMySQLStreamingResult.m; sourceTree = ""; }; + 586AA0E714F1CEC8007F82BF /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = ""; }; + 5884127614CC63830078027F /* SPMySQL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQL.h; path = Source/SPMySQL.h; sourceTree = ""; }; + 588412A614CC7A4D0078027F /* Locking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Locking.h; path = "Source/SPMySQLConnection Categories/Locking.h"; sourceTree = ""; }; + 588412A714CC7A4D0078027F /* Locking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Locking.m; path = "Source/SPMySQLConnection Categories/Locking.m"; sourceTree = ""; }; + 5884133B14CCEC6B0078027F /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; }; + 5884142514CCF5190078027F /* Conversion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Conversion.h; path = "Source/SPMySQLConnection Categories/Conversion.h"; sourceTree = ""; }; + 5884142614CCF5190078027F /* Conversion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Conversion.m; path = "Source/SPMySQLConnection Categories/Conversion.m"; sourceTree = ""; }; + 588414BC14CE3B110078027F /* SPMySQLConnectionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLConnectionDelegate.h; path = Source/SPMySQLConnectionDelegate.h; sourceTree = ""; }; + 5884165314D2306A0078027F /* SPMySQLResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLResult.h; path = Source/SPMySQLResult.h; sourceTree = ""; }; + 5884165414D2306A0078027F /* SPMySQLResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLResult.m; path = Source/SPMySQLResult.m; sourceTree = ""; }; + 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLUtilities.h; path = Source/SPMySQLUtilities.h; sourceTree = ""; }; + 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLConnectionProxy.h; path = Source/SPMySQLConnectionProxy.h; sourceTree = ""; }; + 58C009D314E31D3800AC489A /* SPMySQLStringAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLStringAdditions.h; path = Source/SPMySQLStringAdditions.h; sourceTree = ""; }; + 58C009D414E31D3800AC489A /* SPMySQLStringAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLStringAdditions.m; path = Source/SPMySQLStringAdditions.m; sourceTree = ""; }; + 58C00AA714E4869C00AC489A /* Max Packet Size.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Max Packet Size.h"; path = "Source/SPMySQLConnection Categories/Max Packet Size.h"; sourceTree = ""; }; + 58C00AA814E4869C00AC489A /* Max Packet Size.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Max Packet Size.m"; path = "Source/SPMySQLConnection Categories/Max Packet Size.m"; sourceTree = ""; }; + 58C00AB314E4892E00AC489A /* Delegate & Proxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Delegate & Proxy.h"; path = "Source/SPMySQLConnection Categories/Delegate & Proxy.h"; sourceTree = ""; }; + 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Delegate & Proxy.m"; path = "Source/SPMySQLConnection Categories/Delegate & Proxy.m"; sourceTree = ""; }; + 58C00AD914E4959A00AC489A /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; + 58C00BCF14E7459600AC489A /* Databases & Tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Databases & Tables.h"; path = "Source/SPMySQLConnection Categories/Databases & Tables.h"; sourceTree = ""; }; + 58C00BD014E7459600AC489A /* Databases & Tables.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Databases & Tables.m"; path = "Source/SPMySQLConnection Categories/Databases & Tables.m"; sourceTree = ""; }; + 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "SPMySQL Private APIs.h"; path = "Source/SPMySQL Private APIs.h"; sourceTree = ""; }; + 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLFastStreamingResult.h; path = Source/SPMySQLFastStreamingResult.h; sourceTree = ""; }; + 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLFastStreamingResult.m; path = Source/SPMySQLFastStreamingResult.m; sourceTree = ""; }; + 58C7C1E614DB6E8600436315 /* Field Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Field Definitions.h"; path = "Source/SPMySQLResult Categories/Field Definitions.h"; sourceTree = ""; }; + 58C7C1E714DB6E8600436315 /* Field Definitions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Field Definitions.m"; path = "Source/SPMySQLResult Categories/Field Definitions.m"; sourceTree = ""; }; + 8DC2EF5A0486A6940098B216 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Resources/Info.plist; sourceTree = ""; }; + 8DC2EF5B0486A6940098B216 /* SPMySQL.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SPMySQL.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D2F7E79907B2D74100F64583 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8DC2EF560486A6940098B216 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DC2EF570486A6940098B216 /* Cocoa.framework in Frameworks */, + 584292A714C34B36000F8438 /* libmysqlclient.a in Frameworks */, + 5884133C14CCEC6B0078027F /* libz.dylib in Frameworks */, + 58C00ADA14E4959A00AC489A /* SystemConfiguration.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 034768DFFF38A50411DB9C8B /* Products */ = { + isa = PBXGroup; + children = ( + 8DC2EF5B0486A6940098B216 /* SPMySQL.framework */, + ); + name = Products; + sourceTree = ""; + }; + 0867D691FE84028FC02AAC07 /* SPMySQLFramework */ = { + isa = PBXGroup; + children = ( + 586AA0E714F1CEC8007F82BF /* Readme.txt */, + 5884127614CC63830078027F /* SPMySQL.h */, + 58C0077714E1DFFF00AC489A /* Protocols */, + 08FB77AEFE84172EC02AAC07 /* Classes */, + 58C009D214E31D1300AC489A /* Category Additions */, + 32C88DFF0371C24200C91783 /* Other Sources */, + 089C1665FE841158C02AAC07 /* Resources */, + 58428DF514BA5A03000F8438 /* Scripts */, + 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */, + 034768DFFF38A50411DB9C8B /* Products */, + ); + name = SPMySQLFramework; + sourceTree = ""; + }; + 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */ = { + isa = PBXGroup; + children = ( + 1058C7B0FEA5585E11CA2CBB /* Linked Frameworks */, + 1058C7B2FEA5585E11CA2CBB /* Other Frameworks */, + ); + name = "External Frameworks and Libraries"; + sourceTree = ""; + }; + 089C1665FE841158C02AAC07 /* Resources */ = { + isa = PBXGroup; + children = ( + 5842929214C34B36000F8438 /* MySQL Client Libraries */, + 8DC2EF5A0486A6940098B216 /* Info.plist */, + 089C1666FE841158C02AAC07 /* InfoPlist.strings */, + ); + name = Resources; + sourceTree = ""; + }; + 08FB77AEFE84172EC02AAC07 /* Classes */ = { + isa = PBXGroup; + children = ( + 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */, + 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */, + 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */, + 584294EB14CB8002000F8438 /* Connection Categories */, + 5884165314D2306A0078027F /* SPMySQLResult.h */, + 5884165414D2306A0078027F /* SPMySQLResult.m */, + 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */, + 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */, + 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */, + 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */, + 58C7C1E114DB6E3000436315 /* Result Categories */, + 580A331B14D75CCF000D6933 /* Result types */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7B0FEA5585E11CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */, + 5884133B14CCEC6B0078027F /* libz.dylib */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7B2FEA5585E11CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 0867D6A5FE840307C02AAC07 /* AppKit.framework */, + D2F7E79907B2D74100F64583 /* CoreData.framework */, + 0867D69BFE84028FC02AAC07 /* Foundation.framework */, + 58C00AD914E4959A00AC489A /* SystemConfiguration.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 32C88DFF0371C24200C91783 /* Other Sources */ = { + isa = PBXGroup; + children = ( + 584294E314CB8002000F8438 /* SPMySQLConstants.h */, + 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */, + 32DBCF5E0370ADEE00C91783 /* SPMySQLFramework_Prefix.pch */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 580A331B14D75CCF000D6933 /* Result types */ = { + isa = PBXGroup; + children = ( + 580A331C14D75CF7000D6933 /* SPMySQLGeometryData.h */, + 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */, + ); + name = "Result types"; + sourceTree = ""; + }; + 58428DF514BA5A03000F8438 /* Scripts */ = { + isa = PBXGroup; + children = ( + 58428DF614BA5A13000F8438 /* build-mysql-client.sh */, + ); + name = Scripts; + sourceTree = ""; + }; + 5842929214C34B36000F8438 /* MySQL Client Libraries */ = { + isa = PBXGroup; + children = ( + 5842929314C34B36000F8438 /* include */, + 5842929C14C34B36000F8438 /* lib */, + ); + path = "MySQL Client Libraries"; + sourceTree = ""; + }; + 5842929314C34B36000F8438 /* include */ = { + isa = PBXGroup; + children = ( + 5842929414C34B36000F8438 /* my_alloc.h */, + 5842929514C34B36000F8438 /* my_list.h */, + 5842929614C34B36000F8438 /* mysql.h */, + 5842929714C34B36000F8438 /* mysql_com.h */, + 5842929814C34B36000F8438 /* mysql_embed.h */, + 5842929914C34B36000F8438 /* mysql_time.h */, + 5842929A14C34B36000F8438 /* mysql_version.h */, + 5842929B14C34B36000F8438 /* typelib.h */, + ); + path = include; + sourceTree = ""; + }; + 5842929C14C34B36000F8438 /* lib */ = { + isa = PBXGroup; + children = ( + 5842929D14C34B36000F8438 /* libmysqlclient.a */, + ); + path = lib; + sourceTree = ""; + }; + 584294EB14CB8002000F8438 /* Connection Categories */ = { + isa = PBXGroup; + children = ( + 58C00AB314E4892E00AC489A /* Delegate & Proxy.h */, + 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */, + 58C00BCF14E7459600AC489A /* Databases & Tables.h */, + 58C00BD014E7459600AC489A /* Databases & Tables.m */, + 584294F414CB8002000F8438 /* Querying & Preparation.h */, + 584294F514CB8002000F8438 /* Querying & Preparation.m */, + 584294F814CB8002000F8438 /* Encoding.h */, + 584294F914CB8002000F8438 /* Encoding.m */, + 584294FC14CB8002000F8438 /* Server Info.h */, + 584294FD14CB8002000F8438 /* Server Info.m */, + 58C00AA714E4869C00AC489A /* Max Packet Size.h */, + 58C00AA814E4869C00AC489A /* Max Packet Size.m */, + 5884142414CCF4E60078027F /* Private */, + ); + name = "Connection Categories"; + sourceTree = ""; + }; + 5884142414CCF4E60078027F /* Private */ = { + isa = PBXGroup; + children = ( + 584294EE14CB8002000F8438 /* Ping & KeepAlive.h */, + 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */, + 588412A614CC7A4D0078027F /* Locking.h */, + 588412A714CC7A4D0078027F /* Locking.m */, + 5884142514CCF5190078027F /* Conversion.h */, + 5884142614CCF5190078027F /* Conversion.m */, + ); + name = Private; + sourceTree = ""; + }; + 58C0077714E1DFFF00AC489A /* Protocols */ = { + isa = PBXGroup; + children = ( + 588414BC14CE3B110078027F /* SPMySQLConnectionDelegate.h */, + 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */, + ); + name = Protocols; + sourceTree = ""; + }; + 58C009D214E31D1300AC489A /* Category Additions */ = { + isa = PBXGroup; + children = ( + 58C009D314E31D3800AC489A /* SPMySQLStringAdditions.h */, + 58C009D414E31D3800AC489A /* SPMySQLStringAdditions.m */, + ); + name = "Category Additions"; + sourceTree = ""; + }; + 58C7C1E114DB6E3000436315 /* Result Categories */ = { + isa = PBXGroup; + children = ( + 58C7C1E614DB6E8600436315 /* Field Definitions.h */, + 58C7C1E714DB6E8600436315 /* Field Definitions.m */, + ); + name = "Result Categories"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 8DC2EF500486A6940098B216 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 58428E0014BA5FAE000F8438 /* SPMySQLConnection.h in Headers */, + 584294E414CB8002000F8438 /* SPMySQLConstants.h in Headers */, + 584294F614CB8002000F8438 /* Querying & Preparation.h in Headers */, + 584294F014CB8002000F8438 /* Ping & KeepAlive.h in Headers */, + 584294FA14CB8002000F8438 /* Encoding.h in Headers */, + 584294FE14CB8002000F8438 /* Server Info.h in Headers */, + 5842929F14C34B36000F8438 /* my_alloc.h in Headers */, + 584292A014C34B36000F8438 /* my_list.h in Headers */, + 584292A114C34B36000F8438 /* mysql.h in Headers */, + 584292A214C34B36000F8438 /* mysql_com.h in Headers */, + 584292A314C34B36000F8438 /* mysql_embed.h in Headers */, + 584292A414C34B36000F8438 /* mysql_time.h in Headers */, + 584292A514C34B36000F8438 /* mysql_version.h in Headers */, + 584292A614C34B36000F8438 /* typelib.h in Headers */, + 5884127714CC63830078027F /* SPMySQL.h in Headers */, + 588412A814CC7A4D0078027F /* Locking.h in Headers */, + 5884142714CCF5190078027F /* Conversion.h in Headers */, + 588414BD14CE3B110078027F /* SPMySQLConnectionDelegate.h in Headers */, + 5884165514D2306A0078027F /* SPMySQLResult.h in Headers */, + 580A331E14D75CF7000D6933 /* SPMySQLGeometryData.h in Headers */, + 58C7C1E414DB6E4C00436315 /* SPMySQLFastStreamingResult.h in Headers */, + 58C7C1E814DB6E8600436315 /* Field Definitions.h in Headers */, + 58C006C814E0B18A00AC489A /* SPMySQLUtilities.h in Headers */, + 58C008CD14E2AC7D00AC489A /* SPMySQLConnectionProxy.h in Headers */, + 58C009D514E31D3800AC489A /* SPMySQLStringAdditions.h in Headers */, + 58C00AA914E4869C00AC489A /* Max Packet Size.h in Headers */, + 58C00AB514E4892E00AC489A /* Delegate & Proxy.h in Headers */, + 58C00BD114E7459600AC489A /* Databases & Tables.h in Headers */, + 58C00CA514E845D800AC489A /* SPMySQL Private APIs.h in Headers */, + 586A99FB14F02E21007F82BF /* SPMySQLStreamingResult.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 8DC2EF4F0486A6940098B216 /* SPMySQL.framework */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1DEB91AD08733DA50010E9CD /* Build configuration list for PBXNativeTarget "SPMySQL.framework" */; + buildPhases = ( + 8DC2EF500486A6940098B216 /* Headers */, + 8DC2EF520486A6940098B216 /* Resources */, + 8DC2EF540486A6940098B216 /* Sources */, + 8DC2EF560486A6940098B216 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SPMySQL.framework; + productInstallPath = "$(HOME)/Library/Frameworks"; + productName = SPMySQLFramework; + productReference = 8DC2EF5B0486A6940098B216 /* SPMySQL.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 0867D690FE84028FC02AAC07 /* Project object */ = { + isa = PBXProject; + buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "SPMySQLFramework" */; + compatibilityVersion = "Xcode 3.1"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 0867D691FE84028FC02AAC07 /* SPMySQLFramework */; + productRefGroup = 034768DFFF38A50411DB9C8B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8DC2EF4F0486A6940098B216 /* SPMySQL.framework */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8DC2EF520486A6940098B216 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8DC2EF540486A6940098B216 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 58428E0114BA5FAE000F8438 /* SPMySQLConnection.m in Sources */, + 584294F114CB8002000F8438 /* Ping & KeepAlive.m in Sources */, + 584294FB14CB8002000F8438 /* Encoding.m in Sources */, + 584294FF14CB8002000F8438 /* Server Info.m in Sources */, + 5884142814CCF5190078027F /* Conversion.m in Sources */, + 5884159514D1A6880078027F /* Querying & Preparation.m in Sources */, + 5884159414D1A6760078027F /* Locking.m in Sources */, + 5884165614D2306A0078027F /* SPMySQLResult.m in Sources */, + 580A331F14D75CF7000D6933 /* SPMySQLGeometryData.m in Sources */, + 58C7C1E514DB6E4C00436315 /* SPMySQLFastStreamingResult.m in Sources */, + 58C7C1E914DB6E8600436315 /* Field Definitions.m in Sources */, + 58C009D614E31D3800AC489A /* SPMySQLStringAdditions.m in Sources */, + 58C00AAA14E4869C00AC489A /* Max Packet Size.m in Sources */, + 58C00AB614E4892E00AC489A /* Delegate & Proxy.m in Sources */, + 58C00BD214E7459600AC489A /* Databases & Tables.m in Sources */, + 586A99FC14F02E21007F82BF /* SPMySQLStreamingResult.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 089C1666FE841158C02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C1667FE841158C02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 1DEB91AE08733DA50010E9CD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + FRAMEWORK_VERSION = A; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = Source/SPMySQLFramework_Prefix.pch; + INFOPLIST_FILE = Resources/Info.plist; + INSTALL_PATH = "@executable_path/../Frameworks"; + LD_DYLIB_INSTALL_NAME = "$(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(EXECUTABLE_PATH)"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/MySQL Client Libraries/lib\"", + ); + PRODUCT_NAME = SPMySQL; + WRAPPER_EXTENSION = framework; + }; + name = Debug; + }; + 1DEB91AF08733DA50010E9CD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + FRAMEWORK_VERSION = A; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = Source/SPMySQLFramework_Prefix.pch; + INFOPLIST_FILE = Resources/Info.plist; + INSTALL_PATH = "@executable_path/../Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/MySQL Client Libraries/lib\"", + ); + PRODUCT_NAME = SPMySQL; + WRAPPER_EXTENSION = framework; + }; + name = Release; + }; + 1DEB91B208733DA50010E9CD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; + GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; + GCC_WARN_MISSING_PARENTHESES = YES; + GCC_WARN_PROTOTYPE_CONVERSION = YES; + GCC_WARN_SHADOW = YES; + GCC_WARN_SIGN_COMPARE = YES; + GCC_WARN_STRICT_SELECTOR_MATCH = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACH_O_TYPE = mh_dylib; + ONLY_ACTIVE_ARCH = YES; + PREBINDING = NO; + SDKROOT = macosx10.5; + VALID_ARCHS = "i386 ppc x86_64"; + }; + name = Debug; + }; + 1DEB91B308733DA50010E9CD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; + GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; + GCC_WARN_MISSING_PARENTHESES = YES; + GCC_WARN_PROTOTYPE_CONVERSION = YES; + GCC_WARN_SHADOW = YES; + GCC_WARN_SIGN_COMPARE = YES; + GCC_WARN_STRICT_SELECTOR_MATCH = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACH_O_TYPE = mh_dylib; + PREBINDING = NO; + SDKROOT = macosx10.5; + VALID_ARCHS = "i386 ppc x86_64"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 1DEB91AD08733DA50010E9CD /* Build configuration list for PBXNativeTarget "SPMySQL.framework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DEB91AE08733DA50010E9CD /* Debug */, + 1DEB91AF08733DA50010E9CD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "SPMySQLFramework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DEB91B208733DA50010E9CD /* Debug */, + 1DEB91B308733DA50010E9CD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 0867D690FE84028FC02AAC07 /* Project object */; +} diff --git a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.mode1v3 b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.mode1v3 new file mode 100644 index 00000000..e865e35a --- /dev/null +++ b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.mode1v3 @@ -0,0 +1,1435 @@ + + + + + ActivePerspectiveName + Project + AllowedModules + + + BundleLoadPath + + MaxInstances + n + Module + PBXSmartGroupTreeModule + Name + Groups and Files Outline View + + + BundleLoadPath + + MaxInstances + n + Module + PBXNavigatorGroup + Name + Editor + + + BundleLoadPath + + MaxInstances + n + Module + XCTaskListModule + Name + Task List + + + BundleLoadPath + + MaxInstances + n + Module + XCDetailModule + Name + File and Smart Group Detail Viewer + + + BundleLoadPath + + MaxInstances + 1 + Module + PBXBuildResultsModule + Name + Detailed Build Results Viewer + + + BundleLoadPath + + MaxInstances + 1 + Module + PBXProjectFindModule + Name + Project Batch Find Tool + + + BundleLoadPath + + MaxInstances + n + Module + XCProjectFormatConflictsModule + Name + Project Format Conflicts List + + + BundleLoadPath + + MaxInstances + n + Module + PBXBookmarksModule + Name + Bookmarks Tool + + + BundleLoadPath + + MaxInstances + n + Module + PBXClassBrowserModule + Name + Class Browser + + + BundleLoadPath + + MaxInstances + n + Module + PBXCVSModule + Name + Source Code Control Tool + + + BundleLoadPath + + MaxInstances + n + Module + PBXDebugBreakpointsModule + Name + Debug Breakpoints Tool + + + BundleLoadPath + + MaxInstances + n + Module + XCDockableInspector + Name + Inspector + + + BundleLoadPath + + MaxInstances + n + Module + PBXOpenQuicklyModule + Name + Open Quickly Tool + + + BundleLoadPath + + MaxInstances + 1 + Module + PBXDebugSessionModule + Name + Debugger + + + BundleLoadPath + + MaxInstances + 1 + Module + PBXDebugCLIModule + Name + Debug Console + + + BundleLoadPath + + MaxInstances + n + Module + XCSnapshotModule + Name + Snapshots Tool + + + BundlePath + /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources + Description + DefaultDescriptionKey + DockingSystemVisible + + Extension + mode1v3 + FavBarConfig + + PBXProjectModuleGUID + 58428DCD14BA5397000F8438 + XCBarModuleItemNames + + XCBarModuleItems + + + FirstTimeWindowDisplayed + + Identifier + com.apple.perspectives.project.mode1v3 + MajorVersion + 33 + MinorVersion + 0 + Name + Default + Notifications + + OpenEditors + + PerspectiveWidths + + -1 + -1 + + Perspectives + + + ChosenToolbarItems + + active-combo-popup + action + NSToolbarFlexibleSpaceItem + debugger-enable-breakpoints + build-and-go + com.apple.ide.PBXToolbarStopButton + get-info + NSToolbarFlexibleSpaceItem + com.apple.pbx.toolbar.searchfield + + ControllerClassBaseName + + IconName + WindowOfProjectWithEditor + Identifier + perspective.project + IsVertical + + Layout + + + BecomeActive + + ContentConfiguration + + PBXBottomSmartGroupGIDs + + 1C37FBAC04509CD000000102 + 1C37FAAC04509CD000000102 + 1C37FABC05509CD000000102 + 1C37FABC05539CD112110102 + E2644B35053B69B200211256 + 1C37FABC04509CD000100104 + 1CC0EA4004350EF90044410B + 1CC0EA4004350EF90041110B + + PBXProjectModuleGUID + 1CE0B1FE06471DED0097A5F4 + PBXProjectModuleLabel + Files + PBXProjectStructureProvided + yes + PBXSmartGroupTreeModuleColumnData + + PBXSmartGroupTreeModuleColumnWidthsKey + + 186 + + PBXSmartGroupTreeModuleColumnsKey_v4 + + MainColumn + + + PBXSmartGroupTreeModuleOutlineStateKey_v7 + + PBXSmartGroupTreeModuleOutlineStateExpansionKey + + 0867D691FE84028FC02AAC07 + 58C0077714E1DFFF00AC489A + 08FB77AEFE84172EC02AAC07 + 584294EB14CB8002000F8438 + 5884142414CCF4E60078027F + 58C7C1E114DB6E3000436315 + 580A331B14D75CCF000D6933 + 58C009D214E31D1300AC489A + 32C88DFF0371C24200C91783 + 089C1665FE841158C02AAC07 + 58428DF514BA5A03000F8438 + 1C37FBAC04509CD000000102 + + PBXSmartGroupTreeModuleOutlineStateSelectionKey + + + 6 + 5 + 0 + + + PBXSmartGroupTreeModuleOutlineStateVisibleRectKey + {{0, 0}, {186, 787}} + + PBXTopSmartGroupGIDs + + XCIncludePerspectivesSwitch + + XCSharingToken + com.apple.Xcode.GFSharingToken + + GeometryConfiguration + + Frame + {{0, 0}, {203, 805}} + GroupTreeTableConfiguration + + MainColumn + 186 + + RubberWindowFrame + 257 32 1183 846 0 0 1440 878 + + Module + PBXSmartGroupTreeModule + Proportion + 203pt + + + Dock + + + ContentConfiguration + + PBXProjectModuleGUID + 1CE0B20306471E060097A5F4 + PBXProjectModuleLabel + SPMySQLConnectionProxy.h + PBXSplitModuleInNavigatorKey + + Split0 + + PBXProjectModuleGUID + 1CE0B20406471E060097A5F4 + PBXProjectModuleLabel + SPMySQLConnectionProxy.h + _historyCapacity + 0 + bookmark + 586AA0E314F1CEBE007F82BF + history + + 58428E0814BA5FEE000F8438 + 5842959F14CB9440000F8438 + 58C7C2E914DD96BA00436315 + 58F2538314DF16C6003C2AB8 + 58C0071C14E0B5F000AC489A + 58C0091014E2B28600AC489A + 58C009F414E341A300AC489A + 58C009F614E341A300AC489A + 58C009F914E341A300AC489A + 58C00A4914E443EF00AC489A + 58C00AE114E495D000AC489A + 58C00AE214E495D000AC489A + 58C00AE814E495D000AC489A + 58C00B1914E59D4500AC489A + 58C00BDA14E7465700AC489A + 58C00CE314E8738600AC489A + 58C00CE414E8738600AC489A + 58C00CE614E8738600AC489A + 58C00CE914E8738600AC489A + 58C00CEB14E8738600AC489A + 58C00F0914ED327D00AC489A + 586A990A14EE81C3007F82BF + 586A990B14EE81C3007F82BF + 586A990C14EE81C3007F82BF + 586A990D14EE81C3007F82BF + 586A990E14EE81C3007F82BF + 586A990F14EE81C3007F82BF + 586A991014EE81C3007F82BF + 586A991114EE81C3007F82BF + 586A991314EE81C3007F82BF + 586A991414EE81C3007F82BF + 586A992A14EEA225007F82BF + 586A99AD14EFFB2A007F82BF + 586A9A7D14F081A3007F82BF + 586A9A7E14F081A3007F82BF + 586A9A7F14F081A3007F82BF + 586A9A8014F081A3007F82BF + 586A9A8114F081A3007F82BF + 586A9A8214F081A3007F82BF + 586A9A8314F081A3007F82BF + 586A9D5914F1BE95007F82BF + + + SplitCount + 1 + + StatusBarVisibility + + + GeometryConfiguration + + Frame + {{0, 0}, {975, 548}} + RubberWindowFrame + 257 32 1183 846 0 0 1440 878 + + Module + PBXNavigatorGroup + Proportion + 548pt + + + ContentConfiguration + + PBXProjectModuleGUID + 1CE0B20506471E060097A5F4 + PBXProjectModuleLabel + Detail + + GeometryConfiguration + + Frame + {{0, 553}, {975, 252}} + RubberWindowFrame + 257 32 1183 846 0 0 1440 878 + + Module + XCDetailModule + Proportion + 252pt + + + Proportion + 975pt + + + Name + Project + ServiceClasses + + XCModuleDock + PBXSmartGroupTreeModule + XCModuleDock + PBXNavigatorGroup + XCDetailModule + + TableOfContents + + 586AA0E414F1CEBE007F82BF + 1CE0B1FE06471DED0097A5F4 + 586AA0E514F1CEBE007F82BF + 1CE0B20306471E060097A5F4 + 1CE0B20506471E060097A5F4 + + ToolbarConfigUserDefaultsMinorVersion + 2 + ToolbarConfiguration + xcode.toolbar.config.defaultV3 + + + ControllerClassBaseName + + IconName + WindowOfProject + Identifier + perspective.morph + IsVertical + 0 + Layout + + + BecomeActive + 1 + ContentConfiguration + + PBXBottomSmartGroupGIDs + + 1C37FBAC04509CD000000102 + 1C37FAAC04509CD000000102 + 1C08E77C0454961000C914BD + 1C37FABC05509CD000000102 + 1C37FABC05539CD112110102 + E2644B35053B69B200211256 + 1C37FABC04509CD000100104 + 1CC0EA4004350EF90044410B + 1CC0EA4004350EF90041110B + + PBXProjectModuleGUID + 11E0B1FE06471DED0097A5F4 + PBXProjectModuleLabel + Files + PBXProjectStructureProvided + yes + PBXSmartGroupTreeModuleColumnData + + PBXSmartGroupTreeModuleColumnWidthsKey + + 186 + + PBXSmartGroupTreeModuleColumnsKey_v4 + + MainColumn + + + PBXSmartGroupTreeModuleOutlineStateKey_v7 + + PBXSmartGroupTreeModuleOutlineStateExpansionKey + + 29B97314FDCFA39411CA2CEA + 1C37FABC05509CD000000102 + + PBXSmartGroupTreeModuleOutlineStateSelectionKey + + + 0 + + + PBXSmartGroupTreeModuleOutlineStateVisibleRectKey + {{0, 0}, {186, 337}} + + PBXTopSmartGroupGIDs + + XCIncludePerspectivesSwitch + 1 + XCSharingToken + com.apple.Xcode.GFSharingToken + + GeometryConfiguration + + Frame + {{0, 0}, {203, 355}} + GroupTreeTableConfiguration + + MainColumn + 186 + + RubberWindowFrame + 373 269 690 397 0 0 1440 878 + + Module + PBXSmartGroupTreeModule + Proportion + 100% + + + Name + Morph + PreferredWidth + 300 + ServiceClasses + + XCModuleDock + PBXSmartGroupTreeModule + + TableOfContents + + 11E0B1FE06471DED0097A5F4 + + ToolbarConfiguration + xcode.toolbar.config.default.shortV3 + + + PerspectivesBarVisible + + ShelfIsVisible + + SourceDescription + file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec' + StatusbarIsVisible + + TimeStamp + 0.0 + ToolbarConfigUserDefaultsMinorVersion + 2 + ToolbarDisplayMode + 2 + ToolbarIsVisible + + ToolbarSizeMode + 2 + Type + Perspectives + UpdateMessage + The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? + WindowJustification + 5 + WindowOrderList + + 58428DCE14BA5397000F8438 + /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj + + WindowString + 257 32 1183 846 0 0 1440 878 + WindowToolsV3 + + + FirstTimeWindowDisplayed + + Identifier + windowTool.build + IsVertical + + Layout + + + Dock + + + ContentConfiguration + + PBXProjectModuleGUID + 1CD0528F0623707200166675 + PBXProjectModuleLabel + + StatusBarVisibility + + + GeometryConfiguration + + Frame + {{0, 0}, {704, 494}} + RubberWindowFrame + 616 102 704 776 0 0 1440 878 + + Module + PBXNavigatorGroup + Proportion + 494pt + + + ContentConfiguration + + PBXProjectModuleGUID + XCMainBuildResultsModuleGUID + PBXProjectModuleLabel + Build Results + XCBuildResultsTrigger_Collapse + 1021 + XCBuildResultsTrigger_Open + 1011 + + GeometryConfiguration + + Frame + {{0, 499}, {704, 236}} + RubberWindowFrame + 616 102 704 776 0 0 1440 878 + + Module + PBXBuildResultsModule + Proportion + 236pt + + + Proportion + 735pt + + + Name + Build Results + ServiceClasses + + PBXBuildResultsModule + + StatusbarIsVisible + + TableOfContents + + 58428DCE14BA5397000F8438 + 586AA0E614F1CEBE007F82BF + 1CD0528F0623707200166675 + XCMainBuildResultsModuleGUID + + ToolbarConfiguration + xcode.toolbar.config.buildV3 + WindowContentMinSize + 486 300 + WindowString + 616 102 704 776 0 0 1440 878 + WindowToolGUID + 58428DCE14BA5397000F8438 + WindowToolIsVisible + + + + Identifier + windowTool.debugger + Layout + + + Dock + + + ContentConfiguration + + Debugger + + HorizontalSplitView + + _collapsingFrameDimension + 0.0 + _indexOfCollapsedView + 0 + _percentageOfCollapsedView + 0.0 + isCollapsed + yes + sizes + + {{0, 0}, {317, 164}} + {{317, 0}, {377, 164}} + + + VerticalSplitView + + _collapsingFrameDimension + 0.0 + _indexOfCollapsedView + 0 + _percentageOfCollapsedView + 0.0 + isCollapsed + yes + sizes + + {{0, 0}, {694, 164}} + {{0, 164}, {694, 216}} + + + + LauncherConfigVersion + 8 + PBXProjectModuleGUID + 1C162984064C10D400B95A72 + PBXProjectModuleLabel + Debug - GLUTExamples (Underwater) + + GeometryConfiguration + + DebugConsoleDrawerSize + {100, 120} + DebugConsoleVisible + None + DebugConsoleWindowFrame + {{200, 200}, {500, 300}} + DebugSTDIOWindowFrame + {{200, 200}, {500, 300}} + Frame + {{0, 0}, {694, 380}} + RubberWindowFrame + 321 238 694 422 0 0 1440 878 + + Module + PBXDebugSessionModule + Proportion + 100% + + + Proportion + 100% + + + Name + Debugger + ServiceClasses + + PBXDebugSessionModule + + StatusbarIsVisible + 1 + TableOfContents + + 1CD10A99069EF8BA00B06720 + 1C0AD2AB069F1E9B00FABCE6 + 1C162984064C10D400B95A72 + 1C0AD2AC069F1E9B00FABCE6 + + ToolbarConfiguration + xcode.toolbar.config.debugV3 + WindowString + 321 238 694 422 0 0 1440 878 + WindowToolGUID + 1CD10A99069EF8BA00B06720 + WindowToolIsVisible + 0 + + + FirstTimeWindowDisplayed + + Identifier + windowTool.find + IsVertical + + Layout + + + Dock + + + Dock + + + BecomeActive + + ContentConfiguration + + PBXProjectModuleGUID + 1CDD528C0622207200134675 + PBXProjectModuleLabel + Ping & KeepAlive.m + StatusBarVisibility + + + GeometryConfiguration + + Frame + {{0, 0}, {781, 265}} + RubberWindowFrame + 632 182 781 580 0 0 1440 878 + + Module + PBXNavigatorGroup + Proportion + 781pt + + + Proportion + 265pt + + + ContentConfiguration + + PBXProjectModuleGUID + 1CD0528E0623707200166675 + PBXProjectModuleLabel + Project Find + + GeometryConfiguration + + Frame + {{0, 270}, {781, 269}} + RubberWindowFrame + 632 182 781 580 0 0 1440 878 + + Module + PBXProjectFindModule + Proportion + 269pt + + + Proportion + 539pt + + + Name + Project Find + ServiceClasses + + PBXProjectFindModule + + StatusbarIsVisible + + TableOfContents + + 1C530D57069F1CE1000CFCEE + 586A98E714EE7A42007F82BF + 586A98E814EE7A42007F82BF + 1CDD528C0622207200134675 + 1CD0528E0623707200166675 + + WindowString + 632 182 781 580 0 0 1440 878 + WindowToolGUID + 1C530D57069F1CE1000CFCEE + WindowToolIsVisible + + + + Identifier + MENUSEPARATOR + + + Identifier + windowTool.debuggerConsole + Layout + + + Dock + + + BecomeActive + 1 + ContentConfiguration + + PBXProjectModuleGUID + 1C78EAAC065D492600B07095 + PBXProjectModuleLabel + Debugger Console + + GeometryConfiguration + + Frame + {{0, 0}, {650, 250}} + RubberWindowFrame + 516 632 650 250 0 0 1680 1027 + + Module + PBXDebugCLIModule + Proportion + 209pt + + + Proportion + 209pt + + + Name + Debugger Console + ServiceClasses + + PBXDebugCLIModule + + StatusbarIsVisible + 1 + TableOfContents + + 1C78EAAD065D492600B07095 + 1C78EAAE065D492600B07095 + 1C78EAAC065D492600B07095 + + ToolbarConfiguration + xcode.toolbar.config.consoleV3 + WindowString + 650 41 650 250 0 0 1280 1002 + WindowToolGUID + 1C78EAAD065D492600B07095 + WindowToolIsVisible + 0 + + + FirstTimeWindowDisplayed + + Identifier + windowTool.snapshots + IsVertical + + Layout + + + Dock + + + ContentConfiguration + + PBXProjectModuleGUID + 586A9C6014F172AE007F82BF + PBXProjectModuleLabel + Snapshots + + GeometryConfiguration + + Frame + {{0, 0}, {300, 509}} + RubberWindowFrame + 278 305 300 550 0 0 1440 878 + + Module + XCSnapshotModule + Proportion + 509pt + + + Proportion + 509pt + + + Name + Snapshots + ServiceClasses + + XCSnapshotModule + + StatusbarIsVisible + + TableOfContents + + 586A9C6114F172AE007F82BF + 586A9C6214F172AE007F82BF + 586A9C6014F172AE007F82BF + + ToolbarConfiguration + xcode.toolbar.config.snapshots + WindowString + 278 305 300 550 0 0 1440 878 + WindowToolGUID + 586A9C6114F172AE007F82BF + WindowToolIsVisible + + + + Identifier + windowTool.scm + Layout + + + Dock + + + ContentConfiguration + + PBXProjectModuleGUID + 1C78EAB2065D492600B07095 + PBXProjectModuleLabel + <No Editor> + PBXSplitModuleInNavigatorKey + + Split0 + + PBXProjectModuleGUID + 1C78EAB3065D492600B07095 + + SplitCount + 1 + + StatusBarVisibility + 1 + + GeometryConfiguration + + Frame + {{0, 0}, {452, 0}} + RubberWindowFrame + 743 379 452 308 0 0 1280 1002 + + Module + PBXNavigatorGroup + Proportion + 0pt + + + BecomeActive + 1 + ContentConfiguration + + PBXProjectModuleGUID + 1CD052920623707200166675 + PBXProjectModuleLabel + SCM + + GeometryConfiguration + + ConsoleFrame + {{0, 259}, {452, 0}} + Frame + {{0, 7}, {452, 259}} + RubberWindowFrame + 743 379 452 308 0 0 1280 1002 + TableConfiguration + + Status + 30 + FileName + 199 + Path + 197.0950012207031 + + TableFrame + {{0, 0}, {452, 250}} + + Module + PBXCVSModule + Proportion + 262pt + + + Proportion + 266pt + + + Name + SCM + ServiceClasses + + PBXCVSModule + + StatusbarIsVisible + 1 + TableOfContents + + 1C78EAB4065D492600B07095 + 1C78EAB5065D492600B07095 + 1C78EAB2065D492600B07095 + 1CD052920623707200166675 + + ToolbarConfiguration + xcode.toolbar.config.scm + WindowString + 743 379 452 308 0 0 1280 1002 + + + Identifier + windowTool.breakpoints + IsVertical + 0 + Layout + + + Dock + + + BecomeActive + 1 + ContentConfiguration + + PBXBottomSmartGroupGIDs + + 1C77FABC04509CD000000102 + + PBXProjectModuleGUID + 1CE0B1FE06471DED0097A5F4 + PBXProjectModuleLabel + Files + PBXProjectStructureProvided + no + PBXSmartGroupTreeModuleColumnData + + PBXSmartGroupTreeModuleColumnWidthsKey + + 168 + + PBXSmartGroupTreeModuleColumnsKey_v4 + + MainColumn + + + PBXSmartGroupTreeModuleOutlineStateKey_v7 + + PBXSmartGroupTreeModuleOutlineStateExpansionKey + + 1C77FABC04509CD000000102 + + PBXSmartGroupTreeModuleOutlineStateSelectionKey + + + 0 + + + PBXSmartGroupTreeModuleOutlineStateVisibleRectKey + {{0, 0}, {168, 350}} + + PBXTopSmartGroupGIDs + + XCIncludePerspectivesSwitch + 0 + + GeometryConfiguration + + Frame + {{0, 0}, {185, 368}} + GroupTreeTableConfiguration + + MainColumn + 168 + + RubberWindowFrame + 315 424 744 409 0 0 1440 878 + + Module + PBXSmartGroupTreeModule + Proportion + 185pt + + + ContentConfiguration + + PBXProjectModuleGUID + 1CA1AED706398EBD00589147 + PBXProjectModuleLabel + Detail + + GeometryConfiguration + + Frame + {{190, 0}, {554, 368}} + RubberWindowFrame + 315 424 744 409 0 0 1440 878 + + Module + XCDetailModule + Proportion + 554pt + + + Proportion + 368pt + + + MajorVersion + 3 + MinorVersion + 0 + Name + Breakpoints + ServiceClasses + + PBXSmartGroupTreeModule + XCDetailModule + + StatusbarIsVisible + 1 + TableOfContents + + 1CDDB66807F98D9800BB5817 + 1CDDB66907F98D9800BB5817 + 1CE0B1FE06471DED0097A5F4 + 1CA1AED706398EBD00589147 + + ToolbarConfiguration + xcode.toolbar.config.breakpointsV3 + WindowString + 315 424 744 409 0 0 1440 878 + WindowToolGUID + 1CDDB66807F98D9800BB5817 + WindowToolIsVisible + 1 + + + Identifier + windowTool.debugAnimator + Layout + + + Dock + + + Module + PBXNavigatorGroup + Proportion + 100% + + + Proportion + 100% + + + Name + Debug Visualizer + ServiceClasses + + PBXNavigatorGroup + + StatusbarIsVisible + 1 + ToolbarConfiguration + xcode.toolbar.config.debugAnimatorV3 + WindowString + 100 100 700 500 0 0 1280 1002 + + + Identifier + windowTool.bookmarks + Layout + + + Dock + + + Module + PBXBookmarksModule + Proportion + 100% + + + Proportion + 100% + + + Name + Bookmarks + ServiceClasses + + PBXBookmarksModule + + StatusbarIsVisible + 0 + WindowString + 538 42 401 187 0 0 1280 1002 + + + Identifier + windowTool.projectFormatConflicts + Layout + + + Dock + + + Module + XCProjectFormatConflictsModule + Proportion + 100% + + + Proportion + 100% + + + Name + Project Format Conflicts + ServiceClasses + + XCProjectFormatConflictsModule + + StatusbarIsVisible + 0 + WindowContentMinSize + 450 300 + WindowString + 50 850 472 307 0 0 1440 877 + + + Identifier + windowTool.classBrowser + Layout + + + Dock + + + BecomeActive + 1 + ContentConfiguration + + OptionsSetName + Hierarchy, all classes + PBXProjectModuleGUID + 1CA6456E063B45B4001379D8 + PBXProjectModuleLabel + Class Browser - NSObject + + GeometryConfiguration + + ClassesFrame + {{0, 0}, {374, 96}} + ClassesTreeTableConfiguration + + PBXClassNameColumnIdentifier + 208 + PBXClassBookColumnIdentifier + 22 + + Frame + {{0, 0}, {630, 331}} + MembersFrame + {{0, 105}, {374, 395}} + MembersTreeTableConfiguration + + PBXMemberTypeIconColumnIdentifier + 22 + PBXMemberNameColumnIdentifier + 216 + PBXMemberTypeColumnIdentifier + 97 + PBXMemberBookColumnIdentifier + 22 + + PBXModuleWindowStatusBarHidden2 + 1 + RubberWindowFrame + 385 179 630 352 0 0 1440 878 + + Module + PBXClassBrowserModule + Proportion + 332pt + + + Proportion + 332pt + + + Name + Class Browser + ServiceClasses + + PBXClassBrowserModule + + StatusbarIsVisible + 0 + TableOfContents + + 1C0AD2AF069F1E9B00FABCE6 + 1C0AD2B0069F1E9B00FABCE6 + 1CA6456E063B45B4001379D8 + + ToolbarConfiguration + xcode.toolbar.config.classbrowser + WindowString + 385 179 630 352 0 0 1440 878 + WindowToolGUID + 1C0AD2AF069F1E9B00FABCE6 + WindowToolIsVisible + 0 + + + Identifier + windowTool.refactoring + IncludeInToolsMenu + 0 + Layout + + + Dock + + + BecomeActive + 1 + GeometryConfiguration + + Frame + {0, 0}, {500, 335} + RubberWindowFrame + {0, 0}, {500, 335} + + Module + XCRefactoringModule + Proportion + 100% + + + Proportion + 100% + + + Name + Refactoring + ServiceClasses + + XCRefactoringModule + + WindowString + 200 200 500 356 0 0 1920 1200 + + + + diff --git a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.pbxuser b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.pbxuser new file mode 100644 index 00000000..694e0810 --- /dev/null +++ b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.pbxuser @@ -0,0 +1,5058 @@ +// !$*UTF8*$! +{ + 0867D690FE84028FC02AAC07 /* Project object */ = { + activeBuildConfigurationName = Debug; + activeTarget = 8DC2EF4F0486A6940098B216 /* SPMySQL.framework */; + addToTargets = ( + ); + breakpoints = ( + ); + codeSenseManager = 58428DC414BA516B000F8438 /* Code sense */; + perUserDictionary = { + PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { + PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; + PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; + PBXFileTableDataSourceColumnWidthsKey = ( + 20, + 751, + 20, + 48, + 43, + 43, + 20, + ); + PBXFileTableDataSourceColumnsKey = ( + PBXFileDataSource_FiletypeID, + PBXFileDataSource_Filename_ColumnID, + PBXFileDataSource_Built_ColumnID, + PBXFileDataSource_ObjectSize_ColumnID, + PBXFileDataSource_Errors_ColumnID, + PBXFileDataSource_Warnings_ColumnID, + PBXFileDataSource_Target_ColumnID, + ); + }; + PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = { + PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; + PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; + PBXFileTableDataSourceColumnWidthsKey = ( + 20, + 711, + 60, + 20, + 48, + 43, + 43, + ); + PBXFileTableDataSourceColumnsKey = ( + PBXFileDataSource_FiletypeID, + PBXFileDataSource_Filename_ColumnID, + PBXTargetDataSource_PrimaryAttribute, + PBXFileDataSource_Built_ColumnID, + PBXFileDataSource_ObjectSize_ColumnID, + PBXFileDataSource_Errors_ColumnID, + PBXFileDataSource_Warnings_ColumnID, + ); + }; + PBXPerProjectTemplateStateSaveDate = 351391398; + PBXWorkspaceStateSaveDate = 351391398; + }; + perUserProjectItems = { + 58428E0814BA5FEE000F8438 = 58428E0814BA5FEE000F8438 /* PBXTextBookmark */; + 5842959F14CB9440000F8438 = 5842959F14CB9440000F8438 /* PBXTextBookmark */; + 586A985014ED8BA5007F82BF = 586A985014ED8BA5007F82BF /* PBXTextBookmark */; + 586A985314ED8BA5007F82BF = 586A985314ED8BA5007F82BF /* PBXTextBookmark */; + 586A985414ED8BA5007F82BF = 586A985414ED8BA5007F82BF /* PBXTextBookmark */; + 586A985514ED8BA5007F82BF = 586A985514ED8BA5007F82BF /* PBXTextBookmark */; + 586A985614ED8BA5007F82BF = 586A985614ED8BA5007F82BF /* PBXTextBookmark */; + 586A985714ED8BA5007F82BF = 586A985714ED8BA5007F82BF /* PBXTextBookmark */; + 586A985814ED8BA5007F82BF = 586A985814ED8BA5007F82BF /* PBXTextBookmark */; + 586A985914ED8BA5007F82BF = 586A985914ED8BA5007F82BF /* PBXTextBookmark */; + 586A985A14ED8BA5007F82BF = 586A985A14ED8BA5007F82BF /* PBXTextBookmark */; + 586A985B14ED8BA5007F82BF = 586A985B14ED8BA5007F82BF /* PBXTextBookmark */; + 586A987B14ED8D6C007F82BF = 586A987B14ED8D6C007F82BF /* PBXTextBookmark */; + 586A987C14ED8D6C007F82BF = 586A987C14ED8D6C007F82BF /* PBXTextBookmark */; + 586A987D14ED8D6C007F82BF = 586A987D14ED8D6C007F82BF /* PBXTextBookmark */; + 586A987E14ED8D6C007F82BF = 586A987E14ED8D6C007F82BF /* PBXTextBookmark */; + 586A987F14ED8D6C007F82BF = 586A987F14ED8D6C007F82BF /* PBXTextBookmark */; + 586A988014ED8D6C007F82BF = 586A988014ED8D6C007F82BF /* PBXTextBookmark */; + 586A988114ED8D6C007F82BF = 586A988114ED8D6C007F82BF /* PBXTextBookmark */; + 586A988214ED8D6C007F82BF = 586A988214ED8D6C007F82BF /* PBXTextBookmark */; + 586A988314ED8D6C007F82BF = 586A988314ED8D6C007F82BF /* PBXTextBookmark */; + 586A989814ED8F37007F82BF = 586A989814ED8F37007F82BF /* PBXTextBookmark */; + 586A989914ED8F37007F82BF = 586A989914ED8F37007F82BF /* PBXTextBookmark */; + 586A989A14ED8F37007F82BF = 586A989A14ED8F37007F82BF /* PBXTextBookmark */; + 586A989B14ED8F37007F82BF = 586A989B14ED8F37007F82BF /* PBXTextBookmark */; + 586A989C14ED8F37007F82BF = 586A989C14ED8F37007F82BF /* PBXTextBookmark */; + 586A989D14ED8F37007F82BF = 586A989D14ED8F37007F82BF /* PBXTextBookmark */; + 586A989E14ED8F37007F82BF = 586A989E14ED8F37007F82BF /* PBXTextBookmark */; + 586A989F14ED8F37007F82BF = 586A989F14ED8F37007F82BF /* PBXTextBookmark */; + 586A98CA14EDE440007F82BF = 586A98CA14EDE440007F82BF /* PBXTextBookmark */; + 586A98CB14EDE440007F82BF = 586A98CB14EDE440007F82BF /* PBXTextBookmark */; + 586A98CC14EDE440007F82BF = 586A98CC14EDE440007F82BF /* PBXTextBookmark */; + 586A98CD14EDE440007F82BF = 586A98CD14EDE440007F82BF /* PBXTextBookmark */; + 586A98CE14EDE440007F82BF = 586A98CE14EDE440007F82BF /* PBXTextBookmark */; + 586A98CF14EDE440007F82BF = 586A98CF14EDE440007F82BF /* PBXTextBookmark */; + 586A98D014EDE440007F82BF = 586A98D014EDE440007F82BF /* PBXTextBookmark */; + 586A98E014EE75EB007F82BF = 586A98E014EE75EB007F82BF /* PBXBookmark */; + 586A990914EE81C3007F82BF = 586A990914EE81C3007F82BF /* PBXTextBookmark */; + 586A990A14EE81C3007F82BF = 586A990A14EE81C3007F82BF /* PBXTextBookmark */; + 586A990B14EE81C3007F82BF = 586A990B14EE81C3007F82BF /* PBXTextBookmark */; + 586A990C14EE81C3007F82BF = 586A990C14EE81C3007F82BF /* PBXTextBookmark */; + 586A990D14EE81C3007F82BF = 586A990D14EE81C3007F82BF /* PBXTextBookmark */; + 586A990E14EE81C3007F82BF = 586A990E14EE81C3007F82BF /* PBXTextBookmark */; + 586A990F14EE81C3007F82BF = 586A990F14EE81C3007F82BF /* PBXTextBookmark */; + 586A991014EE81C3007F82BF = 586A991014EE81C3007F82BF /* PBXTextBookmark */; + 586A991114EE81C3007F82BF = 586A991114EE81C3007F82BF /* PBXTextBookmark */; + 586A991214EE81C3007F82BF = 586A991214EE81C3007F82BF /* PBXTextBookmark */; + 586A991314EE81C3007F82BF = 586A991314EE81C3007F82BF /* PBXTextBookmark */; + 586A991414EE81C3007F82BF = 586A991414EE81C3007F82BF /* PBXTextBookmark */; + 586A991514EE81C3007F82BF = 586A991514EE81C3007F82BF /* PBXTextBookmark */; + 586A991614EE81C3007F82BF = 586A991614EE81C3007F82BF /* PBXTextBookmark */; + 586A991714EE81C3007F82BF = 586A991714EE81C3007F82BF /* PBXTextBookmark */; + 586A991814EE81C3007F82BF = 586A991814EE81C3007F82BF /* PBXTextBookmark */; + 586A991914EE81C3007F82BF = 586A991914EE81C3007F82BF /* PBXTextBookmark */; + 586A991A14EE81C3007F82BF = 586A991A14EE81C3007F82BF /* PBXTextBookmark */; + 586A991B14EE81C3007F82BF = 586A991B14EE81C3007F82BF /* PBXTextBookmark */; + 586A991C14EE81C3007F82BF = 586A991C14EE81C3007F82BF /* PBXTextBookmark */; + 586A991F14EE81C3007F82BF = 586A991F14EE81C3007F82BF /* PBXTextBookmark */; + 586A992814EEA221007F82BF = 586A992814EEA221007F82BF /* PBXTextBookmark */; + 586A992914EEA221007F82BF = 586A992914EEA221007F82BF /* PBXTextBookmark */; + 586A992A14EEA225007F82BF = 586A992A14EEA225007F82BF /* PBXTextBookmark */; + 586A992B14EEA225007F82BF = 586A992B14EEA225007F82BF /* PBXTextBookmark */; + 586A992C14EEA225007F82BF = 586A992C14EEA225007F82BF /* PBXTextBookmark */; + 586A992D14EEA225007F82BF = 586A992D14EEA225007F82BF /* PBXTextBookmark */; + 586A992E14EEA225007F82BF = 586A992E14EEA225007F82BF /* PBXTextBookmark */; + 586A992F14EEA225007F82BF = 586A992F14EEA225007F82BF /* PBXTextBookmark */; + 586A993014EEA225007F82BF = 586A993014EEA225007F82BF /* PBXTextBookmark */; + 586A993114EEA225007F82BF = 586A993114EEA225007F82BF /* PBXTextBookmark */; + 586A993214EEA225007F82BF = 586A993214EEA225007F82BF /* PBXTextBookmark */; + 586A993314EEA225007F82BF = 586A993314EEA225007F82BF /* PBXTextBookmark */; + 586A993614EEA225007F82BF = 586A993614EEA225007F82BF /* PBXTextBookmark */; + 586A993714EEA225007F82BF = 586A993714EEA225007F82BF /* PBXTextBookmark */; + 586A994414EECED8007F82BF = 586A994414EECED8007F82BF /* PBXTextBookmark */; + 586A994714EECED8007F82BF = 586A994714EECED8007F82BF /* PBXBookmark */; + 586A994814EECED8007F82BF = 586A994814EECED8007F82BF /* PBXTextBookmark */; + 586A994B14EECED8007F82BF = 586A994B14EECED8007F82BF /* PBXTextBookmark */; + 586A994C14EECED8007F82BF = 586A994C14EECED8007F82BF /* PBXTextBookmark */; + 586A994D14EECED8007F82BF = 586A994D14EECED8007F82BF /* PBXTextBookmark */; + 586A994E14EECED8007F82BF = 586A994E14EECED8007F82BF /* PBXTextBookmark */; + 586A994F14EECED8007F82BF = 586A994F14EECED8007F82BF /* PBXTextBookmark */; + 586A995014EECED8007F82BF = 586A995014EECED8007F82BF /* PBXTextBookmark */; + 586A995114EECED8007F82BF = 586A995114EECED8007F82BF /* PBXTextBookmark */; + 586A995214EECED8007F82BF = 586A995214EECED8007F82BF /* PBXTextBookmark */; + 586A995314EECED8007F82BF = 586A995314EECED8007F82BF /* PBXTextBookmark */; + 586A995414EECED8007F82BF = 586A995414EECED8007F82BF /* PBXTextBookmark */; + 586A995514EECED8007F82BF = 586A995514EECED8007F82BF /* PBXTextBookmark */; + 586A996C14EED74A007F82BF = 586A996C14EED74A007F82BF /* PBXTextBookmark */; + 586A996D14EED74A007F82BF = 586A996D14EED74A007F82BF /* PBXTextBookmark */; + 586A996E14EED74A007F82BF = 586A996E14EED74A007F82BF /* PBXTextBookmark */; + 586A996F14EED74A007F82BF = 586A996F14EED74A007F82BF /* PBXTextBookmark */; + 586A997014EED74A007F82BF = 586A997014EED74A007F82BF /* PBXTextBookmark */; + 586A997114EED74A007F82BF = 586A997114EED74A007F82BF /* PBXTextBookmark */; + 586A997214EED74A007F82BF = 586A997214EED74A007F82BF /* PBXTextBookmark */; + 586A997314EED74A007F82BF = 586A997314EED74A007F82BF /* PBXTextBookmark */; + 586A997414EED74A007F82BF = 586A997414EED74A007F82BF /* PBXTextBookmark */; + 586A997514EED74A007F82BF = 586A997514EED74A007F82BF /* PBXTextBookmark */; + 586A999014EEE281007F82BF = 586A999014EEE281007F82BF /* PBXBookmark */; + 586A99AD14EFFB2A007F82BF = 586A99AD14EFFB2A007F82BF /* PBXTextBookmark */; + 586A99AE14EFFB2A007F82BF = 586A99AE14EFFB2A007F82BF /* PBXTextBookmark */; + 586A99AF14EFFB2A007F82BF = 586A99AF14EFFB2A007F82BF /* PBXTextBookmark */; + 586A99B014EFFB2A007F82BF = 586A99B014EFFB2A007F82BF /* PBXTextBookmark */; + 586A99B314EFFB2A007F82BF = 586A99B314EFFB2A007F82BF /* PBXTextBookmark */; + 586A99B414EFFB2A007F82BF = 586A99B414EFFB2A007F82BF /* PBXTextBookmark */; + 586A99B514EFFB2A007F82BF = 586A99B514EFFB2A007F82BF /* PBXTextBookmark */; + 586A99B814EFFB2A007F82BF = 586A99B814EFFB2A007F82BF /* PBXTextBookmark */; + 586A99B914EFFB2A007F82BF = 586A99B914EFFB2A007F82BF /* PBXTextBookmark */; + 586A99BC14EFFB2A007F82BF = 586A99BC14EFFB2A007F82BF /* PBXTextBookmark */; + 586A99BD14EFFB2A007F82BF = 586A99BD14EFFB2A007F82BF /* PBXTextBookmark */; + 586A99C014EFFB2A007F82BF = 586A99C014EFFB2A007F82BF /* PBXTextBookmark */; + 586A99C114EFFB2A007F82BF = 586A99C114EFFB2A007F82BF /* PBXTextBookmark */; + 586A99C214EFFB2A007F82BF = 586A99C214EFFB2A007F82BF /* PBXTextBookmark */; + 586A99C314EFFB2A007F82BF = 586A99C314EFFB2A007F82BF /* PBXTextBookmark */; + 586A99C414EFFB2A007F82BF = 586A99C414EFFB2A007F82BF /* PBXTextBookmark */; + 586A99C514EFFB2A007F82BF = 586A99C514EFFB2A007F82BF /* PBXTextBookmark */; + 586A99C614EFFB2A007F82BF = 586A99C614EFFB2A007F82BF /* PBXTextBookmark */; + 586A99CD14F00C55007F82BF = 586A99CD14F00C55007F82BF /* PBXTextBookmark */; + 586A99CE14F00C55007F82BF = 586A99CE14F00C55007F82BF /* PBXTextBookmark */; + 586A99CF14F00C55007F82BF = 586A99CF14F00C55007F82BF /* PBXTextBookmark */; + 586A99D014F00C55007F82BF = 586A99D014F00C55007F82BF /* PBXTextBookmark */; + 586A99D114F00C55007F82BF = 586A99D114F00C55007F82BF /* PBXTextBookmark */; + 586A99D214F00C55007F82BF = 586A99D214F00C55007F82BF /* PBXTextBookmark */; + 586A99D314F00C55007F82BF = 586A99D314F00C55007F82BF /* PBXTextBookmark */; + 586A99D614F01759007F82BF = 586A99D614F01759007F82BF /* PBXTextBookmark */; + 586A99D714F01759007F82BF = 586A99D714F01759007F82BF /* PBXTextBookmark */; + 586A99D814F01759007F82BF = 586A99D814F01759007F82BF /* PBXTextBookmark */; + 586A99D914F01759007F82BF = 586A99D914F01759007F82BF /* PBXTextBookmark */; + 586A99DA14F01759007F82BF = 586A99DA14F01759007F82BF /* PBXTextBookmark */; + 586A99DB14F01759007F82BF = 586A99DB14F01759007F82BF /* PBXTextBookmark */; + 586A99DC14F01759007F82BF = 586A99DC14F01759007F82BF /* PBXTextBookmark */; + 586A99DD14F01759007F82BF = 586A99DD14F01759007F82BF /* PBXTextBookmark */; + 586A99DE14F01759007F82BF = 586A99DE14F01759007F82BF /* PBXTextBookmark */; + 586A99DF14F01759007F82BF = 586A99DF14F01759007F82BF /* PBXTextBookmark */; + 586A99E014F01759007F82BF = 586A99E014F01759007F82BF /* PBXTextBookmark */; + 586A99E114F01759007F82BF = 586A99E114F01759007F82BF /* PBXTextBookmark */; + 586A9A1614F05216007F82BF = 586A9A1614F05216007F82BF /* PBXTextBookmark */; + 586A9A1714F05216007F82BF = 586A9A1714F05216007F82BF /* PBXTextBookmark */; + 586A9A1814F05216007F82BF = 586A9A1814F05216007F82BF /* PBXTextBookmark */; + 586A9A1914F05216007F82BF = 586A9A1914F05216007F82BF /* PBXTextBookmark */; + 586A9A1A14F0527D007F82BF = 586A9A1A14F0527D007F82BF /* PBXBookmark */; + 586A9A2C14F05659007F82BF = 586A9A2C14F05659007F82BF /* PBXTextBookmark */; + 586A9A2D14F05659007F82BF = 586A9A2D14F05659007F82BF /* PBXTextBookmark */; + 586A9A2E14F05659007F82BF = 586A9A2E14F05659007F82BF /* PBXTextBookmark */; + 586A9A2F14F05659007F82BF = 586A9A2F14F05659007F82BF /* PBXTextBookmark */; + 586A9A7D14F081A3007F82BF = 586A9A7D14F081A3007F82BF /* PBXTextBookmark */; + 586A9A7E14F081A3007F82BF = 586A9A7E14F081A3007F82BF /* PBXTextBookmark */; + 586A9A7F14F081A3007F82BF = 586A9A7F14F081A3007F82BF /* PBXTextBookmark */; + 586A9A8014F081A3007F82BF = 586A9A8014F081A3007F82BF /* PBXTextBookmark */; + 586A9A8114F081A3007F82BF = 586A9A8114F081A3007F82BF /* PBXTextBookmark */; + 586A9A8214F081A3007F82BF = 586A9A8214F081A3007F82BF /* PBXTextBookmark */; + 586A9A8314F081A3007F82BF = 586A9A8314F081A3007F82BF /* PBXTextBookmark */; + 586A9A8414F081A3007F82BF = 586A9A8414F081A3007F82BF /* PBXTextBookmark */; + 586A9A8514F081A3007F82BF = 586A9A8514F081A3007F82BF /* PBXTextBookmark */; + 586A9A8614F081A3007F82BF = 586A9A8614F081A3007F82BF /* PBXTextBookmark */; + 586A9A8714F081A3007F82BF = 586A9A8714F081A3007F82BF /* PBXTextBookmark */; + 586A9A8A14F081A3007F82BF = 586A9A8A14F081A3007F82BF /* PBXTextBookmark */; + 586A9A8B14F081A3007F82BF = 586A9A8B14F081A3007F82BF /* PBXTextBookmark */; + 586A9A8E14F081A3007F82BF = 586A9A8E14F081A3007F82BF /* PBXTextBookmark */; + 586A9A8F14F081A3007F82BF = 586A9A8F14F081A3007F82BF /* PBXTextBookmark */; + 586A9A9214F081A3007F82BF = 586A9A9214F081A3007F82BF /* PBXTextBookmark */; + 586A9A9314F081A3007F82BF = 586A9A9314F081A3007F82BF /* PBXTextBookmark */; + 586A9A9614F081A3007F82BF = 586A9A9614F081A3007F82BF /* PBXTextBookmark */; + 586A9A9714F081A3007F82BF = 586A9A9714F081A3007F82BF /* PBXTextBookmark */; + 586A9A9814F081A3007F82BF = 586A9A9814F081A3007F82BF /* PBXTextBookmark */; + 586A9A9914F081A3007F82BF = 586A9A9914F081A3007F82BF /* PBXTextBookmark */; + 586A9A9A14F081A3007F82BF = 586A9A9A14F081A3007F82BF /* PBXTextBookmark */; + 586A9A9B14F081A3007F82BF = 586A9A9B14F081A3007F82BF /* PBXTextBookmark */; + 586A9A9C14F081A3007F82BF = 586A9A9C14F081A3007F82BF /* PBXTextBookmark */; + 586A9A9D14F081A3007F82BF = 586A9A9D14F081A3007F82BF /* PBXTextBookmark */; + 586A9AAC14F08A0C007F82BF = 586A9AAC14F08A0C007F82BF /* PBXTextBookmark */; + 586A9AAD14F08A0C007F82BF = 586A9AAD14F08A0C007F82BF /* PBXTextBookmark */; + 586A9AAE14F08A0C007F82BF = 586A9AAE14F08A0C007F82BF /* PBXTextBookmark */; + 586A9AAF14F08A0C007F82BF = 586A9AAF14F08A0C007F82BF /* PBXTextBookmark */; + 586A9AB014F08A0C007F82BF = 586A9AB014F08A0C007F82BF /* PBXTextBookmark */; + 586A9AB114F08A0C007F82BF = 586A9AB114F08A0C007F82BF /* PBXTextBookmark */; + 586A9AB214F08A0C007F82BF = 586A9AB214F08A0C007F82BF /* PBXTextBookmark */; + 586A9AB314F08A0C007F82BF = 586A9AB314F08A0C007F82BF /* PBXTextBookmark */; + 586A9AB414F08A0C007F82BF = 586A9AB414F08A0C007F82BF /* PBXTextBookmark */; + 586A9AB514F08A0C007F82BF = 586A9AB514F08A0C007F82BF /* PBXTextBookmark */; + 586A9AB614F08A0C007F82BF = 586A9AB614F08A0C007F82BF /* PBXTextBookmark */; + 586A9AB714F08A0C007F82BF = 586A9AB714F08A0C007F82BF /* PBXTextBookmark */; + 586A9B4714F08BEB007F82BF = 586A9B4714F08BEB007F82BF /* PBXTextBookmark */; + 586A9B4814F08BEB007F82BF = 586A9B4814F08BEB007F82BF /* PBXTextBookmark */; + 586A9B4914F08BEB007F82BF = 586A9B4914F08BEB007F82BF /* PBXTextBookmark */; + 586A9B4A14F08BEB007F82BF = 586A9B4A14F08BEB007F82BF /* PBXTextBookmark */; + 586A9B4B14F08BEB007F82BF = 586A9B4B14F08BEB007F82BF /* PBXTextBookmark */; + 586A9B4C14F08BEB007F82BF = 586A9B4C14F08BEB007F82BF /* PBXTextBookmark */; + 586A9B4D14F08BEB007F82BF = 586A9B4D14F08BEB007F82BF /* PBXTextBookmark */; + 586A9B4E14F08BEB007F82BF = 586A9B4E14F08BEB007F82BF /* PBXTextBookmark */; + 586A9B4F14F08BEB007F82BF = 586A9B4F14F08BEB007F82BF /* PBXTextBookmark */; + 586A9B5014F08BEB007F82BF = 586A9B5014F08BEB007F82BF /* PBXTextBookmark */; + 586A9B5114F08BEB007F82BF = 586A9B5114F08BEB007F82BF /* PBXTextBookmark */; + 586A9B5214F08BEB007F82BF = 586A9B5214F08BEB007F82BF /* PBXTextBookmark */; + 586A9B8114F08D11007F82BF = 586A9B8114F08D11007F82BF /* PBXTextBookmark */; + 586A9B8214F08D11007F82BF = 586A9B8214F08D11007F82BF /* PBXTextBookmark */; + 586A9B8314F08D11007F82BF = 586A9B8314F08D11007F82BF /* PBXTextBookmark */; + 586A9B8414F08D11007F82BF = 586A9B8414F08D11007F82BF /* PBXTextBookmark */; + 586A9B8514F08D11007F82BF = 586A9B8514F08D11007F82BF /* PBXTextBookmark */; + 586A9B8614F08D11007F82BF = 586A9B8614F08D11007F82BF /* PBXTextBookmark */; + 586A9B8714F08D11007F82BF = 586A9B8714F08D11007F82BF /* PBXTextBookmark */; + 586A9B8814F08D11007F82BF = 586A9B8814F08D11007F82BF /* PBXTextBookmark */; + 586A9B8914F08D11007F82BF = 586A9B8914F08D11007F82BF /* PBXTextBookmark */; + 586A9B8A14F08D11007F82BF = 586A9B8A14F08D11007F82BF /* PBXTextBookmark */; + 586A9B8B14F08D11007F82BF = 586A9B8B14F08D11007F82BF /* PBXTextBookmark */; + 586A9B8C14F08D11007F82BF = 586A9B8C14F08D11007F82BF /* PBXTextBookmark */; + 586A9BE814F090AB007F82BF = 586A9BE814F090AB007F82BF /* PBXTextBookmark */; + 586A9BE914F090AB007F82BF = 586A9BE914F090AB007F82BF /* PBXTextBookmark */; + 586A9BEA14F090AB007F82BF = 586A9BEA14F090AB007F82BF /* PBXTextBookmark */; + 586A9BEB14F090AB007F82BF = 586A9BEB14F090AB007F82BF /* PBXTextBookmark */; + 586A9BEC14F090AB007F82BF = 586A9BEC14F090AB007F82BF /* PBXTextBookmark */; + 586A9BED14F090AB007F82BF = 586A9BED14F090AB007F82BF /* PBXTextBookmark */; + 586A9BEE14F090AB007F82BF = 586A9BEE14F090AB007F82BF /* PBXTextBookmark */; + 586A9BEF14F090AB007F82BF = 586A9BEF14F090AB007F82BF /* PBXTextBookmark */; + 586A9BF014F090AB007F82BF = 586A9BF014F090AB007F82BF /* PBXTextBookmark */; + 586A9BF114F090AB007F82BF = 586A9BF114F090AB007F82BF /* PBXTextBookmark */; + 586A9BF214F090AB007F82BF = 586A9BF214F090AB007F82BF /* PBXTextBookmark */; + 586A9BF314F090AB007F82BF = 586A9BF314F090AB007F82BF /* PBXTextBookmark */; + 586A9BF714F090E4007F82BF = 586A9BF714F090E4007F82BF /* PBXTextBookmark */; + 586A9BF814F090E4007F82BF = 586A9BF814F090E4007F82BF /* PBXTextBookmark */; + 586A9BF914F090E4007F82BF = 586A9BF914F090E4007F82BF /* PBXTextBookmark */; + 586A9BFA14F090E4007F82BF = 586A9BFA14F090E4007F82BF /* PBXTextBookmark */; + 586A9BFB14F090E4007F82BF = 586A9BFB14F090E4007F82BF /* PBXTextBookmark */; + 586A9BFC14F090E4007F82BF = 586A9BFC14F090E4007F82BF /* PBXTextBookmark */; + 586A9BFD14F090E4007F82BF = 586A9BFD14F090E4007F82BF /* PBXTextBookmark */; + 586A9BFE14F090E4007F82BF = 586A9BFE14F090E4007F82BF /* PBXTextBookmark */; + 586A9BFF14F090E4007F82BF = 586A9BFF14F090E4007F82BF /* PBXTextBookmark */; + 586A9C0014F090E4007F82BF = 586A9C0014F090E4007F82BF /* PBXTextBookmark */; + 586A9C0114F090E4007F82BF = 586A9C0114F090E4007F82BF /* PBXTextBookmark */; + 586A9C0214F090E4007F82BF = 586A9C0214F090E4007F82BF /* PBXTextBookmark */; + 586A9C0914F0914D007F82BF = 586A9C0914F0914D007F82BF /* PBXTextBookmark */; + 586A9C0A14F0914D007F82BF = 586A9C0A14F0914D007F82BF /* PBXTextBookmark */; + 586A9C0B14F0914D007F82BF = 586A9C0B14F0914D007F82BF /* PBXTextBookmark */; + 586A9C0C14F0914D007F82BF = 586A9C0C14F0914D007F82BF /* PBXTextBookmark */; + 586A9C0D14F0914D007F82BF = 586A9C0D14F0914D007F82BF /* PBXTextBookmark */; + 586A9C0E14F0914D007F82BF = 586A9C0E14F0914D007F82BF /* PBXTextBookmark */; + 586A9C0F14F0914D007F82BF = 586A9C0F14F0914D007F82BF /* PBXTextBookmark */; + 586A9C1014F0914D007F82BF = 586A9C1014F0914D007F82BF /* PBXTextBookmark */; + 586A9C1114F0914D007F82BF = 586A9C1114F0914D007F82BF /* PBXTextBookmark */; + 586A9C1214F0914D007F82BF = 586A9C1214F0914D007F82BF /* PBXTextBookmark */; + 586A9C1314F0914D007F82BF = 586A9C1314F0914D007F82BF /* PBXTextBookmark */; + 586A9C1414F0914D007F82BF = 586A9C1414F0914D007F82BF /* PBXTextBookmark */; + 586A9C3C14F169D9007F82BF = 586A9C3C14F169D9007F82BF /* PBXTextBookmark */; + 586A9C3D14F169D9007F82BF = 586A9C3D14F169D9007F82BF /* PBXTextBookmark */; + 586A9C3E14F169D9007F82BF = 586A9C3E14F169D9007F82BF /* PBXTextBookmark */; + 586A9C3F14F169D9007F82BF = 586A9C3F14F169D9007F82BF /* PBXTextBookmark */; + 586A9C4014F169D9007F82BF = 586A9C4014F169D9007F82BF /* PBXTextBookmark */; + 586A9C4114F169D9007F82BF = 586A9C4114F169D9007F82BF /* PBXTextBookmark */; + 586A9C4214F169D9007F82BF = 586A9C4214F169D9007F82BF /* PBXTextBookmark */; + 586A9C4314F169D9007F82BF = 586A9C4314F169D9007F82BF /* PBXTextBookmark */; + 586A9C4414F169D9007F82BF = 586A9C4414F169D9007F82BF /* PBXTextBookmark */; + 586A9C4514F169D9007F82BF = 586A9C4514F169D9007F82BF /* PBXTextBookmark */; + 586A9C4614F169D9007F82BF = 586A9C4614F169D9007F82BF /* PBXTextBookmark */; + 586A9C4714F169D9007F82BF = 586A9C4714F169D9007F82BF /* PBXTextBookmark */; + 586A9C5D14F172AE007F82BF = 586A9C5D14F172AE007F82BF /* PBXTextBookmark */; + 586A9C5E14F172AE007F82BF = 586A9C5E14F172AE007F82BF /* PBXTextBookmark */; + 586A9C5F14F172AE007F82BF = 586A9C5F14F172AE007F82BF /* PBXTextBookmark */; + 586A9C7714F17FC1007F82BF = 586A9C7714F17FC1007F82BF /* PBXTextBookmark */; + 586A9C7814F17FC1007F82BF = 586A9C7814F17FC1007F82BF /* PBXTextBookmark */; + 586A9C7914F17FC1007F82BF = 586A9C7914F17FC1007F82BF /* PBXTextBookmark */; + 586A9C7A14F17FC1007F82BF = 586A9C7A14F17FC1007F82BF /* PBXTextBookmark */; + 586A9C7B14F17FC1007F82BF = 586A9C7B14F17FC1007F82BF /* PBXTextBookmark */; + 586A9C7C14F17FC1007F82BF = 586A9C7C14F17FC1007F82BF /* PBXTextBookmark */; + 586A9C7D14F17FC1007F82BF = 586A9C7D14F17FC1007F82BF /* PBXTextBookmark */; + 586A9C7E14F17FC1007F82BF = 586A9C7E14F17FC1007F82BF /* PBXTextBookmark */; + 586A9C7F14F17FC1007F82BF = 586A9C7F14F17FC1007F82BF /* PBXTextBookmark */; + 586A9C8014F17FC1007F82BF = 586A9C8014F17FC1007F82BF /* PBXTextBookmark */; + 586A9C8114F17FC1007F82BF = 586A9C8114F17FC1007F82BF /* PBXTextBookmark */; + 586A9C8214F17FC1007F82BF = 586A9C8214F17FC1007F82BF /* PBXTextBookmark */; + 586A9C9014F18474007F82BF = 586A9C9014F18474007F82BF /* PBXTextBookmark */; + 586A9C9114F18474007F82BF = 586A9C9114F18474007F82BF /* PBXTextBookmark */; + 586A9C9214F18474007F82BF = 586A9C9214F18474007F82BF /* PBXTextBookmark */; + 586A9C9314F18474007F82BF = 586A9C9314F18474007F82BF /* PBXTextBookmark */; + 586A9C9414F18474007F82BF = 586A9C9414F18474007F82BF /* PBXTextBookmark */; + 586A9C9514F18474007F82BF = 586A9C9514F18474007F82BF /* PBXTextBookmark */; + 586A9C9614F18474007F82BF = 586A9C9614F18474007F82BF /* PBXTextBookmark */; + 586A9C9714F18474007F82BF = 586A9C9714F18474007F82BF /* PBXTextBookmark */; + 586A9C9814F18474007F82BF = 586A9C9814F18474007F82BF /* PBXTextBookmark */; + 586A9C9914F18474007F82BF = 586A9C9914F18474007F82BF /* PBXTextBookmark */; + 586A9C9A14F18474007F82BF = 586A9C9A14F18474007F82BF /* PBXTextBookmark */; + 586A9C9B14F18474007F82BF = 586A9C9B14F18474007F82BF /* PBXTextBookmark */; + 586A9CAE14F19529007F82BF = 586A9CAE14F19529007F82BF /* PBXTextBookmark */; + 586A9CAF14F19529007F82BF = 586A9CAF14F19529007F82BF /* PBXTextBookmark */; + 586A9CB014F19529007F82BF = 586A9CB014F19529007F82BF /* PBXTextBookmark */; + 586A9CB114F19529007F82BF = 586A9CB114F19529007F82BF /* PBXTextBookmark */; + 586A9CB214F19529007F82BF = 586A9CB214F19529007F82BF /* PBXTextBookmark */; + 586A9CB314F19529007F82BF = 586A9CB314F19529007F82BF /* PBXTextBookmark */; + 586A9CB414F19529007F82BF = 586A9CB414F19529007F82BF /* PBXTextBookmark */; + 586A9CB514F19529007F82BF = 586A9CB514F19529007F82BF /* PBXTextBookmark */; + 586A9CB614F19529007F82BF = 586A9CB614F19529007F82BF /* PBXTextBookmark */; + 586A9CB714F19529007F82BF = 586A9CB714F19529007F82BF /* PBXTextBookmark */; + 586A9CB814F19529007F82BF = 586A9CB814F19529007F82BF /* PBXTextBookmark */; + 586A9CB914F19529007F82BF = 586A9CB914F19529007F82BF /* PBXTextBookmark */; + 586A9CC214F19AC4007F82BF = 586A9CC214F19AC4007F82BF /* PBXTextBookmark */; + 586A9CC314F19AC4007F82BF = 586A9CC314F19AC4007F82BF /* PBXTextBookmark */; + 586A9CC414F19AC4007F82BF = 586A9CC414F19AC4007F82BF /* PBXTextBookmark */; + 586A9CC514F19AC4007F82BF = 586A9CC514F19AC4007F82BF /* PBXTextBookmark */; + 586A9CC614F19AC4007F82BF = 586A9CC614F19AC4007F82BF /* PBXTextBookmark */; + 586A9CC714F19AC4007F82BF = 586A9CC714F19AC4007F82BF /* PBXTextBookmark */; + 586A9CC814F19AC4007F82BF = 586A9CC814F19AC4007F82BF /* PBXTextBookmark */; + 586A9CC914F19AC4007F82BF = 586A9CC914F19AC4007F82BF /* PBXTextBookmark */; + 586A9CCA14F19AC4007F82BF = 586A9CCA14F19AC4007F82BF /* PBXTextBookmark */; + 586A9CCB14F19AC4007F82BF = 586A9CCB14F19AC4007F82BF /* PBXTextBookmark */; + 586A9CCC14F19AC4007F82BF = 586A9CCC14F19AC4007F82BF /* PBXTextBookmark */; + 586A9CCD14F19AC4007F82BF = 586A9CCD14F19AC4007F82BF /* PBXTextBookmark */; + 586A9CF014F19E61007F82BF = 586A9CF014F19E61007F82BF /* PBXTextBookmark */; + 586A9CF114F19E61007F82BF = 586A9CF114F19E61007F82BF /* PBXTextBookmark */; + 586A9CF314F19E61007F82BF = 586A9CF314F19E61007F82BF /* PBXTextBookmark */; + 586A9CF414F19E61007F82BF = 586A9CF414F19E61007F82BF /* PBXTextBookmark */; + 586A9CF514F19E61007F82BF = 586A9CF514F19E61007F82BF /* PBXTextBookmark */; + 586A9CF614F19E61007F82BF = 586A9CF614F19E61007F82BF /* PBXTextBookmark */; + 586A9CF714F19E61007F82BF = 586A9CF714F19E61007F82BF /* PBXTextBookmark */; + 586A9CF814F19E61007F82BF = 586A9CF814F19E61007F82BF /* PBXTextBookmark */; + 586A9CF914F19E61007F82BF = 586A9CF914F19E61007F82BF /* PBXTextBookmark */; + 586A9CFA14F19E61007F82BF = 586A9CFA14F19E61007F82BF /* PBXTextBookmark */; + 586A9CFB14F19E61007F82BF = 586A9CFB14F19E61007F82BF /* PBXTextBookmark */; + 586A9CFC14F19E61007F82BF = 586A9CFC14F19E61007F82BF /* PBXTextBookmark */; + 586A9CFD14F19E61007F82BF = 586A9CFD14F19E61007F82BF /* PBXTextBookmark */; + 586A9CFE14F19E61007F82BF = 586A9CFE14F19E61007F82BF /* PBXTextBookmark */; + 586A9D1D14F1BAA7007F82BF = 586A9D1D14F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D1E14F1BAA7007F82BF = 586A9D1E14F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D1F14F1BAA7007F82BF = 586A9D1F14F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2014F1BAA7007F82BF = 586A9D2014F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2114F1BAA7007F82BF = 586A9D2114F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2214F1BAA7007F82BF = 586A9D2214F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2314F1BAA7007F82BF = 586A9D2314F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2414F1BAA7007F82BF = 586A9D2414F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2514F1BAA7007F82BF = 586A9D2514F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2614F1BAA7007F82BF = 586A9D2614F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2714F1BAA7007F82BF = 586A9D2714F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D2814F1BAA7007F82BF = 586A9D2814F1BAA7007F82BF /* PBXTextBookmark */; + 586A9D3014F1BB04007F82BF = 586A9D3014F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3114F1BB04007F82BF = 586A9D3114F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3214F1BB04007F82BF = 586A9D3214F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3314F1BB04007F82BF = 586A9D3314F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3414F1BB04007F82BF = 586A9D3414F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3514F1BB04007F82BF = 586A9D3514F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3614F1BB04007F82BF = 586A9D3614F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3714F1BB04007F82BF = 586A9D3714F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3814F1BB04007F82BF = 586A9D3814F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3914F1BB04007F82BF = 586A9D3914F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3A14F1BB04007F82BF = 586A9D3A14F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3B14F1BB04007F82BF = 586A9D3B14F1BB04007F82BF /* PBXTextBookmark */; + 586A9D3D14F1BC39007F82BF = 586A9D3D14F1BC39007F82BF /* PBXTextBookmark */; + 586A9D3E14F1BC39007F82BF = 586A9D3E14F1BC39007F82BF /* PBXTextBookmark */; + 586A9D3F14F1BC39007F82BF = 586A9D3F14F1BC39007F82BF /* PBXTextBookmark */; + 586A9D4014F1BC39007F82BF = 586A9D4014F1BC39007F82BF /* PBXTextBookmark */; + 586A9D4D14F1BC84007F82BF = 586A9D4D14F1BC84007F82BF /* PBXTextBookmark */; + 586A9D4E14F1BC84007F82BF = 586A9D4E14F1BC84007F82BF /* PBXTextBookmark */; + 586A9D4F14F1BC84007F82BF = 586A9D4F14F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5014F1BC84007F82BF = 586A9D5014F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5114F1BC84007F82BF = 586A9D5114F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5214F1BC84007F82BF = 586A9D5214F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5314F1BC84007F82BF = 586A9D5314F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5414F1BC84007F82BF = 586A9D5414F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5514F1BC84007F82BF = 586A9D5514F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5614F1BC84007F82BF = 586A9D5614F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5714F1BC84007F82BF = 586A9D5714F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5814F1BC84007F82BF = 586A9D5814F1BC84007F82BF /* PBXTextBookmark */; + 586A9D5914F1BE95007F82BF = 586A9D5914F1BE95007F82BF /* PBXTextBookmark */; + 586A9D5A14F1BE95007F82BF = 586A9D5A14F1BE95007F82BF /* PBXTextBookmark */; + 586A9D5B14F1BE95007F82BF = 586A9D5B14F1BE95007F82BF /* PBXTextBookmark */; + 586A9D5C14F1BE95007F82BF = 586A9D5C14F1BE95007F82BF /* PBXTextBookmark */; + 586A9D5D14F1BE95007F82BF = 586A9D5D14F1BE95007F82BF /* PBXTextBookmark */; + 586A9D5E14F1BE95007F82BF = 586A9D5E14F1BE95007F82BF /* PBXTextBookmark */; + 586A9D5F14F1BE95007F82BF = 586A9D5F14F1BE95007F82BF /* PBXTextBookmark */; + 586A9D6014F1BE95007F82BF = 586A9D6014F1BE95007F82BF /* PBXTextBookmark */; + 586A9D6114F1BE95007F82BF = 586A9D6114F1BE95007F82BF /* PBXTextBookmark */; + 586A9D6214F1BE95007F82BF = 586A9D6214F1BE95007F82BF /* PBXTextBookmark */; + 586A9D6314F1BE95007F82BF = 586A9D6314F1BE95007F82BF /* PBXTextBookmark */; + 586AA0E314F1CEBE007F82BF /* PBXTextBookmark */ = 586AA0E314F1CEBE007F82BF /* PBXTextBookmark */; + 58C0070614E0B5F000AC489A = 58C0070614E0B5F000AC489A /* PBXTextBookmark */; + 58C0071B14E0B5F000AC489A = 58C0071B14E0B5F000AC489A /* PBXTextBookmark */; + 58C0071C14E0B5F000AC489A = 58C0071C14E0B5F000AC489A /* PBXTextBookmark */; + 58C0071D14E0B5F000AC489A = 58C0071D14E0B5F000AC489A /* PBXTextBookmark */; + 58C0091014E2B28600AC489A = 58C0091014E2B28600AC489A /* PBXTextBookmark */; + 58C0091114E2B28600AC489A = 58C0091114E2B28600AC489A /* PBXTextBookmark */; + 58C009F214E341A300AC489A = 58C009F214E341A300AC489A /* PBXTextBookmark */; + 58C009F414E341A300AC489A = 58C009F414E341A300AC489A /* PBXTextBookmark */; + 58C009F614E341A300AC489A = 58C009F614E341A300AC489A /* PBXTextBookmark */; + 58C009F914E341A300AC489A = 58C009F914E341A300AC489A /* PBXTextBookmark */; + 58C00A4914E443EF00AC489A = 58C00A4914E443EF00AC489A /* PBXTextBookmark */; + 58C00AE114E495D000AC489A = 58C00AE114E495D000AC489A /* PBXTextBookmark */; + 58C00AE214E495D000AC489A = 58C00AE214E495D000AC489A /* PBXTextBookmark */; + 58C00AE614E495D000AC489A = 58C00AE614E495D000AC489A /* PBXTextBookmark */; + 58C00AE714E495D000AC489A = 58C00AE714E495D000AC489A /* PBXTextBookmark */; + 58C00AE814E495D000AC489A = 58C00AE814E495D000AC489A /* PBXTextBookmark */; + 58C00B1914E59D4500AC489A = 58C00B1914E59D4500AC489A /* PBXTextBookmark */; + 58C00BDA14E7465700AC489A = 58C00BDA14E7465700AC489A /* PBXTextBookmark */; + 58C00CCC14E86EE000AC489A = 58C00CCC14E86EE000AC489A /* PBXBookmark */; + 58C00CE314E8738600AC489A = 58C00CE314E8738600AC489A /* PBXTextBookmark */; + 58C00CE414E8738600AC489A = 58C00CE414E8738600AC489A /* PBXTextBookmark */; + 58C00CE514E8738600AC489A = 58C00CE514E8738600AC489A /* PBXTextBookmark */; + 58C00CE614E8738600AC489A = 58C00CE614E8738600AC489A /* PBXTextBookmark */; + 58C00CE814E8738600AC489A = 58C00CE814E8738600AC489A /* PBXTextBookmark */; + 58C00CE914E8738600AC489A = 58C00CE914E8738600AC489A /* PBXTextBookmark */; + 58C00CEA14E8738600AC489A = 58C00CEA14E8738600AC489A /* PBXTextBookmark */; + 58C00CEB14E8738600AC489A = 58C00CEB14E8738600AC489A /* PBXTextBookmark */; + 58C00CEC14E8738600AC489A = 58C00CEC14E8738600AC489A /* PBXTextBookmark */; + 58C00D1914E87E2900AC489A = 58C00D1914E87E2900AC489A /* PBXTextBookmark */; + 58C00DBD14E9442500AC489A = 58C00DBD14E9442500AC489A /* PBXTextBookmark */; + 58C00EA214ED2AC600AC489A = 58C00EA214ED2AC600AC489A /* PBXBookmark */; + 58C00EA414ED2B7E00AC489A = 58C00EA414ED2B7E00AC489A /* PBXTextBookmark */; + 58C00EA614ED2B7E00AC489A = 58C00EA614ED2B7E00AC489A /* PBXTextBookmark */; + 58C00EB714ED2B7E00AC489A = 58C00EB714ED2B7E00AC489A /* PBXBookmark */; + 58C00F0814ED327D00AC489A = 58C00F0814ED327D00AC489A /* PBXTextBookmark */; + 58C00F0914ED327D00AC489A = 58C00F0914ED327D00AC489A /* PBXTextBookmark */; + 58C00F0A14ED327D00AC489A = 58C00F0A14ED327D00AC489A /* PBXTextBookmark */; + 58C0102414ED514600AC489A = 58C0102414ED514600AC489A /* PBXTextBookmark */; + 58C0104014ED56EE00AC489A = 58C0104014ED56EE00AC489A /* PBXTextBookmark */; + 58C0109714ED5F5300AC489A = 58C0109714ED5F5300AC489A /* PBXTextBookmark */; + 58C010C814ED77AF00AC489A = 58C010C814ED77AF00AC489A /* PBXBookmark */; + 58C010D014ED8A2D00AC489A = 58C010D014ED8A2D00AC489A /* PBXTextBookmark */; + 58C010D414ED8A2D00AC489A = 58C010D414ED8A2D00AC489A /* PBXTextBookmark */; + 58C010E614ED8AA800AC489A = 58C010E614ED8AA800AC489A /* PBXTextBookmark */; + 58C010F614ED8B8700AC489A = 58C010F614ED8B8700AC489A /* PBXTextBookmark */; + 58C010F714ED8B8700AC489A = 58C010F714ED8B8700AC489A /* PBXTextBookmark */; + 58C010F814ED8B8700AC489A = 58C010F814ED8B8700AC489A /* PBXTextBookmark */; + 58C010F914ED8B8700AC489A = 58C010F914ED8B8700AC489A /* PBXTextBookmark */; + 58C010FA14ED8B8700AC489A = 58C010FA14ED8B8700AC489A /* PBXTextBookmark */; + 58C010FB14ED8B8700AC489A = 58C010FB14ED8B8700AC489A /* PBXTextBookmark */; + 58C010FC14ED8B8700AC489A = 58C010FC14ED8B8700AC489A /* PBXTextBookmark */; + 58C010FD14ED8B8700AC489A = 58C010FD14ED8B8700AC489A /* PBXTextBookmark */; + 58C010FE14ED8B8700AC489A = 58C010FE14ED8B8700AC489A /* PBXTextBookmark */; + 58C010FF14ED8B8700AC489A = 58C010FF14ED8B8700AC489A /* PBXTextBookmark */; + 58C0110014ED8B8700AC489A = 58C0110014ED8B8700AC489A /* PBXTextBookmark */; + 58C7C2E914DD96BA00436315 = 58C7C2E914DD96BA00436315 /* PBXTextBookmark */; + 58F2538314DF16C6003C2AB8 = 58F2538314DF16C6003C2AB8 /* PBXTextBookmark */; + 58F254A714E087D1003C2AB8 = 58F254A714E087D1003C2AB8 /* PBXTextBookmark */; + }; + sourceControlManager = 58428DC314BA516B000F8438 /* Source Control */; + userBuildSettings = { + }; + }; + 089C1667FE841158C02AAC07 /* English */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 783}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 45}"; + }; + }; + 32DBCF5E0370ADEE00C91783 /* SPMySQLFramework_Prefix.pch */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {643, 477}}"; + sepNavSelRange = "{183, 20}"; + sepNavVisRange = "{0, 231}"; + sepNavWindowFrame = "{{595, 0}, {806, 878}}"; + }; + }; + 580A331C14D75CF7000D6933 /* SPMySQLGeometryData.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 789}}"; + sepNavSelRange = "{1365, 18}"; + sepNavVisRange = "{0, 1754}"; + sepNavWindowFrame = "{{19, 0}, {806, 878}}"; + }; + }; + 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 11037}}"; + sepNavSelRange = "{1213, 0}"; + sepNavVisRange = "{788, 1045}"; + }; + }; + 58428DC314BA516B000F8438 /* Source Control */ = { + isa = PBXSourceControlManager; + fallbackIsa = XCSourceControlManager; + isSCMEnabled = 0; + scmConfiguration = { + repositoryNamesForRoots = { + "" = ""; + }; + }; + }; + 58428DC414BA516B000F8438 /* Code sense */ = { + isa = PBXCodeSenseManager; + indexTemplatePath = ""; + }; + 58428DF614BA5A13000F8438 /* build-mysql-client.sh */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 1846}}"; + sepNavSelRange = "{24, 0}"; + sepNavVisRange = "{0, 2272}"; + }; + }; + 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 2223}}"; + sepNavSelRange = "{1930, 8}"; + sepNavVisRange = "{1057, 1752}"; + sepNavWindowFrame = "{{4, 0}, {806, 878}}"; + }; + }; + 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 10764}}"; + sepNavSelRange = "{6983, 7}"; + sepNavVisRange = "{0, 2361}"; + sepNavWindowFrame = "{{634, 0}, {806, 878}}"; + }; + }; + 58428E0814BA5FEE000F8438 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 089C1667FE841158C02AAC07 /* English */; + name = "InfoPlist.strings: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 45; + vrLoc = 0; + }; + 5842929414C34B36000F8438 /* my_alloc.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 789}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 1804}"; + sepNavWindowFrame = "{{19, 0}, {806, 878}}"; + }; + }; + 5842929614C34B36000F8438 /* mysql.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 11674}}"; + sepNavSelRange = "{3724, 1}"; + sepNavVisRange = "{2446, 2296}"; + sepNavWindowFrame = "{{120, 0}, {806, 878}}"; + }; + }; + 5842929714C34B36000F8438 /* mysql_com.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {666, 6864}}"; + sepNavSelRange = "{12376, 16}"; + sepNavVisRange = "{11191, 1990}"; + sepNavWindowFrame = "{{19, 0}, {725, 878}}"; + }; + }; + 5842929B14C34B36000F8438 /* typelib.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 789}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 1501}"; + sepNavWindowFrame = "{{19, 0}, {806, 878}}"; + }; + }; + 584294E314CB8002000F8438 /* SPMySQLConstants.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 988}}"; + sepNavSelRange = "{2213, 32}"; + sepNavVisRange = "{578, 1771}"; + sepNavWindowFrame = "{{334, 0}, {806, 878}}"; + }; + }; + 584294EE14CB8002000F8438 /* Ping & KeepAlive.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 715}}"; + sepNavSelRange = "{1289, 0}"; + sepNavVisRange = "{0, 1542}"; + sepNavWindowFrame = "{{19, 0}, {725, 878}}"; + }; + }; + 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {666, 2912}}"; + sepNavSelRange = "{2950, 17}"; + sepNavVisRange = "{1292, 1795}"; + sepNavWindowFrame = "{{682, 0}, {725, 878}}"; + }; + }; + 584294F414CB8002000F8438 /* Querying & Preparation.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 1469}}"; + sepNavSelRange = "{1629, 0}"; + sepNavVisRange = "{1298, 2305}"; + sepNavWindowFrame = "{{18, 0}, {806, 878}}"; + }; + }; + 584294F514CB8002000F8438 /* Querying & Preparation.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {643, 8060}}"; + sepNavSelRange = "{7810, 0}"; + sepNavVisRange = "{6556, 1535}"; + sepNavWindowFrame = "{{696, 0}, {725, 878}}"; + }; + }; + 584294F814CB8002000F8438 /* Encoding.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {666, 789}}"; + sepNavSelRange = "{1941, 0}"; + sepNavVisRange = "{0, 1948}"; + sepNavWindowFrame = "{{19, 0}, {725, 878}}"; + }; + }; + 584294F914CB8002000F8438 /* Encoding.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 4992}}"; + sepNavSelRange = "{1281, 0}"; + sepNavVisRange = "{0, 1584}"; + sepNavWindowFrame = "{{673, 0}, {725, 878}}"; + }; + }; + 584294FC14CB8002000F8438 /* Server Info.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {666, 789}}"; + sepNavSelRange = "{1882, 0}"; + sepNavVisRange = "{0, 1889}"; + sepNavWindowFrame = "{{19, 0}, {725, 878}}"; + }; + }; + 584294FD14CB8002000F8438 /* Server Info.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 2366}}"; + sepNavSelRange = "{5255, 248}"; + sepNavVisRange = "{3560, 2087}"; + sepNavWindowFrame = "{{594, 0}, {806, 878}}"; + }; + }; + 5842959F14CB9440000F8438 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DF614BA5A13000F8438 /* build-mysql-client.sh */; + name = "build-mysql-client.sh: 5"; + rLen = 0; + rLoc = 24; + rType = 0; + vrLen = 1454; + vrLoc = 0; + }; + 586A985014ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 69"; + rLen = 0; + rLoc = 2114; + rType = 0; + vrLen = 1577; + vrLoc = 2047; + }; + 586A985314ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 34"; + rLen = 28; + rLoc = 1382; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A985414ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 47"; + rLen = 57; + rLoc = 1995; + rType = 0; + vrLen = 2223; + vrLoc = 1532; + }; + 586A985514ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; + name = "Querying & Preparation.h: 37"; + rLen = 0; + rLoc = 1490; + rType = 0; + vrLen = 2390; + vrLoc = 0; + }; + 586A985614ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A985714ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A985814ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A985914ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 43"; + rLen = 0; + rLoc = 2248; + rType = 0; + vrLen = 2275; + vrLoc = 0; + }; + 586A985A14ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; + name = "Field Definitions.m: 42"; + rLen = 0; + rLoc = 1937; + rType = 0; + vrLen = 2440; + vrLoc = 994; + }; + 586A985B14ED8BA5007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A987B14ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 69"; + rLen = 0; + rLoc = 2114; + rType = 0; + vrLen = 1577; + vrLoc = 2047; + }; + 586A987C14ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 116"; + rLen = 0; + rLoc = 3985; + rType = 0; + vrLen = 2273; + vrLoc = 2562; + }; + 586A987D14ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; + name = "Querying & Preparation.h: 37"; + rLen = 0; + rLoc = 1490; + rType = 0; + vrLen = 2390; + vrLoc = 0; + }; + 586A987E14ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A987F14ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A988014ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A988114ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 43"; + rLen = 0; + rLoc = 2248; + rType = 0; + vrLen = 2275; + vrLoc = 0; + }; + 586A988214ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; + name = "Field Definitions.m: 42"; + rLen = 0; + rLoc = 1937; + rType = 0; + vrLen = 2440; + vrLoc = 994; + }; + 586A988314ED8D6C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A989814ED8F37007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 57"; + rLen = 0; + rLoc = 2115; + rType = 0; + vrLen = 1576; + vrLoc = 1771; + }; + 586A989914ED8F37007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; + name = "Field Definitions.m: 42"; + rLen = 0; + rLoc = 1937; + rType = 0; + vrLen = 2440; + vrLoc = 994; + }; + 586A989A14ED8F37007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 45"; + rLen = 0; + rLoc = 1770; + rType = 0; + vrLen = 2327; + vrLoc = 1420; + }; + 586A989B14ED8F37007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A989C14ED8F37007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A989D14ED8F37007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A989E14ED8F37007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 43"; + rLen = 0; + rLoc = 2248; + rType = 0; + vrLen = 2275; + vrLoc = 0; + }; + 586A989F14ED8F37007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A98CA14EDE440007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 57"; + rLen = 0; + rLoc = 2115; + rType = 0; + vrLen = 1685; + vrLoc = 1771; + }; + 586A98CB14EDE440007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 122"; + rLen = 51; + rLoc = 4696; + rType = 0; + vrLen = 2004; + vrLoc = 5018; + }; + 586A98CC14EDE440007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A98CD14EDE440007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A98CE14EDE440007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A98CF14EDE440007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 43"; + rLen = 0; + rLoc = 2248; + rType = 0; + vrLen = 2275; + vrLoc = 0; + }; + 586A98D014EDE440007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A98E014EE75EB007F82BF /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + }; + 586A990914EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 472"; + rLen = 0; + rLoc = 15496; + rType = 0; + vrLen = 1047; + vrLoc = 2424; + }; + 586A990A14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 34"; + rLen = 0; + rLoc = 1388; + rType = 0; + vrLen = 1576; + vrLoc = 790; + }; + 586A990B14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; + name = "Field Definitions.m: 30"; + rLen = 0; + rLoc = 1290; + rType = 0; + vrLen = 1497; + vrLoc = 1937; + }; + 586A990C14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */; + name = "SPMySQLGeometryData.m: 29"; + rLen = 0; + rLoc = 1213; + rType = 0; + vrLen = 1045; + vrLoc = 788; + }; + 586A990D14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 30"; + rLen = 0; + rLoc = 1281; + rType = 0; + vrLen = 1698; + vrLoc = 0; + }; + 586A990E14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 588412A714CC7A4D0078027F /* Locking.m */; + name = "Locking.m: 30"; + rLen = 0; + rLoc = 1280; + rType = 0; + vrLen = 1673; + vrLoc = 119; + }; + 586A990F14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 72"; + rLen = 0; + rLoc = 2630; + rType = 0; + vrLen = 1339; + vrLoc = 578; + }; + 586A991014EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 166"; + rLen = 0; + rLoc = 5483; + rType = 0; + vrLen = 1512; + vrLoc = 0; + }; + 586A991114EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F914CB8002000F8438 /* Encoding.m */; + name = "Encoding.m: 30"; + rLen = 0; + rLoc = 1281; + rType = 0; + vrLen = 1584; + vrLoc = 0; + }; + 586A991214EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 57"; + rLen = 0; + rLoc = 2115; + rType = 0; + vrLen = 1732; + vrLoc = 134; + }; + 586A991314EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00BD014E7459600AC489A /* Databases & Tables.m */; + name = "Databases & Tables.m: 142"; + rLen = 0; + rLoc = 5045; + rType = 0; + vrLen = 1681; + vrLoc = 449; + }; + 586A991414EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */; + name = "Delegate & Proxy.m: 72"; + rLen = 0; + rLoc = 2412; + rType = 0; + vrLen = 1601; + vrLoc = 0; + }; + 586A991514EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 126"; + rLen = 31; + rLoc = 3851; + rType = 0; + vrLen = 1399; + vrLoc = 3665; + }; + 586A991614EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A991714EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 43"; + rLen = 0; + rLoc = 2248; + rType = 0; + vrLen = 2275; + vrLoc = 0; + }; + 586A991814EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 86"; + rLen = 0; + rLoc = 2883; + rType = 0; + vrLen = 1750; + vrLoc = 1977; + }; + 586A991914EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A991A14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A991B14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A991C14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 122"; + rLen = 51; + rLoc = 4696; + rType = 0; + vrLen = 2004; + vrLoc = 5018; + }; + 586A991F14EE81C3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A992814EEA221007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + rLen = 7; + rLoc = 6983; + rType = 0; + }; + 586A992914EEA221007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 126; + rLoc = 6980; + rType = 0; + vrLen = 566; + vrLoc = 6645; + }; + 586A992A14EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 126"; + rLen = 31; + rLoc = 3851; + rType = 0; + vrLen = 1376; + vrLoc = 3902; + }; + 586A992B14EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 1242; + vrLoc = 6246; + }; + 586A992C14EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A992D14EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 36"; + rLen = 0; + rLoc = 2134; + rType = 0; + vrLen = 2107; + vrLoc = 0; + }; + 586A992E14EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 161"; + rLen = 0; + rLoc = 3744; + rType = 0; + vrLen = 1563; + vrLoc = 4601; + }; + 586A992F14EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A993014EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A993114EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A993214EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 122"; + rLen = 51; + rLoc = 4696; + rType = 0; + vrLen = 2004; + vrLoc = 5018; + }; + 586A993314EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A993614EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + rLen = 0; + rLoc = 9223372036854775808; + rType = 0; + }; + 586A993714EEA225007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 95"; + rLen = 0; + rLoc = 3834; + rType = 0; + vrLen = 1797; + vrLoc = 738; + }; + 586A994414EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 1242; + vrLoc = 6246; + }; + 586A994714EECED8007F82BF /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + }; + 586A994814EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 398"; + rLen = 0; + rLoc = 11431; + rType = 0; + vrLen = 1745; + vrLoc = 11598; + }; + 586A994B14EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; + rLen = 0; + rLoc = 9223372036854775808; + rType = 0; + }; + 586A994C14EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; + name = "SPMySQLResult.h: 86"; + rLen = 114; + rLoc = 3095; + rType = 0; + vrLen = 2138; + vrLoc = 1496; + }; + 586A994D14EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 170"; + rLen = 0; + rLoc = 3744; + rType = 0; + vrLen = 1550; + vrLoc = 4693; + }; + 586A994E14EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 401"; + rLen = 0; + rLoc = 12123; + rType = 0; + vrLen = 0; + vrLoc = 13514; + }; + 586A994F14EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 95"; + rLen = 0; + rLoc = 3834; + rType = 0; + vrLen = 1797; + vrLoc = 738; + }; + 586A995014EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A995114EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 122"; + rLen = 51; + rLoc = 4696; + rType = 0; + vrLen = 2004; + vrLoc = 5018; + }; + 586A995214EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A995314EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A995414EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A995514EECED8007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A996C14EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 1242; + vrLoc = 6246; + }; + 586A996D14EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A996E14EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 448"; + rLen = 0; + rLoc = 13503; + rType = 0; + vrLen = 0; + vrLoc = 13514; + }; + 586A996F14EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A997014EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A997114EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A997214EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 122"; + rLen = 51; + rLoc = 4696; + rType = 0; + vrLen = 2004; + vrLoc = 5018; + }; + 586A997314EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A997414EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 95"; + rLen = 0; + rLoc = 3834; + rType = 0; + vrLen = 1797; + vrLoc = 738; + }; + 586A997514EED74A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 36"; + rLen = 0; + rLoc = 1466; + rType = 0; + vrLen = 2610; + vrLoc = 1286; + }; + 586A999014EEE281007F82BF /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + }; + 586A99AD14EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 1242; + vrLoc = 6246; + }; + 586A99AE14EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 65"; + rLen = 0; + rLoc = 2189; + rType = 0; + vrLen = 1685; + vrLoc = 1467; + }; + 586A99AF14EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; + name = "SPMySQLFullyStreamingResult.h: 35"; + rLen = 0; + rLoc = 1422; + rType = 0; + vrLen = 1636; + vrLoc = 0; + }; + 586A99B014EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; + name = "SPMySQLStreamingResult.h: 41"; + rLen = 0; + rLoc = 1425; + rType = 0; + vrLen = 1441; + vrLoc = 645; + }; + 586A99B314EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + rLen = 0; + rLoc = 9223372036854775808; + rType = 0; + }; + 586A99B414EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 42"; + rLen = 0; + rLoc = 1553; + rType = 0; + vrLen = 1557; + vrLoc = 1439; + }; + 586A99B514EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 117"; + rLen = 0; + rLoc = 4962; + rType = 0; + vrLen = 1670; + vrLoc = 3935; + }; + 586A99B814EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; + rLen = 0; + rLoc = 9223372036854775808; + rType = 0; + }; + 586A99B914EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; + name = "SPMySQLResult.h: 52"; + rLen = 0; + rLoc = 1998; + rType = 0; + vrLen = 2126; + vrLoc = 2207; + }; + 586A99BC14EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + rLen = 0; + rLoc = 5346; + rType = 0; + }; + 586A99BD14EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A99C014EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A99C114EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A99C214EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 122"; + rLen = 51; + rLoc = 4696; + rType = 0; + vrLen = 2004; + vrLoc = 5018; + }; + 586A99C314EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A99C414EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A99C514EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A99C614EFFB2A007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A99CD14F00C55007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 57"; + rLen = 74; + rLoc = 2059; + rType = 0; + vrLen = 1307; + vrLoc = 787; + }; + 586A99CE14F00C55007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 32DBCF5E0370ADEE00C91783 /* SPMySQLFramework_Prefix.pch */; + name = "SPMySQLFramework_Prefix.pch: 10"; + rLen = 20; + rLoc = 183; + rType = 0; + vrLen = 231; + vrLoc = 0; + }; + 586A99CF14F00C55007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 430"; + rLen = 0; + rLoc = 12936; + rType = 0; + vrLen = 0; + vrLoc = 13514; + }; + 586A99D014F00C55007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; + name = "SPMySQLStreamingResult.h: 47"; + rLen = 0; + rLoc = 1448; + rType = 0; + vrLen = 1072; + vrLoc = 1128; + }; + 586A99D114F00C55007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Use of undeclared identifier 'fieldflags'; did you mean 'fieldFlags'?"; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + rLen = 1; + rLoc = 119; + rType = 1; + }; + 586A99D214F00C55007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 120"; + rLen = 0; + rLoc = 4983; + rType = 0; + vrLen = 1281; + vrLoc = 4074; + }; + 586A99D314F00C55007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 126; + rLoc = 6980; + rType = 0; + vrLen = 566; + vrLoc = 6645; + }; + 586A99D614F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; + name = "SPMySQLStreamingResult.h: 41"; + rLen = 0; + rLoc = 1425; + rType = 0; + vrLen = 1441; + vrLoc = 645; + }; + 586A99D714F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 487"; + rLen = 0; + rLoc = 15207; + rType = 0; + vrLen = 849; + vrLoc = 14363; + }; + 586A99D814F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 93"; + rLen = 147; + rLoc = 2894; + rType = 0; + vrLen = 1720; + vrLoc = 1702; + }; + 586A99D914F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A99DA14F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A99DB14F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A99DC14F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A99DD14F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 122"; + rLen = 51; + rLoc = 4696; + rType = 0; + vrLen = 2004; + vrLoc = 5018; + }; + 586A99DE14F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A99DF14F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A99E014F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A99E114F01759007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {764, 789}}"; + sepNavSelRange = "{1491, 16}"; + sepNavVisRange = "{0, 1942}"; + sepNavWindowFrame = "{{4, 0}, {823, 878}}"; + }; + }; + 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {764, 3380}}"; + sepNavSelRange = "{4467, 0}"; + sepNavVisRange = "{4570, 1630}"; + sepNavWindowFrame = "{{5, 0}, {823, 878}}"; + }; + }; + 586A9A1614F05216007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 120"; + rLen = 0; + rLoc = 4983; + rType = 0; + vrLen = 1382; + vrLoc = 3125; + }; + 586A9A1714F05216007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Use of undeclared identifier 'fullyStreaming'"; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + rLen = 0; + rLoc = 76; + rType = 1; + }; + 586A9A1814F05216007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 99"; + rLen = 0; + rLoc = 2883; + rType = 0; + vrLen = 1461; + vrLoc = 3253; + }; + 586A9A1914F05216007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 126; + rLoc = 6980; + rType = 0; + vrLen = 566; + vrLoc = 6645; + }; + 586A9A1A14F0527D007F82BF /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; + }; + 586A9A2C14F05659007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 99"; + rLen = 0; + rLoc = 2883; + rType = 0; + vrLen = 1461; + vrLoc = 3212; + }; + 586A9A2D14F05659007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Method '-initWithMySQLResult:stringEncoding:connection:withFullStreaming:' not found (return type defaults to 'id')"; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + rLen = 1; + rLoc = 323; + rType = 1; + }; + 586A9A2E14F05659007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 321"; + rLen = 0; + rLoc = 12544; + rType = 0; + vrLen = 1487; + vrLoc = 11757; + }; + 586A9A2F14F05659007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 126; + rLoc = 6980; + rType = 0; + vrLen = 566; + vrLoc = 6645; + }; + 586A9A7D14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; + name = "SPMySQLStreamingResult.h: 4"; + rLen = 0; + rLoc = 26; + rType = 0; + vrLen = 1637; + vrLoc = 0; + }; + 586A9A7E14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 190"; + rLen = 0; + rLoc = 5538; + rType = 0; + vrLen = 1297; + vrLoc = 5831; + }; + 586A9A7F14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 4"; + rLen = 0; + rLoc = 30; + rType = 0; + vrLen = 1719; + vrLoc = 0; + }; + 586A9A8014F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 324"; + rLen = 0; + rLoc = 12722; + rType = 0; + vrLen = 1719; + vrLoc = 11547; + }; + 586A9A8114F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; + name = "SPMySQLFastStreamingResult.h: 9"; + rLen = 0; + rLoc = 199; + rType = 0; + vrLen = 1691; + vrLoc = 197; + }; + 586A9A8214F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 30"; + rLen = 0; + rLoc = 1289; + rType = 0; + vrLen = 1597; + vrLoc = 12; + }; + 586A9A8314F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */; + name = "SPMySQLUtilities.h: 39"; + rLen = 32; + rLoc = 1509; + rType = 0; + vrLen = 1768; + vrLoc = 15; + }; + 586A9A8414F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; + name = "SPMySQLConnectionProxy.h: 32"; + rLen = 0; + rLoc = 1356; + rType = 0; + vrLen = 1304; + vrLoc = 454; + }; + 586A9A8514F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 50"; + rLen = 0; + rLoc = 1874; + rType = 0; + vrLen = 1607; + vrLoc = 0; + }; + 586A9A8614F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1443; + vrLoc = 716; + }; + 586A9A8714F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9A8A14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + rLen = 1; + rLoc = 47; + rType = 1; + }; + 586A9A8B14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 302"; + rLen = 0; + rLoc = 10978; + rType = 0; + vrLen = 1821; + vrLoc = 8234; + }; + 586A9A8E14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 190"; + rLen = 0; + rLoc = 5538; + rType = 0; + vrLen = 1813; + vrLoc = 5515; + }; + 586A9A8F14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 217"; + rLen = 0; + rLoc = 7575; + rType = 0; + vrLen = 1724; + vrLoc = 5697; + }; + 586A9A9214F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 386"; + rLen = 0; + rLoc = 12494; + rType = 0; + vrLen = 2837; + vrLoc = 1670; + }; + 586A9A9314F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 114"; + rLen = 15; + rLoc = 4700; + rType = 0; + vrLen = 2162; + vrLoc = 8198; + }; + 586A9A9614F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; + name = "SPMySQLStreamingResult.h: 32"; + rLen = 0; + rLoc = 1355; + rType = 0; + vrLen = 1942; + vrLoc = 0; + }; + 586A9A9714F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9A9814F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9A9914F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9A9A14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9A9B14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9A9C14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9A9D14F081A3007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9AAC14F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1443; + vrLoc = 716; + }; + 586A9AAD14F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 72"; + rLen = 0; + rLoc = 2942; + rType = 0; + vrLen = 1903; + vrLoc = 2354; + }; + 586A9AAE14F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 113"; + rLen = 12; + rLoc = 4656; + rType = 0; + vrLen = 2570; + vrLoc = 2711; + }; + 586A9AAF14F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9AB014F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 302"; + rLen = 0; + rLoc = 10978; + rType = 0; + vrLen = 1821; + vrLoc = 8234; + }; + 586A9AB114F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9AB214F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9AB314F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9AB414F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9AB514F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9AB614F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9AB714F08A0C007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9B4714F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1471; + vrLoc = 716; + }; + 586A9B4814F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 72"; + rLen = 0; + rLoc = 2942; + rType = 0; + vrLen = 1903; + vrLoc = 2354; + }; + 586A9B4914F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 113"; + rLen = 12; + rLoc = 4656; + rType = 0; + vrLen = 2570; + vrLoc = 2711; + }; + 586A9B4A14F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9B4B14F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 302"; + rLen = 0; + rLoc = 10978; + rType = 0; + vrLen = 1821; + vrLoc = 8234; + }; + 586A9B4C14F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9B4D14F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9B4E14F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9B4F14F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9B5014F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9B5114F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9B5214F08BEB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9B8114F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1471; + vrLoc = 716; + }; + 586A9B8214F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 72"; + rLen = 0; + rLoc = 2942; + rType = 0; + vrLen = 1903; + vrLoc = 2354; + }; + 586A9B8314F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 113"; + rLen = 12; + rLoc = 4656; + rType = 0; + vrLen = 2570; + vrLoc = 2711; + }; + 586A9B8414F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9B8514F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 306"; + rLen = 0; + rLoc = 10978; + rType = 0; + vrLen = 2111; + vrLoc = 7722; + }; + 586A9B8614F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9B8714F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9B8814F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9B8914F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9B8A14F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9B8B14F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9B8C14F08D11007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9BE814F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1471; + vrLoc = 716; + }; + 586A9BE914F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 72"; + rLen = 0; + rLoc = 2942; + rType = 0; + vrLen = 1903; + vrLoc = 2354; + }; + 586A9BEA14F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 113"; + rLen = 12; + rLoc = 4656; + rType = 0; + vrLen = 2570; + vrLoc = 2711; + }; + 586A9BEB14F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9BEC14F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 306"; + rLen = 0; + rLoc = 10978; + rType = 0; + vrLen = 2111; + vrLoc = 7722; + }; + 586A9BED14F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9BEE14F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9BEF14F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9BF014F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9BF114F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9BF214F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9BF314F090AB007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9BF714F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1471; + vrLoc = 716; + }; + 586A9BF814F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 72"; + rLen = 0; + rLoc = 2942; + rType = 0; + vrLen = 1903; + vrLoc = 2354; + }; + 586A9BF914F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 113"; + rLen = 12; + rLoc = 4656; + rType = 0; + vrLen = 2570; + vrLoc = 2711; + }; + 586A9BFA14F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9BFB14F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 306"; + rLen = 0; + rLoc = 10978; + rType = 0; + vrLen = 2111; + vrLoc = 7722; + }; + 586A9BFC14F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9BFD14F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9BFE14F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9BFF14F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9C0014F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9C0114F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9C0214F090E4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9C0914F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1471; + vrLoc = 716; + }; + 586A9C0A14F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 72"; + rLen = 0; + rLoc = 2942; + rType = 0; + vrLen = 1903; + vrLoc = 2354; + }; + 586A9C0B14F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 113"; + rLen = 12; + rLoc = 4656; + rType = 0; + vrLen = 2570; + vrLoc = 2711; + }; + 586A9C0C14F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9C0D14F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 306"; + rLen = 0; + rLoc = 10978; + rType = 0; + vrLen = 2111; + vrLoc = 7722; + }; + 586A9C0E14F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9C0F14F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9C1014F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9C1114F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9C1214F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9C1314F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9C1414F0914D007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9C3C14F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1471; + vrLoc = 716; + }; + 586A9C3D14F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 135"; + rLen = 0; + rLoc = 5333; + rType = 0; + vrLen = 1430; + vrLoc = 4333; + }; + 586A9C3E14F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 72"; + rLen = 0; + rLoc = 2942; + rType = 0; + vrLen = 1903; + vrLoc = 2354; + }; + 586A9C3F14F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9C4014F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 306"; + rLen = 0; + rLoc = 10978; + rType = 0; + vrLen = 2111; + vrLoc = 7722; + }; + 586A9C4114F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9C4214F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9C4314F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9C4414F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9C4514F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9C4614F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9C4714F169D9007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9C5D14F172AE007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Method '-initWithMySQLResult:stringEncoding:connection:withFullStreaming:' not found (return type defaults to 'id')"; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + rLen = 1; + rLoc = 323; + rType = 1; + }; + 586A9C5E14F172AE007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 200"; + rLen = 0; + rLoc = 7810; + rType = 0; + vrLen = 1535; + vrLoc = 6556; + }; + 586A9C5F14F172AE007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 126; + rLoc = 6980; + rType = 0; + vrLen = 566; + vrLoc = 6645; + }; + 586A9C7714F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1434; + vrLoc = 784; + }; + 586A9C7814F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 223"; + rLen = 0; + rLoc = 7203; + rType = 0; + vrLen = 2733; + vrLoc = 1498; + }; + 586A9C7914F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 307"; + rLen = 0; + rLoc = 10979; + rType = 0; + vrLen = 1683; + vrLoc = 3470; + }; + 586A9C7A14F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 72"; + rLen = 0; + rLoc = 2942; + rType = 0; + vrLen = 1678; + vrLoc = 4570; + }; + 586A9C7B14F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9C7C14F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9C7D14F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9C7E14F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9C7F14F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9C8014F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9C8114F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9C8214F17FC1007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9C9014F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1434; + vrLoc = 784; + }; + 586A9C9114F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 81"; + rLen = 0; + rLoc = 2883; + rType = 0; + vrLen = 1874; + vrLoc = 1537; + }; + 586A9C9214F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 74"; + rLen = 0; + rLoc = 2943; + rType = 0; + vrLen = 2124; + vrLoc = 1430; + }; + 586A9C9314F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 110"; + rLen = 0; + rLoc = 4506; + rType = 0; + vrLen = 2079; + vrLoc = 3328; + }; + 586A9C9414F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9C9514F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9C9614F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9C9714F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9C9814F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9C9914F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9C9A14F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9C9B14F18474007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9CAE14F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1434; + vrLoc = 784; + }; + 586A9CAF14F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 139"; + rLen = 0; + rLoc = 4149; + rType = 0; + vrLen = 1635; + vrLoc = 3681; + }; + 586A9CB014F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 129"; + rLen = 0; + rLoc = 4467; + rType = 0; + vrLen = 1590; + vrLoc = 3624; + }; + 586A9CB114F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 211"; + rLen = 724; + rLoc = 6871; + rType = 0; + vrLen = 2039; + vrLoc = 6731; + }; + 586A9CB214F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9CB314F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9CB414F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9CB514F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9CB614F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9CB714F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9CB814F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9CB914F19529007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9CC214F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1434; + vrLoc = 784; + }; + 586A9CC314F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 139"; + rLen = 0; + rLoc = 4149; + rType = 0; + vrLen = 1635; + vrLoc = 3681; + }; + 586A9CC414F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 129"; + rLen = 0; + rLoc = 4467; + rType = 0; + vrLen = 1590; + vrLoc = 3624; + }; + 586A9CC514F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 211"; + rLen = 724; + rLoc = 6871; + rType = 0; + vrLen = 2039; + vrLoc = 6731; + }; + 586A9CC614F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9CC714F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9CC814F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9CC914F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9CCA14F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9CCB14F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9CCC14F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9CCD14F19AC4007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9CF014F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1434; + vrLoc = 784; + }; + 586A9CF114F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 455"; + rLen = 0; + rLoc = 13508; + rType = 0; + vrLen = 0; + vrLoc = 13514; + }; + 586A9CF314F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 97"; + rLen = 0; + rLoc = 3280; + rType = 0; + vrLen = 954; + vrLoc = 2221; + }; + 586A9CF414F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 145"; + rLen = 48; + rLoc = 4338; + rType = 0; + vrLen = 1054; + vrLoc = 6386; + }; + 586A9CF514F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 129"; + rLen = 0; + rLoc = 4467; + rType = 0; + vrLen = 1590; + vrLoc = 3624; + }; + 586A9CF614F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 211"; + rLen = 724; + rLoc = 6871; + rType = 0; + vrLen = 2039; + vrLoc = 6731; + }; + 586A9CF714F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9CF814F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9CF914F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9CFA14F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9CFB14F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9CFC14F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9CFD14F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9CFE14F19E61007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9D1D14F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1434; + vrLoc = 784; + }; + 586A9D1E14F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 413"; + rLen = 0; + rLoc = 13508; + rType = 0; + vrLen = 1845; + vrLoc = 11525; + }; + 586A9D1F14F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 129"; + rLen = 0; + rLoc = 4467; + rType = 0; + vrLen = 1649; + vrLoc = 4570; + }; + 586A9D2014F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 211"; + rLen = 724; + rLoc = 6871; + rType = 0; + vrLen = 2039; + vrLoc = 6731; + }; + 586A9D2114F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9D2214F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9D2314F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9D2414F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9D2514F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9D2614F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9D2714F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9D2814F1BAA7007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9D3014F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1434; + vrLoc = 784; + }; + 586A9D3114F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 416"; + rLen = 0; + rLoc = 13508; + rType = 0; + vrLen = 1968; + vrLoc = 11538; + }; + 586A9D3214F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 129"; + rLen = 0; + rLoc = 4467; + rType = 0; + vrLen = 1649; + vrLoc = 4570; + }; + 586A9D3314F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 211"; + rLen = 724; + rLoc = 6871; + rType = 0; + vrLen = 2039; + vrLoc = 6731; + }; + 586A9D3414F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9D3514F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9D3614F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9D3714F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9D3814F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9D3914F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9D3A14F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9D3B14F1BB04007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9D3D14F1BC39007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 200"; + rLen = 0; + rLoc = 7810; + rType = 0; + vrLen = 1535; + vrLoc = 6556; + }; + 586A9D3E14F1BC39007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 808"; + rLen = 0; + rLoc = 27549; + rType = 0; + vrLen = 405; + vrLoc = 27378; + }; + 586A9D3F14F1BC39007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + rLen = 0; + rLoc = 3494; + rType = 0; + }; + 586A9D4014F1BC39007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 108"; + rLen = 0; + rLoc = 3691; + rType = 0; + vrLen = 635; + vrLoc = 3083; + }; + 586A9D4D14F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 55"; + rLen = 0; + rLoc = 1997; + rType = 0; + vrLen = 1434; + vrLoc = 784; + }; + 586A9D4E14F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 416"; + rLen = 0; + rLoc = 13508; + rType = 0; + vrLen = 1968; + vrLoc = 11538; + }; + 586A9D4F14F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 129"; + rLen = 0; + rLoc = 4467; + rType = 0; + vrLen = 1649; + vrLoc = 4570; + }; + 586A9D5014F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 211"; + rLen = 724; + rLoc = 6871; + rType = 0; + vrLen = 2039; + vrLoc = 6731; + }; + 586A9D5114F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9D5214F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 109"; + rLen = 0; + rLoc = 3830; + rType = 0; + vrLen = 1881; + vrLoc = 1953; + }; + 586A9D5314F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9D5414F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9D5514F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9D5614F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9D5714F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9D5814F1BC84007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586A9D5914F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; + name = "SPMySQLConnectionProxy.h: 32"; + rLen = 0; + rLoc = 1356; + rType = 0; + vrLen = 1304; + vrLoc = 454; + }; + 586A9D5A14F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLFastStreamingResult.m: 416"; + rLen = 0; + rLoc = 13508; + rType = 0; + vrLen = 1968; + vrLoc = 11538; + }; + 586A9D5B14F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 129"; + rLen = 0; + rLoc = 4467; + rType = 0; + vrLen = 1649; + vrLoc = 4570; + }; + 586A9D5C14F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 211"; + rLen = 724; + rLoc = 6871; + rType = 0; + vrLen = 2039; + vrLoc = 6731; + }; + 586A9D5D14F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 227"; + rLen = 7; + rLoc = 6983; + rType = 0; + vrLen = 2361; + vrLoc = 0; + }; + 586A9D5E14F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 56"; + rLen = 8; + rLoc = 1930; + rType = 0; + vrLen = 1752; + vrLoc = 1057; + }; + 586A9D5F14F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 73"; + rLen = 32; + rLoc = 2213; + rType = 0; + vrLen = 1771; + vrLoc = 578; + }; + 586A9D6014F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2415; + vrLoc = 1408; + }; + 586A9D6114F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 586A9D6214F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 586A9D6314F1BE95007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2087; + vrLoc = 3560; + }; + 586AA0E314F1CEBE007F82BF /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; + name = "SPMySQLConnectionProxy.h: 32"; + rLen = 0; + rLoc = 1356; + rType = 0; + vrLen = 1234; + vrLoc = 524; + }; + 5884127614CC63830078027F /* SPMySQL.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 806}}"; + sepNavSelRange = "{1997, 0}"; + sepNavVisRange = "{784, 1434}"; + sepNavWindowFrame = "{{19, 0}, {806, 878}}"; + }; + }; + 588412A614CC7A4D0078027F /* Locking.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 546}}"; + sepNavSelRange = "{180, 0}"; + sepNavVisRange = "{12, 1498}"; + sepNavWindowFrame = "{{19, 0}, {806, 878}}"; + }; + }; + 588412A714CC7A4D0078027F /* Locking.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 1365}}"; + sepNavSelRange = "{1280, 0}"; + sepNavVisRange = "{119, 1673}"; + sepNavWindowFrame = "{{561, 0}, {806, 878}}"; + }; + }; + 5884142514CCF5190078027F /* Conversion.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 832}}"; + sepNavSelRange = "{646, 0}"; + sepNavVisRange = "{15, 2457}"; + sepNavWindowFrame = "{{19, 0}, {806, 878}}"; + }; + }; + 5884142614CCF5190078027F /* Conversion.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 1274}}"; + sepNavSelRange = "{2441, 508}"; + sepNavVisRange = "{1408, 2414}"; + sepNavWindowFrame = "{{302, 0}, {806, 878}}"; + }; + }; + 588414BC14CE3B110078027F /* SPMySQLConnectionDelegate.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 1391}}"; + sepNavSelRange = "{1903, 68}"; + sepNavVisRange = "{1701, 2460}"; + sepNavWindowFrame = "{{634, 0}, {806, 878}}"; + }; + }; + 5884165314D2306A0078027F /* SPMySQLResult.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 1560}}"; + sepNavSelRange = "{1724, 0}"; + sepNavVisRange = "{378, 2307}"; + sepNavWindowFrame = "{{455, 0}, {806, 878}}"; + }; + }; + 5884165414D2306A0078027F /* SPMySQLResult.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 6435}}"; + sepNavSelRange = "{6871, 724}"; + sepNavVisRange = "{6652, 2166}"; + sepNavWindowFrame = "{{238, 0}, {806, 878}}"; + }; + }; + 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 585}}"; + sepNavSelRange = "{1509, 32}"; + sepNavVisRange = "{15, 1768}"; + sepNavWindowFrame = "{{19, 0}, {725, 878}}"; + }; + }; + 58C0070614E0B5F000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */; + name = "SPMySQLGeometryData.m: 29"; + rLen = 0; + rLoc = 1213; + rType = 0; + vrLen = 1446; + vrLoc = 0; + }; + 58C0071B14E0B5F000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; + name = "SPMySQLConstants.h: 30"; + rLen = 0; + rLoc = 1289; + rType = 0; + vrLen = 1567; + vrLoc = 15; + }; + 58C0071C14E0B5F000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 32DBCF5E0370ADEE00C91783 /* SPMySQLFramework_Prefix.pch */; + name = "SPMySQLFramework_Prefix.pch: 11"; + rLen = 0; + rLoc = 231; + rType = 0; + vrLen = 231; + vrLoc = 0; + }; + 58C0071D14E0B5F000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */; + name = "SPMySQLUtilities.h: 39"; + rLen = 32; + rLoc = 1509; + rType = 0; + vrLen = 1754; + vrLoc = 29; + }; + 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 936}}"; + sepNavSelRange = "{1356, 0}"; + sepNavVisRange = "{524, 1234}"; + sepNavWindowFrame = "{{229, 0}, {725, 878}}"; + }; + }; + 58C0091014E2B28600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 588414BC14CE3B110078027F /* SPMySQLConnectionDelegate.h */; + name = "SPMySQLConnectionDelegate.h: 92"; + rLen = 0; + rLoc = 4086; + rType = 0; + vrLen = 1613; + vrLoc = 0; + }; + 58C0091114E2B28600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; + name = "SPMySQLConnectionProxy.h: 32"; + rLen = 0; + rLoc = 1356; + rType = 0; + vrLen = 1142; + vrLoc = 586; + }; + 58C009D314E31D3800AC489A /* SPMySQLStringAdditions.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 520}}"; + sepNavSelRange = "{1486, 0}"; + sepNavVisRange = "{3, 1483}"; + sepNavWindowFrame = "{{19, 0}, {790, 878}}"; + }; + }; + 58C009D414E31D3800AC489A /* SPMySQLStringAdditions.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {731, 789}}"; + sepNavSelRange = "{1944, 0}"; + sepNavVisRange = "{0, 2083}"; + sepNavWindowFrame = "{{451, 0}, {790, 878}}"; + }; + }; + 58C009F214E341A300AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F914CB8002000F8438 /* Encoding.m */; + name = "Encoding.m: 30"; + rLen = 0; + rLoc = 1281; + rType = 0; + vrLen = 1471; + vrLoc = 12; + }; + 58C009F414E341A300AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EE14CB8002000F8438 /* Ping & KeepAlive.h */; + name = "Ping & KeepAlive.h: 30"; + rLen = 0; + rLoc = 1289; + rType = 0; + vrLen = 1542; + vrLoc = 0; + }; + 58C009F614E341A300AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 580A331C14D75CF7000D6933 /* SPMySQLGeometryData.h */; + name = "SPMySQLGeometryData.h: 1"; + rLen = 1272; + rLoc = 0; + rType = 0; + vrLen = 1438; + vrLoc = 0; + }; + 58C009F914E341A300AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C009D414E31D3800AC489A /* SPMySQLStringAdditions.m */; + name = "SPMySQLStringAdditions.m: 32"; + rLen = 0; + rLoc = 1354; + rType = 0; + vrLen = 1437; + vrLoc = 0; + }; + 58C00A4914E443EF00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C009D314E31D3800AC489A /* SPMySQLStringAdditions.h */; + name = "SPMySQLStringAdditions.h: 40"; + rLen = 0; + rLoc = 1486; + rType = 0; + vrLen = 1483; + vrLoc = 3; + }; + 58C00AA714E4869C00AC489A /* Max Packet Size.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {731, 789}}"; + sepNavSelRange = "{1480, 0}"; + sepNavVisRange = "{0, 1523}"; + sepNavWindowFrame = "{{19, 0}, {790, 878}}"; + }; + }; + 58C00AA814E4869C00AC489A /* Max Packet Size.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {731, 2522}}"; + sepNavSelRange = "{444, 0}"; + sepNavVisRange = "{380, 2204}"; + sepNavWindowFrame = "{{609, 0}, {790, 878}}"; + }; + }; + 58C00AB314E4892E00AC489A /* Delegate & Proxy.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 499}}"; + sepNavSelRange = "{0, 1348}"; + sepNavVisRange = "{0, 1406}"; + sepNavWindowFrame = "{{19, 0}, {790, 878}}"; + }; + }; + 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 1729}}"; + sepNavSelRange = "{2412, 0}"; + sepNavVisRange = "{0, 1601}"; + sepNavWindowFrame = "{{174, 0}, {790, 878}}"; + }; + }; + 58C00AE114E495D000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F814CB8002000F8438 /* Encoding.h */; + name = "Encoding.h: 51"; + rLen = 0; + rLoc = 1941; + rType = 0; + vrLen = 1440; + vrLoc = 508; + }; + 58C00AE214E495D000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FC14CB8002000F8438 /* Server Info.h */; + name = "Server Info.h: 34"; + rLen = 28; + rLoc = 1367; + rType = 0; + vrLen = 1522; + vrLoc = 0; + }; + 58C00AE614E495D000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */; + name = "Delegate & Proxy.m: 79"; + rLen = 0; + rLoc = 2412; + rType = 0; + vrLen = 1115; + vrLoc = 2357; + }; + 58C00AE714E495D000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884127614CC63830078027F /* SPMySQL.h */; + name = "SPMySQL.h: 47"; + rLen = 0; + rLoc = 1874; + rType = 0; + vrLen = 1492; + vrLoc = 0; + }; + 58C00AE814E495D000AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA714E4869C00AC489A /* Max Packet Size.h */; + name = "Max Packet Size.h: 11"; + rLen = 0; + rLoc = 278; + rType = 0; + vrLen = 1514; + vrLoc = 3; + }; + 58C00B1914E59D4500AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 36"; + rLen = 0; + rLoc = 1409; + rType = 0; + vrLen = 1507; + vrLoc = 0; + }; + 58C00BCF14E7459600AC489A /* Databases & Tables.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 650}}"; + sepNavSelRange = "{63, 0}"; + sepNavVisRange = "{0, 1493}"; + sepNavWindowFrame = "{{19, 0}, {806, 878}}"; + }; + }; + 58C00BD014E7459600AC489A /* Databases & Tables.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 3302}}"; + sepNavSelRange = "{5045, 0}"; + sepNavVisRange = "{449, 1681}"; + sepNavWindowFrame = "{{629, 0}, {806, 878}}"; + }; + }; + 58C00BDA14E7465700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; + name = "Querying & Preparation.h: 1"; + rLen = 1354; + rLoc = 0; + rType = 0; + vrLen = 1518; + vrLoc = 0; + }; + 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 1508}}"; + sepNavSelRange = "{3830, 0}"; + sepNavVisRange = "{1953, 1881}"; + sepNavWindowFrame = "{{48, 0}, {806, 878}}"; + }; + }; + 58C00CCC14E86EE000AC489A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + }; + 58C00CE314E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00BCF14E7459600AC489A /* Databases & Tables.h */; + name = "Databases & Tables.h: 6"; + rLen = 0; + rLoc = 63; + rType = 0; + vrLen = 1493; + vrLoc = 0; + }; + 58C00CE414E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E614DB6E8600436315 /* Field Definitions.h */; + name = "Field Definitions.h: 17"; + rLen = 0; + rLoc = 642; + rType = 0; + vrLen = 1434; + vrLoc = 0; + }; + 58C00CE514E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; + name = "Field Definitions.m: 30"; + rLen = 0; + rLoc = 1290; + rType = 0; + vrLen = 1001; + vrLoc = 13379; + }; + 58C00CE614E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AB314E4892E00AC489A /* Delegate & Proxy.h */; + name = "Delegate & Proxy.h: 1"; + rLen = 1348; + rLoc = 0; + rType = 0; + vrLen = 1406; + vrLoc = 0; + }; + 58C00CE814E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 72"; + rLen = 0; + rLoc = 2630; + rType = 0; + vrLen = 1258; + vrLoc = 655; + }; + 58C00CE914E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 588412A614CC7A4D0078027F /* Locking.h */; + name = "Locking.h: 9"; + rLen = 0; + rLoc = 180; + rType = 0; + vrLen = 1498; + vrLoc = 12; + }; + 58C00CEA14E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 588412A714CC7A4D0078027F /* Locking.m */; + name = "Locking.m: 30"; + rLen = 0; + rLoc = 1280; + rType = 0; + vrLen = 1517; + vrLoc = 12; + }; + 58C00CEB14E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142514CCF5190078027F /* Conversion.h */; + name = "Conversion.h: 30"; + rLen = 0; + rLoc = 1281; + rType = 0; + vrLen = 1701; + vrLoc = 12; + }; + 58C00CEC14E8738600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 30"; + rLen = 0; + rLoc = 1281; + rType = 0; + vrLen = 1911; + vrLoc = 246; + }; + 58C00D1914E87E2900AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00BD014E7459600AC489A /* Databases & Tables.m */; + name = "Databases & Tables.m: 142"; + rLen = 0; + rLoc = 5045; + rType = 0; + vrLen = 2195; + vrLoc = 6590; + }; + 58C00DBD14E9442500AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 166"; + rLen = 0; + rLoc = 5483; + rType = 0; + vrLen = 1879; + vrLoc = 3773; + }; + 58C00EA214ED2AC600AC489A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + }; + 58C00EA414ED2B7E00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; + name = "SPMySQLConnection.h: 125"; + rLen = 31; + rLoc = 3851; + rType = 0; + vrLen = 1773; + vrLoc = 3203; + }; + 58C00EA614ED2B7E00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 30"; + rLen = 0; + rLoc = 1299; + rType = 0; + vrLen = 1437; + vrLoc = 0; + }; + 58C00EB714ED2B7E00AC489A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + }; + 58C00F0814ED327D00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; + name = "SPMySQLStreamingResult.h: 34"; + rLen = 0; + rLoc = 1422; + rType = 0; + vrLen = 1601; + vrLoc = 0; + }; + 58C00F0914ED327D00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; + name = "SPMySQLResult.h: 33"; + rLen = 0; + rLoc = 1346; + rType = 0; + vrLen = 2182; + vrLoc = 0; + }; + 58C00F0A14ED327D00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; + name = "SPMySQLResult.m: 34"; + rLen = 0; + rLoc = 1388; + rType = 0; + vrLen = 2098; + vrLoc = 56; + }; + 58C0102414ED514600AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; + name = "SPMySQL Private APIs.h: 95"; + rLen = 0; + rLoc = 3834; + rType = 0; + vrLen = 981; + vrLoc = 1302; + }; + 58C0104014ED56EE00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 157"; + rLen = 53; + rLoc = 5100; + rType = 0; + vrLen = 1653; + vrLoc = 4269; + }; + 58C0109714ED5F5300AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + rLen = 1; + rLoc = 47; + rType = 1; + }; + 58C010C814ED77AF00AC489A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + }; + 58C010D014ED8A2D00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 472"; + rLen = 0; + rLoc = 15496; + rType = 0; + vrLen = 959; + vrLoc = 4959; + }; + 58C010D414ED8A2D00AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 67"; + rLen = 0; + rLoc = 2869; + rType = 0; + vrLen = 2247; + vrLoc = 1699; + }; + 58C010E614ED8AA800AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; + name = "Querying & Preparation.h: 37"; + rLen = 0; + rLoc = 1576; + rType = 0; + vrLen = 2340; + vrLoc = 0; + }; + 58C010F614ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Use of undeclared identifier 'mConnection'; did you mean 'NSConnection'?"; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + rLen = 0; + rLoc = 55; + rType = 1; + }; + 58C010F714ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 69"; + rLen = 0; + rLoc = 2114; + rType = 0; + vrLen = 1546; + vrLoc = 2048; + }; + 58C010F814ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; + name = "SPMySQLConnection.m: 34"; + rLen = 28; + rLoc = 1382; + rType = 0; + vrLen = 2321; + vrLoc = 0; + }; + 58C010F914ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; + name = "Querying & Preparation.m: 47"; + rLen = 57; + rLoc = 1995; + rType = 0; + vrLen = 2137; + vrLoc = 1618; + }; + 58C010FA14ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; + name = "Querying & Preparation.h: 37"; + rLen = 0; + rLoc = 1490; + rType = 0; + vrLen = 2390; + vrLoc = 0; + }; + 58C010FB14ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5884142614CCF5190078027F /* Conversion.m */; + name = "Conversion.m: 58"; + rLen = 508; + rLoc = 2441; + rType = 0; + vrLen = 2414; + vrLoc = 1409; + }; + 58C010FC14ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; + name = "Ping & KeepAlive.m: 84"; + rLen = 17; + rLoc = 2950; + rType = 0; + vrLen = 1795; + vrLoc = 1292; + }; + 58C010FD14ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; + name = "Max Packet Size.m: 13"; + rLen = 0; + rLoc = 444; + rType = 0; + vrLen = 2204; + vrLoc = 380; + }; + 58C010FE14ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; + name = "SPMySQLStreamingResult.m: 43"; + rLen = 0; + rLoc = 2248; + rType = 0; + vrLen = 2275; + vrLoc = 0; + }; + 58C010FF14ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; + name = "Field Definitions.m: 42"; + rLen = 0; + rLoc = 1937; + rType = 0; + vrLen = 2440; + vrLoc = 994; + }; + 58C0110014ED8B8700AC489A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 584294FD14CB8002000F8438 /* Server Info.m */; + name = "Server Info.m: 162"; + rLen = 248; + rLoc = 5255; + rType = 0; + vrLen = 2088; + vrLoc = 3560; + }; + 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 789}}"; + sepNavSelRange = "{1612, 0}"; + sepNavVisRange = "{0, 1698}"; + sepNavWindowFrame = "{{45, 0}, {806, 878}}"; + }; + }; + 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {747, 5577}}"; + sepNavSelRange = "{13508, 0}"; + sepNavVisRange = "{11573, 1933}"; + sepNavWindowFrame = "{{632, 0}, {806, 878}}"; + }; + }; + 58C7C1E614DB6E8600436315 /* Field Definitions.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {914, 507}}"; + sepNavSelRange = "{642, 0}"; + sepNavVisRange = "{0, 1434}"; + sepNavWindowFrame = "{{19, 0}, {725, 878}}"; + }; + }; + 58C7C1E714DB6E8600436315 /* Field Definitions.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {666, 6461}}"; + sepNavSelRange = "{11500, 5}"; + sepNavVisRange = "{5554, 2632}"; + sepNavWindowFrame = "{{19, 0}, {725, 878}}"; + }; + }; + 58C7C2E914DD96BA00436315 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C2EA14DD96BA00436315 /* types.h */; + name = "types.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1984; + vrLoc = 0; + }; + 58C7C2EA14DD96BA00436315 /* types.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = types.h; + path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h; + sourceTree = ""; + }; + 58F2538314DF16C6003C2AB8 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 5842929614C34B36000F8438 /* mysql.h */; + name = "mysql.h: 109"; + rLen = 0; + rLoc = 3531; + rType = 0; + vrLen = 1874; + vrLoc = 2401; + }; + 58F254A714E087D1003C2AB8 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; + name = "Field Definitions.m: 35"; + rLen = 0; + rLoc = 1937; + rType = 0; + vrLen = 2394; + vrLoc = 1374; + }; + 8DC2EF4F0486A6940098B216 /* SPMySQL.framework */ = { + activeExec = 0; + }; +} diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQL Private APIs.h b/Frameworks/SPMySQLFramework/Source/SPMySQL Private APIs.h new file mode 100644 index 00000000..5772eb72 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQL Private APIs.h @@ -0,0 +1,110 @@ +// +// $Id$ +// +// SPMySQLConnection_PrivateAPI.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 12, 2012 +// Copyright (c) 2012 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 + +/** + * A collection of Private APIs from the various categories, to simplify + * inclusion across the categories. + */ + +#import "Ping & KeepAlive.h" +#import "Locking.h" +#import "Conversion.h" + + +@interface SPMySQLConnection (PrivateAPI) + +- (MYSQL *)_makeRawMySQLConnectionWithEncoding:(NSString *)encodingName isMasterConnection:(BOOL)isMaster; +- (BOOL)_waitForNetworkConnectionWithTimeout:(double)timeoutSeconds; +- (void)_updateConnectionVariables; +- (void)_restoreConnectionVariables; +- (BOOL)_checkConnectionIfNecessary; + +@end + + +@interface SPMySQLConnection (Delegate_and_Proxy_Private_API) + +- (void)_proxyStateChange:(NSObject *)aProxy; +- (SPMySQLConnectionLostDecision)_delegateDecisionForLostConnection; + +@end + + +@interface SPMySQLConnection (Databases_and_Tables_Private_API) + +- (BOOL)_storeAndAlterEncodingToUTF8IfRequired; + +@end + + +@interface SPMySQLConnection (Max_Packet_Size_Private_API) + +- (void)_updateMaxQuerySize; +- (void)_updateMaxQuerySizeEditability; +- (BOOL)_attemptMaxQuerySizeIncreaseTo:(NSUInteger)targetSize; +- (void)_restoreMaximumQuerySizeAfterQuery; + +@end + + +@interface SPMySQLConnection (Querying_and_Preparation_Private_API) + +- (void)_flushMultipleResultSets; +- (void)_updateLastErrorMessage:(NSString *)theErrorMessage; +- (void)_updateLastErrorID:(NSUInteger)theErrorID; + +@end + + +// SPMySQLResult Private API +@interface SPMySQLResult (Private_API) + +- (NSString *)_stringWithBytes:(const void *)bytes length:(NSUInteger)length; +- (void)_setQueryExecutionTime:(double)theExecutionTime; +- (id)_getObjectFromBytes:(char *)bytes ofLength:(NSUInteger)length fieldType:(unsigned int)fieldType fieldDefinitionIndex:(NSUInteger)fieldIndex; + +@end + +/** + * Set up a static function to allow fast calling of SPMySQLResult data conversion with cached selectors + */ +static inline id SPMySQLResultGetObject(SPMySQLResult* self, char* bytes, NSUInteger length, unsigned int fieldType, NSUInteger fieldIndex) +{ + typedef id (*SPMySQLResultGetObjectMethodPtr)(SPMySQLResult*, SEL, char*, NSUInteger, unsigned int, NSUInteger); + static SPMySQLResultGetObjectMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(_getObjectFromBytes:ofLength:fieldType:fieldDefinitionIndex:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetObjectMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, bytes, length, fieldType, fieldIndex); +} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQL.h b/Frameworks/SPMySQLFramework/Source/SPMySQL.h new file mode 100644 index 00000000..a9150f46 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQL.h @@ -0,0 +1,62 @@ +// +// $Id$ +// +// SPMySQL.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 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 + +@class SPMySQLConnection, SPMySQLResult, SPMySQLStreamingResult, SPMySQLFastStreamingResult; + +// Global include file for the framework. +// Constants +#import "SPMySQLConstants.h" + +// Required category additions +#import "SPMySQLStringAdditions.h" + +// MySQL Connection Delegate and Proxy protocols +#import "SPMySQLConnectionDelegate.h" +#import "SPMySQLConnectionProxy.h" + +// MySQL Connection class and public categories +#import "SPMySQLConnection.h" +#import "Delegate & Proxy.h" +#import "Databases & Tables.h" +#import "Max Packet Size.h" +#import "Querying & Preparation.h" +#import "Encoding.h" +#import "Server Info.h" + +// MySQL result set, streaming subclasses of same, and associated categories +#import "SPMySQLResult.h" +#import "SPMySQLStreamingResult.h" +#import "SPMySQLFastStreamingResult.h" +#import "Field Definitions.h" + +// Result data objects +#import "SPMySQLGeometryData.h" \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h new file mode 100644 index 00000000..0309ebdb --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h @@ -0,0 +1,60 @@ +// +// $Id$ +// +// Encoding.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 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. +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// More info at + +// This class is private to the framework. + +@interface SPMySQLConnection (Conversion) + ++ (const char *)_cStringForString:(NSString *)aString usingEncoding:(NSStringEncoding)anEncoding returningLengthAs:(NSUInteger *)cStringLengthPointer; + +- (const char *)_cStringForString:(NSString *)aString; +- (NSString *)_stringForCString:(const char *)cString; + +@end + + +/** + * Set up a static function to allow fast calling with cached selectors + */ +static inline const char* _cStringForStringWithEncoding(NSString* aString, NSStringEncoding anEncoding, NSUInteger *cStringLengthPointer) +{ + static Class cachedClass; + static IMP cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedClass) cachedClass = [SPMySQLConnection class]; + if (!cachedSelector) cachedSelector = @selector(_cStringForString:usingEncoding:returningLengthAs:); + if (!cachedMethodPointer) cachedMethodPointer = [SPMySQLConnection methodForSelector:cachedSelector]; + + return (const char *)(*cachedMethodPointer)(cachedClass, cachedSelector, aString, anEncoding, cStringLengthPointer); +} diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m new file mode 100644 index 00000000..0a3cf99b --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m @@ -0,0 +1,97 @@ +// +// $Id$ +// +// Encoding.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 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 + +// This class is private to the framework. + +#import "Conversion.h" + +@implementation SPMySQLConnection (Conversion) + +/** + * Converts an NSString to a null-terminated C string, using the supplied encoding. + * Uses lossy conversion, so if a string cannot be entirely converted using + * the current encoding, a representation will be returned rather than null. + * The returned cString will correctly preserve any nul characters within the string, + * which prevents the use of faster functions like [NSString cStringUsingEncoding:]. + * Pass in the third parameter to receive the length of the converted string, or pass + * in NULL if you do not want this information. + */ ++ (const char *)_cStringForString:(NSString *)aString usingEncoding:(NSStringEncoding)anEncoding returningLengthAs:(NSUInteger *)cStringLengthPointer +{ + + // Don't try and convert nil strings + if (!aString) return NULL; + + // Perform a lossy conversion, using NSData to do the hard work + NSData *convertedData = [aString dataUsingEncoding:anEncoding allowLossyConversion:YES]; + NSUInteger convertedDataLength = [convertedData length]; + + // Take the converted data - not null-terminated - and copy it to a null-terminated buffer + char *cStringBytes = malloc(convertedDataLength + 1); + memcpy(cStringBytes, [convertedData bytes], convertedDataLength); + cStringBytes[convertedDataLength] = 0L; + + if (cStringLengthPointer) *cStringLengthPointer = convertedDataLength+1; + + // Ensure the memory is autoreleased when needed, and return. + [NSData dataWithBytesNoCopy:cStringBytes length:convertedDataLength+1 freeWhenDone:YES]; + return cStringBytes; +} + +/** + * Converts an NSString to a null-terminated C string, using the current + * connection encoding. + */ +- (const char *)_cStringForString:(NSString *)aString +{ + + // Use a cached reference to avoid dynamic method overhead + return _cStringForStringWithEncoding(aString, stringEncoding, NULL); +} + +/** + * Converts a C string to an NSString using the supplied encoding. + * This method *will not* correctly preserve nul characters within c strings; instead + * the first nul character within the string will be treated as the line ending. This + * is unavoidable without supplying a string length, so this method should not be widely + * used for actual data conversion. + */ +- (NSString *)_stringForCString:(const char *)cString +{ + + // Don't try and convert null strings + if (cString == NULL) return nil; + + return [NSString stringWithCString:cString encoding:stringEncoding]; +} + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h new file mode 100644 index 00000000..332b2680 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h @@ -0,0 +1,49 @@ +// +// $Id$ +// +// Databases & Tables.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 11, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Databases_and_Tables) + +// Database selection +- (BOOL)selectDatabase:(NSString *)aDatabase; + +// Database lists +- (NSArray *)databases; +- (NSArray *)databasesLike:(NSString *)nameLikeString; + +// Table lists +- (NSArray *)tables; +- (NSArray *)tablesLike:(NSString *)nameLikeString; +- (NSArray *)tablesFromDatabase:(NSString *)aDatabase; +- (NSArray *)tablesLike:(NSString *)nameLikeString fromDatabase:(NSString *)aDatabase; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m new file mode 100644 index 00000000..a95e060e --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m @@ -0,0 +1,258 @@ +// +// $Id$ +// +// Databases & Tables.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 11, 2012 +// Copyright (c) 2012 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 + +#import "Databases & Tables.h" +#import "SPMySQL Private APIs.h" + +@implementation SPMySQLConnection (Databases_and_Tables) + +#pragma mark - +#pragma mark Database selection + +/** + * Selects the database the connection should work with. Typically, a database should be + * set on a connection before any database-specific queries are run. + * Returns whether the database was correctly set or not. + * As MySQL does not support deselecting databases, a nil databaseName will return NO. + */ +- (BOOL)selectDatabase:(NSString *)aDatabase +{ + + // If no database was supplied, can't deselected - return NO. + if (!aDatabase) return NO; + + // Database selection should be made in UTF8 to avoid name encoding issues + BOOL encodingChangeRequired = [self _storeAndAlterEncodingToUTF8IfRequired]; + + // Attempt to select the supplied database + [self queryString:[NSString stringWithFormat:@"USE %@", [aDatabase mySQLBacktickQuotedString]]]; + + // If selecting the database failed, return failure. + if ([self queryErrored]) { + + // If the encoding needs to be restored, the error message and ID have to be stored so the + // actual error is still available to inspect on the class... + if (encodingChangeRequired) { + NSString *theErrorString = [self lastErrorMessage]; + NSUInteger theErrorID = [self lastErrorID]; + + [self restoreStoredEncoding]; + + [self _updateLastErrorMessage:theErrorString]; + [self _updateLastErrorID:theErrorID]; + } + + return NO; + } + + // Restore the connection encoding if necessary + if (encodingChangeRequired) [self restoreStoredEncoding]; + + // Store new database name and return success + if (database) [database release]; + database = [[NSString alloc] initWithString:aDatabase]; + + return YES; +} + +#pragma mark - +#pragma mark Database lists + +/** + * Retrieve an array of databases available to the current user, ordered as MySQL + * returns them. + * If an error occurred while retrieving the list of databases, nil will be returned; + * if no databases are available, an empty array will be returned. + */ +- (NSArray *)databases +{ + + // Wrap the related databasesLike: function to avoid code duplication + return [self databasesLike:nil]; +} + +/** + * Retrieve an array of databases whose names are matched against the supplied name + * using MySQL LIKE syntax (with wildcard support for % and _). If no name is supplied, + * all databases will be returned, in the order that MySQL returns them. + * If an error occurred while retrieving the list of databases, nil will be returned; + * if no matching databases are available, an empty array will be returned. + */ +- (NSArray *)databasesLike:(NSString *)nameLikeString +{ + NSMutableArray *databaseList = nil; + + // Database display should be made in UTF8 to avoid name encoding issues + BOOL encodingChangeRequired = [self _storeAndAlterEncodingToUTF8IfRequired]; + + // Build the query as appropriate + NSMutableString *databaseQuery = [NSMutableString stringWithString:@"SHOW DATABASES"]; + if ([nameLikeString length]) { + [databaseQuery appendFormat:@" LIKE %@", [nameLikeString mySQLTickQuotedString]]; + } + + // Perform the query and record state + SPMySQLResult *databaseResult = [self queryString:databaseQuery]; + [databaseResult setDefaultRowReturnType:SPMySQLResultRowAsArray]; + + // Retrieve the result into an array if the query was successful + if (![self queryErrored]) { + databaseList = [NSMutableArray arrayWithCapacity:(NSUInteger)[databaseResult numberOfRows]]; + for (NSArray *dbRow in databaseResult) { + [databaseList addObject:[dbRow objectAtIndex:0]]; + } + } + + // Restore the connection encoding if necessary + if (encodingChangeRequired) [self restoreStoredEncoding]; + + return databaseList; +} + +#pragma mark - +#pragma mark Table lists + +/** + * Retrieve an array of tables in the currently selected database, ordered as MySQL + * returns them. + * If an error occurred while retrieving the list of tables, nil will be returned; + * if no tables are present, an empty array will be returned. + */ +- (NSArray *)tables +{ + + // Wrap the related tablesLike:fromDatabase: function to avoid code duplication + return [self tablesLike:nil fromDatabase:nil]; +} + +/** + * Retrieve an array of tables in the currently selected database whose names are + * matched against the supplied name using MySQL LIKE syntax (with wildcard + * support for % and _). If no name is supplied, all tables in the selected + * database will be returned, in the order that MySQL returns them. + * If an error occurred while retrieving the list of tables, nil will be returned; + * if no matching tables are present, an empty array will be returned. + */ +- (NSArray *)tablesLike:(NSString *)nameLikeString +{ + + // Wrap the related tablesLike:fromDatabase: function to avoid code duplication + return [self tablesLike:nameLikeString fromDatabase:nil]; + +} + +/** + * Retrieve an array of tables in the specified database, ordered as MySQL returns them. + * If no database is specified, the current database will be used. + * If an error occurred while retrieving the list of tables, nil will be returned; + * if no tables are present in the specified database, an empty array will be returned. + */ +- (NSArray *)tablesFromDatabase:(NSString *)aDatabase +{ + + // Wrap the related tablesLike:fromDatabase: function to avoid code duplication + return [self tablesLike:nil fromDatabase:aDatabase]; + +} + +/** + * Retrieve an array of tables in the specified database whose names are matched + * against the supplied name using MySQL LIKE syntax (with wildcard support + * for % and _). If no name is supplied, all tables in the specified database + * will be returned, in the order that MySQL returns them. + * If no database is specified, the current database will be used. + * If an error occurred while retrieving the list of tables, nil will be returned; + * if no matching tables are present in the specified database, an empty array + * will be returned. + */ +- (NSArray *)tablesLike:(NSString *)nameLikeString fromDatabase:(NSString *)aDatabase +{ + NSMutableArray *tableList = nil; + + // Table display should be made in UTF8 to avoid name encoding issues + BOOL encodingChangeRequired = [self _storeAndAlterEncodingToUTF8IfRequired]; + + // Build up the table lookup query + NSMutableString *tableQuery = [NSMutableString stringWithString:@"SHOW TABLES"]; + if ([aDatabase length]) { + [tableQuery appendFormat:@" FROM %@", [aDatabase mySQLBacktickQuotedString]]; + } + if ([nameLikeString length]) { + [tableQuery appendFormat:@" LIKE %@", [nameLikeString mySQLTickQuotedString]]; + } + + // Perform the query and record state + SPMySQLResult *tableResult = [self queryString:tableQuery]; + [tableResult setDefaultRowReturnType:SPMySQLResultRowAsArray]; + + // Retrieve the result into an array if the query was successful + if (![self queryErrored]) { + tableList = [NSMutableArray arrayWithCapacity:(NSUInteger)[tableResult numberOfRows]]; + for (NSArray *tableRow in tableResult) { + [tableList addObject:[tableRow objectAtIndex:0]]; + } + } + + // Restore the connection encoding if necessary + if (encodingChangeRequired) [self restoreStoredEncoding]; + + return tableList; +} + +@end + +#pragma mark - +#pragma mark Private API + +@implementation SPMySQLConnection (Databases_and_Tables_Private_API) + +/** + * A number of queries regarding database or table information have to be made in UTF8, not + * in the connection encoding, so that names can be fully displayed and used even if they + * use a different encoding. This provides a convenience method to check whether a change + * is required; if so, the current encoding is stored, the encoding is changed, and YES is + * returned so the process can be reversed afterwards. + */ +- (BOOL)_storeAndAlterEncodingToUTF8IfRequired +{ + + // If the encoding is already UTF8, no change is required. + if ([encoding isEqualToString:@"utf8"] && !encodingUsesLatin1Transport) return NO; + + // Store the current encoding for restoration afterwards, and update encoding + [self storeEncodingForRestoration]; + [self setEncoding:@"utf8"]; + + return YES; +} + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h new file mode 100644 index 00000000..cf132fcf --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h @@ -0,0 +1,36 @@ +// +// $Id$ +// +// Delegate & Proxy.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Delegate_and_Proxy) + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m new file mode 100644 index 00000000..3ac013cc --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m @@ -0,0 +1,133 @@ +// +// $Id$ +// +// Delegate & Proxy.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 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 + +#import "Delegate & Proxy.h" +#import "SPMySQL Private APIs.h" + +@implementation SPMySQLConnection (Delegate_and_Proxy) + +#pragma mark - +#pragma mark Connection delegate + +/** + * Override the synthesized delegate setter, to allow optimisations to oft-made + * checks by precacheing availability. + */ +- (void)setDelegate:(NSObject *)aDelegate +{ + delegate = aDelegate; + + // Cache whether the delegate implements certain delegate methods + delegateSupportsWillQueryString = [delegate respondsToSelector:@selector(willQueryString:connection:)]; + delegateSupportsConnectionLost = [delegate respondsToSelector:@selector(connectionLost:)]; +} + +#pragma mark - +#pragma mark Connection proxy + +/** + * Override the synthesized proxy setter, to record the initial state and to + * set the state change selector. + */ +- (void)setProxy:(NSObject *)aProxy +{ + proxy = [aProxy retain]; + previousProxyState = [aProxy state]; + + [proxy setConnectionStateChangeSelector:@selector(_proxyStateChange:) delegate:self]; +} + +@end + +#pragma mark - + +@implementation SPMySQLConnection (Delegate_and_Proxy_Private_API) + +/** + * Handle any state changes in the associated connection proxy. + */ +- (void)_proxyStateChange:(NSObject *)aProxy +{ + + // Perform no actions if this isn't the current connection proxy, or if notifications + // are currently set to be ignored + if (aProxy != proxy || proxyStateChangeNotificationsIgnored) return; + + SPMySQLConnectionProxyState newState = [aProxy state]; + + // If the connection proxy disconnects, trigger a reconnect; use a new thread to allow the + // main thread to process events as required. + if (state == SPMySQLConnected && newState == SPMySQLProxyIdle && previousProxyState == SPMySQLProxyConnected) { + + // Clear the state change selector on the proxy until a connection is re-established + proxyStateChangeNotificationsIgnored = YES; + + // Trigger a reconnect + [NSThread detachNewThreadSelector:@selector(reconnect) toTarget:self withObject:nil]; + } + + // Update the state record + previousProxyState = newState; +} + +/** + * Ask the delegate for the connection lost decision. This can be called from + * any thread, and will call itself on the main thread if necessary, updating a global + * variable which is then returned on the child thread. + */ +- (SPMySQLConnectionLostDecision)_delegateDecisionForLostConnection +{ + SPMySQLConnectionLostDecision theDecision = SPMySQLConnectionLostDisconnect; + + // If on the main thread, ask the delegate directly. + if ([NSThread isMainThread]) { + [delegateDecisionLock lock]; + lastDelegateDecisionForLostConnection = [delegate connectionLost:self]; + theDecision = lastDelegateDecisionForLostConnection; + [delegateDecisionLock unlock]; + + // Otherwise call ourself on the main thread, waiting until the reply is received. + } else { + + // First check whether the application is in a modal state; if so, wait + while ([NSApp modalWindow]) usleep(100000); + + [self performSelectorOnMainThread:@selector(_delegateDecisionForLostConnection) withObject:nil waitUntilDone:YES]; + [delegateDecisionLock lock]; + theDecision = lastDelegateDecisionForLostConnection; + [delegateDecisionLock unlock]; + } + + return theDecision; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h new file mode 100644 index 00000000..bb5bf25d --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// Encoding.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Encoding) + +// Current connection encoding information +- (NSString *)encoding; +- (NSStringEncoding)stringEncoding; +- (BOOL)encodingUsesLatin1Transport; + +// Setting connection encoding +- (BOOL)setEncoding:(NSString *)theEncoding; +- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1; + +// Encoding storage and restoration +- (void)storeEncodingForRestoration; +- (void)restoreStoredEncoding; + +// Encoding conversion ++ (NSStringEncoding)stringEncodingForMySQLCharset:(const char *)mysqlCharset; ++ (NSString *)mySQLCharsetForStringEncoding:(NSStringEncoding)aStringEncoding; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m new file mode 100644 index 00000000..665e7697 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m @@ -0,0 +1,414 @@ +// +// $Id$ +// +// Encoding.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +#import "Encoding.h" + +@implementation SPMySQLConnection (Encoding) + +#pragma mark - +#pragma mark Current connection encoding information + +/** + * Returns the name of the current encoding - the MySQL character set - in + * use by the connection. + */ +- (NSString *)encoding +{ + return [NSString stringWithString:encoding]; +} + +/** + * Returns the NSStringEncoding currently in use by the connection to process + * queries and results. + */ +- (NSStringEncoding)stringEncoding +{ + return stringEncoding; +} + +/** + * Returns whether the connection is set to use Latin1 transport for queries and + * results. + * Latin1 transport is a compatibility mode in place for compatibility with older + * incorrect setups, where databases and clients might both be set to use UTF8 (or + * other encodings) for storing and retrieving data, but the MySQL link was never + * set to UTF8 mode; as a result, multibyte characters where split by the connection + * into pairs of characters, resulting in malformed storage. The data works + * correctly if written and read in the same way, so this mode allows correct display + * of that data. + */ +- (BOOL)encodingUsesLatin1Transport +{ + return encodingUsesLatin1Transport; +} + +#pragma mark - +#pragma mark Setting connection encoding + +/** + * Set the name of the encoding - the MySQL character set - that the connection + * should use. If an encoding not recognised by the server is supplied, NO is + * returned. + * Calling this resets whether the connection should use Latin1 transport to NO. + */ +- (BOOL)setEncoding:(NSString *)theEncoding +{ + + // MySQL versions prior to 4.1 don't support encoding changes; return NO on those + // versions. + if (![self serverVersionIsGreaterThanOrEqualTo:4 minorVersion:1 releaseVersion:0]) { + return NO; + } + + // If the supplied encoding is already set, return success + if ([encoding isEqualToString:theEncoding] && !encodingUsesLatin1Transport) { + return YES; + } + + // Run a query to set the connection encoding + [self queryString:[NSString stringWithFormat:@"SET NAMES %@", [theEncoding mySQLTickQuotedString]]]; + + // If the query errored, no encoding change occurred - return failure. + if ([self queryErrored]) return NO; + + // Connection encoding was successfully set, update the instance settings, + // and return success. + [encoding release]; + encoding = [[NSString alloc] initWithString:theEncoding]; + stringEncoding = [SPMySQLConnection stringEncodingForMySQLCharset:[theEncoding UTF8String]]; + encodingUsesLatin1Transport = NO; + + return YES; +} + +/** + * Sets the connection to use Latin1 transport for queries and results or not. All + * encodings will default to not use Latin1 transport.. + * Latin1 transport is a compatibility mode in place for compatibility with older + * incorrect setups, where databases and clients might both be set to use UTF8 (or + * other encodings) for storing and retrieving data, but the MySQL link was never + * set to UTF8 mode; as a result, multibyte characters where split by the connection + * into pairs of characters, resulting in malformed storage. The data works + * correctly if written and read in the same way, so this mode allows correct display + * of that data. + */ +- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1 +{ + + // MySQL versions prior to 4.1 don't support encoding changes; return NO on those + // versions. + if (![self serverVersionIsGreaterThanOrEqualTo:4 minorVersion:1 releaseVersion:0]) { + return NO; + } + + // If the Latin1 mode is already set, return success + if (encodingUsesLatin1Transport == useLatin1) { + return YES; + } + + // If disabling Latin1 transport, just restore the connection encoding + if (!useLatin1) { + return [self setEncoding:encoding]; + } + + // Otherwise attempt to set Latin1 transport. First, the result set encoding. + [self queryString:@"SET CHARACTER_SET_RESULTS=latin1"]; + + // If that failed, no encoding change occurred - return failure. + if ([self queryErrored]) return NO; + + // Next, change the client character set, to also amend queries sent. + [self queryString:@"SET CHARACTER_SET_CLIENT=latin1"]; + + // If that failed, encoding details are in a partial state - attempt to restore + // the original details before returning failure. + if ([self queryErrored]) { + [self setEncoding:encoding]; + return NO; + } + + // Connecting encoding transport was successfully set, update the instance settings, + // and return success. + encodingUsesLatin1Transport = YES; + return YES; +} + +#pragma mark - +#pragma mark Encoding storage and restoration + + +/** + * Store a previous encoding setting, to allow it to be easily restored + * later - used when the encoding needs to be temporarily changed. + */ +- (void)storeEncodingForRestoration +{ + if (previousEncoding) [previousEncoding release]; + previousEncoding = [[NSString alloc] initWithString:encoding]; + previousEncodingUsesLatin1Transport = encodingUsesLatin1Transport; +} + +/** + * Restore a previously stored encoding setting, if available. Used in + * conjunection with -storeEncodingForRestoration for when the encoding needs + * to be temporarily changed. + */ +- (void)restoreStoredEncoding +{ + if (!previousEncoding || state == SPMySQLDisconnected || state == SPMySQLDisconnecting) { + return; + } + + [self setEncoding:previousEncoding]; + [self setEncodingUsesLatin1Transport:previousEncodingUsesLatin1Transport]; +} + +#pragma mark - +#pragma mark Encoding conversion + +/** + * Map MySQL encodings to NSStringEncodings, using the list of encodings sourced + * from http://dev.mysql.com/doc/refman/5.6/en/charset-charsets.html and the same + * list on previous MySQL versions. Older versions also had less-standard lists, + * such as the charset options listed on + * http://dev.mysql.com/doc/refman/4.1/en/charset-map.html . + * For each, the equivalent NSStringEncoding, or conversion from CfStringEncoding, + * was found. + * If a supplied character set can not be matched, logs an error and falls back + * to UTF8 encoding. + */ ++ (NSStringEncoding)stringEncodingForMySQLCharset:(const char *)mysqlCharset +{ + + // Handle the most common cases first + if (!strcmp(mysqlCharset, "utf8")) { + return NSUTF8StringEncoding; + } else if (!strcmp(mysqlCharset, "latin1")) { + return NSISOLatin1StringEncoding; + } else if (!strcmp(mysqlCharset, "ascii")) { + return NSASCIIStringEncoding; + + // Work down the rest of the 4.1+ charsets + } else if (!strcmp(mysqlCharset, "big5")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingBig5); + } else if (!strcmp(mysqlCharset, "dec8")) { + return NSISOLatin1StringEncoding; // Not exact, but very close + } else if (!strcmp(mysqlCharset, "cp850")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingDOSLatin1); + } else if (!strcmp(mysqlCharset, "koi8r")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingKOI8_R); + } else if (!strcmp(mysqlCharset, "latin2")) { + return NSISOLatin2StringEncoding; + } else if (!strcmp(mysqlCharset, "ujis")) { + return NSJapaneseEUCStringEncoding; + } else if (!strcmp(mysqlCharset, "sjis")) { + return NSShiftJISStringEncoding; + } else if (!strcmp(mysqlCharset, "hebrew")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingISOLatinHebrew); + } else if (!strcmp(mysqlCharset, "tis620")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingISOLatinThai); + } else if (!strcmp(mysqlCharset, "euckr")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingEUC_KR); + } else if (!strcmp(mysqlCharset, "koi8u")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingKOI8_U); + } else if (!strcmp(mysqlCharset, "gb2312")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingGB_2312_80); + } else if (!strcmp(mysqlCharset, "greek")) { + return NSWindowsCP1253StringEncoding; + } else if (!strcmp(mysqlCharset, "cp1250")) { + return NSWindowsCP1250StringEncoding; + } else if (!strcmp(mysqlCharset, "gbk")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingGBK_95); + } else if (!strcmp(mysqlCharset, "latin5")) { + return NSWindowsCP1254StringEncoding; + } else if (!strcmp(mysqlCharset, "ucs2")) { + return NSUnicodeStringEncoding; + } else if (!strcmp(mysqlCharset, "cp866")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingDOSRussian); + } else if (!strcmp(mysqlCharset, "macce")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingMacCentralEurRoman); + } else if (!strcmp(mysqlCharset, "macroman")) { + return NSMacOSRomanStringEncoding; + } else if (!strcmp(mysqlCharset, "cp852")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingDOSLatin2); + } else if (!strcmp(mysqlCharset, "latin7")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingISOLatin7); + } else if (!strcmp(mysqlCharset, "utf8mb4")) { + return NSUnicodeStringEncoding; // Is this correct? + } else if (!strcmp(mysqlCharset, "cp1251")) { + return NSWindowsCP1251StringEncoding; + } else if (!strcmp(mysqlCharset, "utf16")) { + return NSUnicodeStringEncoding; + } else if (!strcmp(mysqlCharset, "utf16le")) { + return NSUTF16LittleEndianStringEncoding; + } else if (!strcmp(mysqlCharset, "cp1256")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingWindowsArabic); + } else if (!strcmp(mysqlCharset, "cp1257")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingWindowsBalticRim); + } else if (!strcmp(mysqlCharset, "utf32")) { + return NSUTF32StringEncoding; + } else if (!strcmp(mysqlCharset, "binary")) { + return NSUTF8StringEncoding; + } else if (!strcmp(mysqlCharset, "cp932")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingDOSJapanese); + } else if (!strcmp(mysqlCharset, "eucjpms")) { + return CFStringConvertEncodingToNSStringEncoding(NSJapaneseEUCStringEncoding); + + // Continue with old < 4.1 mappings + } else if (!strcmp(mysqlCharset, "czech")) { + return NSISOLatin2StringEncoding; + } else if (!strcmp(mysqlCharset, "dos")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingDOSLatin1); + } else if (!strcmp(mysqlCharset, "german1")) { + return NSISOLatin1StringEncoding; + } else if (!strcmp(mysqlCharset, "usa7")) { + return NSASCIIStringEncoding; + } else if (!strcmp(mysqlCharset, "danish")) { + return NSISOLatin1StringEncoding; + } else if (!strcmp(mysqlCharset, "win1251")) { + return NSWindowsCP1251StringEncoding; + } else if (!strcmp(mysqlCharset, "euc_kr")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingEUC_KR); + } else if (!strcmp(mysqlCharset, "estonia")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingISOLatin7); + } else if (!strcmp(mysqlCharset, "hungarian")) { + return NSISOLatin2StringEncoding; + } else if (!strcmp(mysqlCharset, "koi8_ru")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingKOI8_R); + } else if (!strcmp(mysqlCharset, "koi8_ukr")) { + return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingKOI8_U); + } else if (!strcmp(mysqlCharset, "win1251ukr")) { + return NSWindowsCP1251StringEncoding; + } else if (!strcmp(mysqlCharset, "win1250")) { + return NSWindowsCP1250StringEncoding; + } else if (!strcmp(mysqlCharset, "croat")) { + return NSISOLatin2StringEncoding; + } else if (!strcmp(mysqlCharset, "latin1_de")) { + return NSISOLatin1StringEncoding; + } + + /** + * Finally, certain other encodings, including the following: + * hp8 + * swe7 + * armscii8 + * keybcs2 + * geostd8 + * ...don't appear to have OS X equivalents; for these and unhandled, log and + * fall back to UTF8 handling. + */ + NSLog(@"SPMySQL Framework has encountered the MySQL encoding '%s' which it is unable to process correctly; falling back to UTF8 mapping.", mysqlCharset); + return NSUTF8StringEncoding; +} + +/** + * Match a supplied NSStringEncoding to a MySQL character set, returning the MySQL + * name of that character set as an NSString. + * If the supplied NSStringEncoding could not be matched, logs an error and returns nil. + */ ++ (NSString *)mySQLCharsetForStringEncoding:(NSStringEncoding)aStringEncoding +{ + + // Switch through the list of NSStringEncodings from NSString, returning the most + // appropriate encoding for each + switch (aStringEncoding) { + + case NSASCIIStringEncoding: + return @"ascii"; + + case NSJapaneseEUCStringEncoding: + return @"ujis"; + + case NSUTF8StringEncoding: + return @"utf8"; + + case NSISOLatin1StringEncoding: + return @"latin1"; + + case NSNonLossyASCIIStringEncoding: + return @"utf8"; + + case NSShiftJISStringEncoding: + return @"sjis"; + + case NSISOLatin2StringEncoding: + return @"latin2"; + + case NSUnicodeStringEncoding: + return @"ucs2"; + + case NSWindowsCP1251StringEncoding: + return @"cp1251"; + + case NSWindowsCP1252StringEncoding: + return @"latin1"; + + case NSWindowsCP1253StringEncoding: + return @"greek"; + + case NSWindowsCP1254StringEncoding: + return @"latin5"; + + case NSWindowsCP1250StringEncoding: + return @"cp1250"; + + case NSMacOSRomanStringEncoding: + return @"macroman"; + + case NSUTF16BigEndianStringEncoding: + return @"utf16"; + + case NSUTF16LittleEndianStringEncoding: + return @"utf16le"; + + case NSUTF32StringEncoding: + return @"utf32"; + + case NSUTF32BigEndianStringEncoding: + return @"utf32"; + } + + /** + * Certain string encodings, including the following: + * NSNEXTSTEPStringEncoding + * NSSymbolStringEncoding + * NSISO2022JPStringEncoding + * NSUTF32LittleEndianStringEncoding + * + * ...don't have equivalents; similarly, many CFStringEncodings aren't yet + * matched. For those, log and return nil. + */ + NSLog(@"SPMySQL Framework was asked for the MySQL charset for the string encoding '%llu', which is currently unhandled.", (unsigned long long)aStringEncoding); + return nil; +} +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h new file mode 100644 index 00000000..90e11179 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h @@ -0,0 +1,41 @@ +// +// $Id$ +// +// Locking.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 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 + +// This class is private to the framework. + +@interface SPMySQLConnection (Locking) + +- (void)_lockConnection; +- (BOOL)_tryLockConnection; +- (void)_unlockConnection; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m new file mode 100644 index 00000000..d654066b --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m @@ -0,0 +1,104 @@ +// +// $Id$ +// +// Locking.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 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 + +// This class is private to the framework. + +#import "Locking.h" +#import "SPMySQL Private APIs.h" + +@implementation SPMySQLConnection (Locking) + + +/** + * Lock the connection. This must be done before performing any operation + * that is not thread safe, eg. performing queries or pinging. + */ +- (void)_lockConnection +{ + + // We can only start a query when the condition is SPMySQLConnectionIdle + [connectionLock lockWhenCondition:SPMySQLConnectionIdle]; + + // Set the condition to SPMySQLConnectionBusy + [connectionLock unlockWithCondition:SPMySQLConnectionBusy]; +} + +/** + * Attempt to lock the connection. If the connection is idle (unlocked), this method + * locks the connection and returns YES for success. The connection must afterward + * be unlocked using unlockConnection. If the connection is currently busy (locked), + * this method immediately returns NO and doesn't lock the connection. + */ +- (BOOL)_tryLockConnection +{ + + // If the connection is already is use, return failure + if (![connectionLock tryLockWhenCondition:SPMySQLConnectionIdle]) { + return NO; + } + + // We're allowed to use the connection; set it to busy, and return success + [connectionLock unlockWithCondition:SPMySQLConnectionBusy]; + return YES; +} + + +/** + * Unlock the connection. + */ +- (void)_unlockConnection +{ + + // Always lock the conditional lock before proceeding + [connectionLock lock]; + + // Check if the connection actually was busy. If it wasn't busy, + // it means the connection may have been unlocked twice. This is + // potentially dangerous, so we log this to the console + if ([connectionLock condition] != SPMySQLConnectionBusy) { + NSLog(@"SPMySQLConnection: Tried to unlock the connection, but it wasn't locked."); + } + + // Since we connected with CLIENT_MULTI_RESULT, we must make sure there are not more results! + // This is still a bit of a dirty hack + if (state == SPMySQLConnected + && mySQLConnection && mySQLConnection->net.vio && mySQLConnection->net.buff && mysql_more_results(mySQLConnection)) + { + NSLog(@"SPMySQLConnection: Discarding unretrieved results. This is currently normal when using CALL."); + [self _flushMultipleResultSets]; + } + + // Tell everyone that the connection is available again + [connectionLock unlockWithCondition:SPMySQLConnectionIdle]; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h new file mode 100644 index 00000000..faa667d8 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h @@ -0,0 +1,40 @@ +// +// $Id$ +// +// Max Packet Size.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Max_Packet_Size) + +- (NSUInteger)maxQuerySize; +- (BOOL)isMaxQuerySizeEditable; +- (NSUInteger)setGlobalMaxQuerySize:(NSUInteger)newMaxSize; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m new file mode 100644 index 00000000..e0bfef52 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m @@ -0,0 +1,196 @@ +// +// $Id$ +// +// Max Packet Size.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 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 + + +#import "Max Packet Size.h" +#import "SPMySQL Private APIs.h" + +@implementation SPMySQLConnection (Max_Packet_Size) + +/** + * Retrieve the current maximum query size (MySQL's max_allowed_packet), as cached + * by the class. If the connection has been unable to retrieve this value, the + * default of 1MB will be returned. + */ +- (NSUInteger)maxQuerySize +{ + return maxQuerySize; +} + +/** + * Retrieve whether the server's maximum query size (MySQL's max_allowed_packet) is + * editable by the current user. + */ +- (BOOL)isMaxQuerySizeEditable +{ + if (!maxQuerySizeEditabilityChecked) { + [self _updateMaxQuerySizeEditability]; + } + + return maxQuerySizeIsEditable; +} + +/** + * Set the servers's global maximum query size - MySQL's max_allowed_packed - to the + * supplied size. Note that this *does not* affect the current connection; a reconnection + * is required to pick up the new size setting. As a result it may be important to restore + * the connection size after use. + * Validates the supplied size (eg 1GB limit) and applies it if appropriate, returning + * the set query size or NSNotFound on error. + */ +- (NSUInteger)setGlobalMaxQuerySize:(NSUInteger)newMaxSize +{ + + // Perform basic validation. First, ensure the max query size is editable + if (![self isMaxQuerySizeEditable]) return NSNotFound; + + // Validate sizes + if (newMaxSize < 1024) return NSNotFound; + if (newMaxSize > (1024 * 1024 * 1024)) newMaxSize = 1024 * 1024 * 1024; + + // Perform a standard query to set the new size + [self queryString:[NSString stringWithFormat:@"SET GLOBAL max_allowed_packet = %lu", newMaxSize]]; + + // On failure, return NSNotFound - error state will have automatically been set + if ([self queryErrored]) return NSNotFound; + + // Otherwise, set the local instance variable and return success + maxQuerySize = newMaxSize; + return maxQuerySize; +} + +@end + +#pragma mark - + +@implementation SPMySQLConnection (Max_Packet_Size_Private_API) + +/** + * Update the max_allowed_packet size - the largest supported query size - from the server. + */ +- (void)_updateMaxQuerySize +{ + + // Determine which query to run based on server version + NSString *packetQueryString; + if ([self serverMajorVersion] == 3) { + packetQueryString = @"SHOW VARIABLES LIKE 'max_allowed_packet'"; + } else { + packetQueryString = @"SELECT @@global.max_allowed_packet"; + } + + // Make a standard query to the server to retrieve the information + SPMySQLResult *result = [self queryString:packetQueryString]; + [result setReturnDataAsStrings:YES]; + + // Get the maximum size string + NSString *maxQuerySizeString = nil; + if ([self serverMajorVersion] == 3) { + maxQuerySizeString = [[result getRowAsArray] objectAtIndex:1]; + } else { + maxQuerySizeString = [[result getRowAsArray] objectAtIndex:0]; + } + + // If a valid size was returned, update the instance variable + if (maxQuerySizeString) { + maxQuerySize = (NSUInteger)[maxQuerySizeString integerValue]; + } +} + +/** + * Perform a query to determine whether the current user has permission to edit the + * max_allowed_packet setting for their connection. + */ +- (void)_updateMaxQuerySizeEditability +{ + [self queryString:@"SET GLOBAL max_allowed_packet = @@global.max_allowed_packet"]; + maxQuerySizeIsEditable = ![self queryErrored]; + maxQuerySizeEditabilityChecked = YES; +} + +/** + * Attempts to change the maximum query size in order to allow a query to be performed. + * Returns whether the change was successfully made. + */ +- (BOOL)_attemptMaxQuerySizeIncreaseTo:(NSUInteger)targetSize +{ + + // If the query size is editable, attempt to increase the size + if ([self isMaxQuerySizeEditable]) { + NSUInteger newSize = [self setGlobalMaxQuerySize:targetSize]; + if (newSize != NSNotFound) { + + // Successfully increased the global size - reconnect to use it, and return success + [self reconnect]; + return YES; + } + } + + // Can not, or failed to, increase the max query size. Record an error message. + NSString *errorMessage = [NSString stringWithFormat:NSLocalizedString(@"The query length of %lu bytes is larger than max_allowed_packet size (%lu).", @"error message if max_allowed_packet < query size"), targetSize, maxQuerySize]; + [self _updateLastErrorMessage:errorMessage]; + + // Update delegate error if it supports the protocol + if ([delegate respondsToSelector:@selector(queryGaveError:connection:)]) { + [delegate queryGaveError:errorMessage connection:self]; + } + + // Display an alert as this is a special failure + if ([delegate respondsToSelector:@selector(showErrorWithTitle:message:)]) { + [delegate showErrorWithTitle:NSLocalizedString(@"Error", @"error") message:errorMessage]; + } else { + NSRunAlertPanel(NSLocalizedString(@"Error", @"error"), errorMessage, @"OK", nil, nil); + } + + return NO; +} + +/** + * Restore a maximum query size after temporarily increasing it for a query. This action + * may be called directly after a query, or may be before the next query if a streaming result + * had to be used. + */ +- (void)_restoreMaximumQuerySizeAfterQuery +{ + + // Return if no action needs to be performed + if (queryActionShouldRestoreMaxQuerySize == NSNotFound) return; + + // Move the target size to a local variable to prevent looping + NSUInteger targetMaxQuerySize = queryActionShouldRestoreMaxQuerySize; + queryActionShouldRestoreMaxQuerySize = NSNotFound; + + // Enact the change + [self setGlobalMaxQuerySize:targetMaxQuerySize]; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h new file mode 100644 index 00000000..3788c653 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h @@ -0,0 +1,58 @@ +// +// $Id$ +// +// Ping & KeepAlive.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + +// This class is private to the framework. + +typedef struct { + MYSQL *mySQLConnection; + BOOL *keepAlivePingActivePointer; + BOOL *keepAliveLastPingSuccessPointer; +} SPMySQLConnectionPingDetails; + +@interface SPMySQLConnection (Ping_and_KeepAlive) + +// Setup functions +- (void)_initKeepAlivePingTimer; + +// Keepalive ping initialisation +- (void)_keepAlive:(NSTimer *)theTimer; +- (void)_threadedKeepAlive; + +// Master ping method +- (BOOL)_pingConnectionUsingLoopDelay:(NSUInteger)loopDelay; + +// Ping thread internals +void _backgroundPingTask(void *ptr); +void _forceThreadExit(int signalNumber); +void _pingThreadCleanup(void *pingDetails); + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m new file mode 100644 index 00000000..9e25edcb --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m @@ -0,0 +1,227 @@ +// +// $Id$ +// +// Ping & KeepAlive.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +#import "Ping & KeepAlive.h" +#import "Locking.h" +#import + +@implementation SPMySQLConnection (Ping_and_KeepAlive) + +#pragma mark - +#pragma mark Setup functions + +/** + * Set up the keepalive timer; this should be called on the main + * thread, to ensure the timer isn't descheduled when child threads + * terminate. + */ +- (void)_initKeepAlivePingTimer +{ + keepAliveTimer = [[NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(_keepAlive:) userInfo:nil repeats:YES] retain]; +} + +#pragma mark - +#pragma mark Keepalive ping initialisation + +/** + * Keeps the connection alive by running a ping. + * This method is called every ten seconds and spawns a thread which determines + * whether or not it should perform a ping. + */ +- (void)_keepAlive:(NSTimer *)theTimer +{ + + // Do nothing if not connected or if keepalive is disabled + if (state != SPMySQLConnected || !useKeepAlive) return; + + // Check to see whether a ping is required. First, compare the last query + // and keepalive times against the keepalive interval. + // Compare against interval-1 to allow default keepalive intervals to repeat + // at the correct intervals (eg no timer interval delay). + uint64_t currentTime = mach_absolute_time(); + if (_elapsedSecondsSinceAbsoluteTime(lastConnectionUsedTime) < keepAliveInterval - 1 + || _elapsedSecondsSinceAbsoluteTime(lastKeepAliveTime) < keepAliveInterval - 1) + { + return; + } + + // Attempt to lock the connection. If the connection is currently busy, + // we don't need a ping. + if (![self _tryLockConnection]) return; + [self _unlockConnection]; + + // Store the ping time + lastKeepAliveTime = currentTime; + + [NSThread detachNewThreadSelector:@selector(_threadedKeepAlive) toTarget:self withObject:nil]; +} + +/** + * A threaded keepalive to avoid blocking the interface. Performs safety + * checks, and then creates a child pthread to actually ping the connection, + * forcing the thread to close after the timeout if it hasn't closed already. + */ +- (void)_threadedKeepAlive +{ + + // If the maximum number of ping failures has been reached, trigger a reconnect + if (keepAliveLastPingBlocked || keepAlivePingFailures >= 3) { + [self reconnect]; + return; + } + + // Otherwise, perform a background ping. + BOOL pingResult = [self _pingConnectionUsingLoopDelay:10000]; + if (pingResult) { + keepAlivePingFailures = 0; + } else { + keepAlivePingFailures++; + } +} + +#pragma mark - +#pragma mark Master ping method + +/** + * This function provides a method of pinging the remote server while also enforcing + * the specified connection time. This is required because low-level net reads can + * block indefinitely if the remote server disappears or on network issues - setting + * the MYSQL_OPT_READ_TIMEOUT (and the WRITE equivalent) would "fix" ping, but cause + * long queries to be terminated. + * The supplied loop delay number controls how tight the thread checking loop is, in + * microseconds, to allow differentiating foreground and background pings. + * Unlike mysql_ping, this function returns FALSE on failure and TRUE on success. + */ +- (BOOL)_pingConnectionUsingLoopDelay:(NSUInteger)loopDelay +{ + if (state != SPMySQLConnected) return NO; + + uint64_t pingStartTime_t; + double pingElapsedTime; + BOOL threadCancelled = NO; + + // Set up a query lock + [self _lockConnection]; + + keepAliveLastPingSuccess = NO; + keepAliveLastPingBlocked = NO; + keepAlivePingThreadActive = YES; + + // Use a ping timeout defaulting to thirty seconds, but using the connection timeout if set + NSUInteger pingTimeout = 30; + if (timeout > 0) pingTimeout = timeout; + + // Set up a struct containing details the ping task will need + SPMySQLConnectionPingDetails pingDetails; + pingDetails.mySQLConnection = mySQLConnection; + pingDetails.keepAliveLastPingSuccessPointer = &keepAliveLastPingSuccess; + pingDetails.keepAlivePingActivePointer = &keepAlivePingThreadActive; + + // Create a pthread for the ping + pthread_attr_t attr; + pthread_attr_init(&attr); + pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); + pthread_create(&keepAlivePingThread, &attr, (void *)&_backgroundPingTask, &pingDetails); + + // Record the ping start time + pingStartTime_t = mach_absolute_time(); + + // Loop until the ping completes + do { + usleep((useconds_t)loopDelay); + pingElapsedTime = _elapsedSecondsSinceAbsoluteTime(pingStartTime_t); + + // If the ping timeout has been exceeded, force a timeout; double-check that the + // thread is still active. + if (pingElapsedTime > pingTimeout && keepAlivePingThreadActive && !threadCancelled) { + pthread_cancel(keepAlivePingThread); + threadCancelled = YES; + + // If the timeout has been exceeded by an additional two seconds, and the thread is + // still active, kill the thread. This can occur in certain network conditions causing + // a blocking read. + } else if (pingElapsedTime > (pingTimeout + 2) && keepAlivePingThreadActive) { + pthread_kill(keepAlivePingThread, SIGUSR1); + keepAlivePingThreadActive = NO; + keepAliveLastPingBlocked = YES; + } + } while (keepAlivePingThreadActive); + + // Clean up + keepAlivePingThread = NULL; + pthread_attr_destroy(&attr); + + // Unlock the connection + [self _unlockConnection]; + + return keepAliveLastPingSuccess; +} + +#pragma mark - +#pragma mark Ping thread internals + +/** + * Actually perform a keepalive ping - intended for use within a pthread. + */ +void _backgroundPingTask(void *ptr) +{ + SPMySQLConnectionPingDetails *pingDetails = (SPMySQLConnectionPingDetails *)ptr; + + // Set up a cleanup routine + pthread_cleanup_push(_pingThreadCleanup, pingDetails); + + // Set up a signal handler for SIGUSR1, to handle forced timeouts. + signal(SIGUSR1, _forceThreadExit); + + // Perform a ping + *(pingDetails->keepAliveLastPingSuccessPointer) = (BOOL)(!mysql_ping(pingDetails->mySQLConnection)); + + // Call the cleanup routine + pthread_cleanup_pop(1); +} + +/** + * Support forcing a thread to exit as a result of a signal. + */ +void _forceThreadExit(int signalNumber) +{ + pthread_exit(NULL); +} + +void _pingThreadCleanup(void *pingDetails) +{ + SPMySQLConnectionPingDetails *pingDetailsStruct = pingDetails; + *(pingDetailsStruct->keepAlivePingActivePointer) = NO; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h new file mode 100644 index 00000000..ff55f796 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h @@ -0,0 +1,103 @@ +// +// $Id$ +// +// Querying & Preparation.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Querying_and_Preparation) + +// Data preparation +- (NSString *)escapeAndQuoteString:(NSString *)theString; +- (NSString *)escapeString:(NSString *)theString includingQuotes:(BOOL)includeQuotes; +- (NSString *)escapeAndQuoteData:(NSData *)theData; +- (NSString *)escapeData:(NSData *)theData includingQuotes:(BOOL)includeQuotes; + +// Queries +- (SPMySQLResult *)queryString:(NSString *)theQueryString; +- (SPMySQLFastStreamingResult *)streamingQueryString:(NSString *)theQueryString; +- (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming; +- (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType; + +// Query information +- (unsigned long long)rowsAffectedByLastQuery; +- (unsigned long long)lastInsertID; + +// Connection and query error state +- (BOOL)queryErrored; +- (NSString *)lastErrorMessage; +- (NSUInteger)lastErrorID; ++ (BOOL)isErrorIDConnectionError:(NSUInteger)theErrorID; + +// Query cancellation +- (void)cancelCurrentQuery; +- (BOOL)lastQueryWasCancelled; +- (BOOL)lastQueryWasCancelledUsingReconnect; + +@end + +/** + * Set up static functions to allow fast calling with cached selectors + */ + +static inline id SPMySQLConnectionEscapeString(SPMySQLConnection* self, NSString *theString, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, BOOL); + static SPMySQLConnectionEscapeStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeString:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theString, encloseInQuotes); +} + +static inline id SPMySQLConnectionEscapeData(SPMySQLConnection* self, NSData *theData, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeDataMethodPtr)(SPMySQLConnection*, SEL, NSData *, BOOL); + static SPMySQLConnectionEscapeDataMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeData:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeDataMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theData, encloseInQuotes); +} + +static inline id SPMySQLConnectionQueryString(SPMySQLConnection* self, NSString *theQueryString, NSStringEncoding theEncoding, SPMySQLResultType theReturnType) +{ + typedef id (*SPMySQLConnectionQueryStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, NSStringEncoding, SPMySQLResultType); + static SPMySQLConnectionQueryStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(queryString:usingEncoding:withResultType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionQueryStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theQueryString, theEncoding, theReturnType); +} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m new file mode 100644 index 00000000..4134880c --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m @@ -0,0 +1,622 @@ +// +// $Id$ +// +// Querying & Preparation.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +#import "SPMySQLConnection.h" +#import "SPMySQL Private APIs.h" + +@implementation SPMySQLConnection (Querying_and_Preparation) + +#pragma mark - +#pragma mark Data preparation + +/** + * See also the NSString methods mySQLTickQuotedString and mySQLBacktickQuotedString, + * added via an NSString category; however these methods are safer and more complete + * as they use the current connection encoding to quote characters. + */ + + +/** + * Take a string, escapes any special character, and surrounds it with single quotes + * for safe use within a query; correctly escapes any characters within the string + * using the current connection encoding. + */ +- (NSString *)escapeAndQuoteString:(NSString *)theString +{ + return SPMySQLConnectionEscapeString(self, theString, YES); +} + +/** + * Take a string and escapes any special character for safe use within a query; correctly + * escapes any characters within the string using the current connection encoding. + * Allows control over whether to also wrap the string in single quotes. + */ +- (NSString *)escapeString:(NSString *)theString includingQuotes:(BOOL)includeQuotes +{ + + // Return nil strings untouched + if (!theString) return theString; + + // To correctly escape the string, an active connection is required, so verify. + if (state == SPMySQLDisconnected || state == SPMySQLConnecting) { + if ([delegate respondsToSelector:@selector(noConnectionAvailable:)]) { + [delegate noConnectionAvailable:self]; + } + return nil; + } + if (![self _checkConnectionIfNecessary]) return nil; + + // Perform a lossy conversion to bytes, using NSData to do the hard work. Preserves + // nul characters correctly. + NSData *cData = [theString dataUsingEncoding:stringEncoding allowLossyConversion:YES]; + NSUInteger cDataLength = [cData length]; + + // Create a buffer for mysql_real_escape_string to place the converted string into; + // the max length is 2*length (if every character was quoted) + 2 (quotes/terminator). + // Adding quotes in this way makes the logic below *slightly* harder to follow but + // makes the addition of the quotes almost free, which is much nicer when building + // lots of strings. + char *escBuffer = (char *)malloc((cDataLength * 2) + 2); + + // Use mysql_real_escape_string to perform the escape, starting one character in + NSUInteger escapedLength = mysql_real_escape_string(mySQLConnection, escBuffer+1, [cData bytes], cDataLength); + + // Set up an NSData object to allow conversion back to NSString while preserving + // any nul characters contained in the string. + NSData *escapedData; + if (includeQuotes) { + + // Add quotes if requested + escBuffer[0] = '\''; + escBuffer[escapedLength+1] = '\''; + + escapedData = [NSData dataWithBytesNoCopy:escBuffer length:escapedLength+2 freeWhenDone:NO]; + } else { + escapedData = [NSData dataWithBytesNoCopy:escBuffer+1 length:escapedLength freeWhenDone:NO]; + } + + // Convert to the string to return + NSString *escapedString = [[NSString alloc] initWithData:escapedData encoding:stringEncoding]; + + // Free up any memory and return + free(escBuffer); + return [escapedString autorelease]; +} + +/** + * Take NSData and hex-encodes the contents for safe transmission to a server, + * preserving all bytes whatever the encoding. Surrounds the hex-encoded resulting + * string with single quotes and precedes it with the hex-marker X for safe inclusion + * in a query. + */ +- (NSString *)escapeAndQuoteData:(NSData *)theData +{ + return SPMySQLConnectionEscapeData(self, theData, YES); +} + +/** + * Takes NSData and hex-encodes the contents for safe transmission to a server, + * preserving all bytes whatever the encoding. + * Allows control over whether to also wrap the string in single quotes and a + * preceding X (X'...') for safe use in queries. + */ +- (NSString *)escapeData:(NSData *)theData includingQuotes:(BOOL)includeQuotes +{ + + // Return nil datas as nil strings + if (!theData) return nil; + + NSUInteger dataLength = [theData length]; + + // Create a buffer for mysql_real_escape_string to place the converted string into; + // the max length is 2*length (if every character was quoted) + 3 (quotes/terminator). + // Adding quotes in this way makes the logic below *slightly* harder to follow but + // makes the addition of the quotes almost free, which is much nicer when building + // lots of strings. + char *hexBuffer = (char *)malloc((dataLength * 2) + 3); + + // Use mysql_hex_string to perform the escape, starting two characters in + NSUInteger hexLength = mysql_hex_string(hexBuffer+2, [theData bytes], dataLength); + + // Set up the return NSString + NSString *hexString; + if (includeQuotes) { + + // Add quotes if requested + hexBuffer[0] = 'X'; + hexBuffer[1] = '\''; + hexBuffer[hexLength+2] = '\''; + + hexString = [[NSString alloc] initWithBytes:hexBuffer length:hexLength+3 encoding:NSASCIIStringEncoding]; + } else { + hexString = [[NSString alloc] initWithBytes:hexBuffer+2 length:hexLength encoding:NSASCIIStringEncoding]; + } + + // Free up any memory and return + free(hexBuffer); + return [hexString autorelease]; +} + +#pragma mark - +#pragma mark Queries + +/** + * Run a query, provided as a string, on the active connection in the current connection + * encoding. Stores all the results before returning the complete result set. + */ +- (SPMySQLResult *)queryString:(NSString *)theQueryString +{ + return SPMySQLConnectionQueryString(self, theQueryString, stringEncoding, SPMySQLResultAsResult); +} + +/** + * Run a query, provided as a string, on the active connection in the current connection + * encoding. Returns the result as a fast streaming query set, where not all the results + * may be available at time of return. + */ +- (SPMySQLFastStreamingResult *)streamingQueryString:(NSString *)theQueryString +{ + return SPMySQLConnectionQueryString(self, theQueryString, stringEncoding, SPMySQLResultAsFastStreamingResult); +} + +/** + * Run a query, provided as a string, on the active connection in the current connection + * encoding. Returns the result as a streaming query set, where not all the results may + * be available at time of return. + * Supports a flag specifying whether streaming should be low-memory blocking (results are + * read from the server as the code retrives them, possibly blocking other queries on the + * server) or fast streaming (results are cached in the result object as fast as possible, + * freeing up the server even in the local rows are still being read from the result object). + * Will return a SPMySQLStreamingResult or SPMySQLFastStreamingResult as appropriate. + */ +- (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming +{ + return SPMySQLConnectionQueryString(self, theQueryString, stringEncoding, fullStreaming?SPMySQLResultAsLowMemStreamingResult:SPMySQLResultAsFastStreamingResult); +} + +/** + * Run a query, provided as a string, on the active connection. The query and its result + * set are interpreted according to the supplied encoding, which should usually match + * the connection encoding. + * The result type desired can be specified, supporting either standard or streaming + * result sets. + */ +- (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType +{ + double queryExecutionTime; + lastQueryWasCancelled = NO; + lastQueryWasCancelledUsingReconnect = NO; + + // Check the connection state - if no connection is available, log an + // error and return. + if (state == SPMySQLDisconnected || state == SPMySQLConnecting) { + if ([delegate respondsToSelector:@selector(queryGaveError:connection:)]) { + [delegate queryGaveError:@"No connection available!" connection:self]; + } + if ([delegate respondsToSelector:@selector(noConnectionAvailable:)]) { + [delegate noConnectionAvailable:self]; + } + return nil; + } + + // Check the connection if necessary, returning nil if the query couldn't be validated + if (![self _checkConnectionIfNecessary]) return nil; + + // Determine whether a maximum query size needs to be restored from a previous query + if (queryActionShouldRestoreMaxQuerySize != NSNotFound) { + [self _restoreMaximumQuerySizeAfterQuery]; + } + + // If delegate logging is enabled, and the protocol is implemented, inform the delegate + if (delegateQueryLogging && delegateSupportsWillQueryString) { + [delegate willQueryString:theQueryString connection:self]; + } + + // Retrieve a C-style query string from the supplied NSString + NSUInteger cQueryStringLength; + const char *cQueryString = _cStringForStringWithEncoding(theQueryString, theEncoding, &cQueryStringLength); + + // Check the query length against the current maximum query length. If it is + // larger, the query would error (and probably cause a disconnect), so if + // the maximum size is editable, increase it and reconnect. + if (cQueryStringLength > maxQuerySize) { + queryActionShouldRestoreMaxQuerySize = maxQuerySize; + if (![self _attemptMaxQuerySizeIncreaseTo:(cQueryStringLength + 1024)]) { + queryActionShouldRestoreMaxQuerySize = NSNotFound; + return nil; + } + } + + // Prepare to enter a loop to run the query, allowing reattempts if appropriate + NSUInteger queryAttemptsAllowed = 1; + if (retryQueriesOnConnectionFailure) queryAttemptsAllowed++; + int queryStatus; + + // Lock the connection while it's actively in use + [self _lockConnection]; + + while (queryAttemptsAllowed > 0) { + + // While recording the overall execution time (including network lag!), run + // the raw query + uint64_t queryStartTime = mach_absolute_time(); + queryStatus = mysql_real_query(mySQLConnection, cQueryString, cQueryStringLength); + queryExecutionTime = _elapsedSecondsSinceAbsoluteTime(queryStartTime); + lastConnectionUsedTime = mach_absolute_time(); + + // If the query succeeded, no need to re-attempt. + if (!queryStatus) { + break; + + // If the query failed, determine whether to reattempt the query + } else { + + // Prevent retries if the query was cancelled or not a connection error + if (lastQueryWasCancelled && ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) { + break; + } + } + + // Query has failed - check the connection + if (![self checkConnection]) { + [self _unlockConnection]; + return nil; + } + + queryAttemptsAllowed--; + } + + unsigned long long theAffectedRowCount = mysql_affected_rows(mySQLConnection); + id theResult = nil; + + // On success, if there is a query result, retrieve the result data type + if (!queryStatus && mysql_field_count(mySQLConnection)) { + MYSQL_RES *mysqlResult; + + switch (theReturnType) { + + // For standard result sets, retrieve all the results now, and afterwards + // update the affected row count. + case SPMySQLResultAsResult: + mysqlResult = mysql_store_result(mySQLConnection); + theResult = [[SPMySQLResult alloc] initWithMySQLResult:mysqlResult stringEncoding:theEncoding]; + theAffectedRowCount = mysql_affected_rows(mySQLConnection); + break; + + // For fast streaming and low memory streaming result sets, set up the result + case SPMySQLResultAsLowMemStreamingResult: + mysqlResult = mysql_use_result(mySQLConnection); + theResult = [[SPMySQLStreamingResult alloc] initWithMySQLResult:mysqlResult stringEncoding:theEncoding connection:self]; + break; + + case SPMySQLResultAsFastStreamingResult: + mysqlResult = mysql_use_result(mySQLConnection); + theResult = [[SPMySQLFastStreamingResult alloc] initWithMySQLResult:mysqlResult stringEncoding:theEncoding connection:self]; + break; + } + } + + // Record the error state now, as it may be affected by subsequent clean-up queries + NSString *theErrorMessage = [self _stringForCString:mysql_error(mySQLConnection)]; + NSUInteger theErrorID = mysql_errno(mySQLConnection); + + // If the query was cancelled, override the error state + if (lastQueryWasCancelled) { + theErrorMessage = NSLocalizedString(@"Query cancelled.", @"Query cancelled error"); + theErrorID = 1317; + } + + // Unlock the connection if appropriate - if not a streaming result type. + if (![theResult isKindOfClass:[SPMySQLStreamingResult class]]) { + [self _unlockConnection]; + + // Also perform restore if appropriate + if (queryActionShouldRestoreMaxQuerySize != NSNotFound) { + [self _restoreMaximumQuerySizeAfterQuery]; + } + } + + // Update error string and ID + [self _updateLastErrorMessage:theErrorMessage]; + [self _updateLastErrorID:theErrorID]; + + // Store the result time on the response object + [theResult _setQueryExecutionTime:queryExecutionTime]; + + return [theResult autorelease]; +} + +#pragma mark - +#pragma mark Query information + +/** + * Returns the number of rows changed, deleted, inserted, or selected by + * the last query. + */ +- (unsigned long long)rowsAffectedByLastQuery +{ + return lastQueryAffectedRowCount; +} + +/** + * Returns the insert ID for the previous query which inserted a row. Note that + * this value persists through other SELECT/UPDATE etc queries. + */ +- (unsigned long long)lastInsertID +{ + return lastQueryInsertID; +} + +#pragma mark - +#pragma mark Retrieving connection and query error state + +/** + * Return whether the last query errored or not. + */ +- (BOOL)queryErrored +{ + return (queryErrorMessage)?YES:NO; +} + +/** + * If the last query (or connection) triggered an error, returns the error + * message as a string; if the last query did not error, nil is returned. + */ +- (NSString *)lastErrorMessage +{ + return queryErrorMessage; +} + +/** + * If the last query (or connection) triggered an error, returns the error + * ID; if the last query did not error, 0 is returned. + */ +- (NSUInteger)lastErrorID +{ + return queryErrorID; +} + +/** + * Determines whether a supplied error ID can be classed as a connection error. + */ ++ (BOOL)isErrorIDConnectionError:(NSUInteger)theErrorID +{ + switch (theErrorID) { + case 2001: // CR_SOCKET_CREATE_ERROR + case 2002: // CR_CONNECTION_ERROR + case 2003: // CR_CONN_HOST_ERROR + case 2004: // CR_IPSOCK_ERROR + case 2005: // CR_UNKNOWN_HOST + case 2006: // CR_SERVER_GONE_ERROR + case 2007: // CR_VERSION_ERROR + case 2009: // CR_WRONG_HOST_INFO + case 2012: // CR_SERVER_HANDSHAKE_ERR + case 2013: // CR_SERVER_LOST + case 2027: // CR_MALFORMED_PACKET + case 2032: // CR_DATA_TRUNCATED + case 2047: // CR_CONN_UNKNOW_PROTOCOL + case 2048: // CR_INVALID_CONN_HANDLE + case 2050: // CR_FETCH_CANCELED + case 2055: // CR_SERVER_LOST_EXTENDED + return YES; + } + + return NO; +} + +#pragma mark - +#pragma mark Query cancellation + +/** + * Cancel the currently running query. This tries to kill the current query, + * and if that isn't possible - for example, on MySQL < 5 or if the current user + * does not have the relevant permissions - resets the connection. + */ +- (void)cancelCurrentQuery +{ + + // If not connected, no action is required + if (state != SPMySQLConnected && state != SPMySQLDisconnecting) return; + + // Check whether a query is actually being performed - if not, return + if ([self _tryLockConnection]) { + [self _unlockConnection]; + return; + } + + // Mark that the last query was cancelled to prevent query retries from occurring + lastQueryWasCancelled = YES; + + // The query cancellation cannot occur on the connection actively running a query + // so set up a new connection to run the KILL command. + MYSQL *killerConnection = [self _makeRawMySQLConnectionWithEncoding:@"utf8" isMasterConnection:NO]; + + + // If the new connection was successfully set up, use it to run a KILL command. + if (killerConnection) { + NSStringEncoding aStringEncoding = [SPMySQLConnection stringEncodingForMySQLCharset:mysql_character_set_name(killerConnection)]; + BOOL killQuerySupported = [self serverVersionIsGreaterThanOrEqualTo:5 minorVersion:0 releaseVersion:0]; + + // Build the kill query + NSMutableString *killQuery = [NSMutableString stringWithString:@"KILL"]; + if (killQuerySupported) [killQuery appendString:@" QUERY"]; + [killQuery appendFormat:@" %lu", mySQLConnection->thread_id]; + + // Convert to a C string + NSUInteger killQueryCStringLength; + const char *killQueryCString = [SPMySQLConnection _cStringForString:killQuery usingEncoding:aStringEncoding returningLengthAs:&killQueryCStringLength]; + + // Run the query + int killQueryStatus = mysql_real_query(killerConnection, killQueryCString, killQueryCStringLength); + + // Close the temporary connection + mysql_close(killerConnection); + + // If the kill query succeeded, the active query was cancelled. + if (killQueryStatus == 0) { + + // On MySQL < 5, the entire connection will have been reset. Ensure it's + // restored. + if (!killQuerySupported) { + [self checkConnection]; + lastQueryWasCancelledUsingReconnect = YES; + } else { + lastQueryWasCancelledUsingReconnect = NO; + } + + // Ensure the tracking bool is re-set to cover encompassed queries and return + lastQueryWasCancelled = YES; + return; + } else { + NSLog(@"SPMySQL Framework: query cancellation failed due to cancellation query error (status %d)", killQueryStatus); + } + } else { + NSLog(@"SPMySQL Framework: query cancellation failed because connection failed"); + } + + // A full reconnect is required at this point to force a cancellation. As the + // connection may have finished processing the query at this point (depending how + // long the connection attempt took), check whether we can skip the reconnect. + if ([self _tryLockConnection]) { + [self _unlockConnection]; + return; + } + + if (state == SPMySQLDisconnecting) return; + + // Reset the connection with a reconnect. Unlock the connection beforehand, + // to allow the reconnect, but lock it again afterwards to restore the expected + // state (query execution process should unlock as appropriate). + [self _unlockConnection]; + [self reconnect]; + [self _lockConnection]; + + // Reset tracking bools to cover encompassed queries + lastQueryWasCancelled = YES; + lastQueryWasCancelledUsingReconnect = YES; +} + +/** + * Returns whether the last query was cancelled using cancelCurrentQuery. + */ +- (BOOL)lastQueryWasCancelled +{ + return lastQueryWasCancelled; +} + +/** + * If the last query was cancelled, returns whether that query cancellation + * required the connection to be reset or whether the query was successfully + * cancelled leaving the connection intact. + * If the last query was not cancelled, this will return NO. + */ +- (BOOL)lastQueryWasCancelledUsingReconnect +{ + return lastQueryWasCancelledUsingReconnect; +} + +@end + +#pragma mark - +#pragma mark Private API + +@implementation SPMySQLConnection (Querying_and_Preparation_Private_API) + +/** + * Retrieves all remaining results and discards them. + * This is necessary to correctly process multiple result sets on the connection - as + * we currently don't fully support multiple result, this at least allows the connection + * to function after running statements with multiple result sets. + */ +- (void)_flushMultipleResultSets +{ + + // Repeat as long as there are results + while (!mysql_next_result(mySQLConnection)) { + MYSQL_RES *eachResult = mysql_use_result(mySQLConnection); + + // Ensure the result is really a result + if (eachResult) { + + // Retrieve and discard all rows + while (mysql_fetch_row(eachResult)); + + // Free the result set + mysql_free_result(eachResult); + } + } +} + +/** + * Update the MySQL error message for this connection. If an error is supplied + * it will be stored and returned to anything asking the instance for the last + * error; if no error is supplied, the connection will be used to derive (or clear) + * the error string. + */ +- (void)_updateLastErrorMessage:(NSString *)theErrorMessage +{ + + // If an error message wasn't supplied, select one from the connection + if (!theErrorMessage) { + theErrorMessage = [self _stringForCString:mysql_error(mySQLConnection)]; + } + + // Clear the last error message stored on the instance + if (queryErrorMessage) [queryErrorMessage release], queryErrorMessage = nil; + + // If we have an error message *with a length*, update the instance error message + if (theErrorMessage && [theErrorMessage length]) { + queryErrorMessage = [[NSString alloc] initWithString:theErrorMessage]; + } +} + +/** + * Update the MySQL error ID for this connection. If an error ID is supplied, + * it will be stored and returned to anything asking the instance for the last + * error; if an NSNotFound error ID is supplied, the connection will be used to + * set the error ID. Note that an error ID of 0 corresponds to no error. + */ +- (void)_updateLastErrorID:(NSUInteger)theErrorID +{ + + // If NSNotFound was supplied as the ID, ask the connection for the last error + if (theErrorID == NSNotFound) { + queryErrorID = mysql_errno(mySQLConnection); + + // Otherwise, update the error ID with the supplied ID + } else { + queryErrorID = theErrorID; + } +} + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h new file mode 100644 index 00000000..d8f5f183 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h @@ -0,0 +1,50 @@ +// +// $Id$ +// +// Server Info.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + +@class SPMySQLResult; + +@interface SPMySQLConnection (Server_Info) + +// Server version information +- (NSString *)serverVersionString; +- (NSUInteger)serverMajorVersion; +- (NSUInteger)serverMinorVersion; +- (NSUInteger)serverReleaseVersion; + +// Server version comparisons +- (BOOL)serverVersionIsGreaterThanOrEqualTo:(NSUInteger)aMajorVersion minorVersion:(NSUInteger)aMinorVersion releaseVersion:(NSUInteger)aReleaseVersion; + +// Server tasks & processes +- (SPMySQLResult *)listProcesses; +- (BOOL)killQueryOnThreadID:(unsigned long)theThreadID; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m new file mode 100644 index 00000000..f695d977 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m @@ -0,0 +1,175 @@ +// +// $Id$ +// +// Server Info.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +#import "Server Info.h" +#import "SPMySQL Private APIs.h" + +@implementation SPMySQLConnection (Server_Info) + +#pragma mark - +#pragma mark Server version information + +/** + * Return the server version string, or nil on failure. + */ +- (NSString *)serverVersionString +{ + if (serverVersionString) { + return [NSString stringWithString:serverVersionString]; + } + + return nil; +} + +/** + * Return the server major version or NSNotFound on failure + */ +- (NSUInteger)serverMajorVersion +{ + + if (serverVersionString != nil) { + NSString *s = [[serverVersionString componentsSeparatedByString:@"."] objectAtIndex:0]; + return (NSUInteger)[s integerValue]; + } + + return NSNotFound; +} + +/** + * Return the server minor version or NSNotFound on failure + */ +- (NSUInteger)serverMinorVersion +{ + if (serverVersionString != nil) { + NSString *s = [[serverVersionString componentsSeparatedByString:@"."] objectAtIndex:1]; + return (NSUInteger)[s integerValue]; + } + + return NSNotFound; +} + +/** + * Return the server release version or NSNotFound on failure + */ +- (NSUInteger)serverReleaseVersion +{ + if (serverVersionString != nil) { + NSString *s = [[serverVersionString componentsSeparatedByString:@"."] objectAtIndex:2]; + return (NSUInteger)[[[s componentsSeparatedByString:@"-"] objectAtIndex:0] integerValue]; + } + + return NSNotFound; +} + +#pragma mark - +#pragma mark Server version comparisons + +/** + * Returns whether the connected server version is greater than or equal to the + * supplied version number. Returns NO if no connection is active. + */ +- (BOOL)serverVersionIsGreaterThanOrEqualTo:(NSUInteger)aMajorVersion minorVersion:(NSUInteger)aMinorVersion releaseVersion:(NSUInteger)aReleaseVersion +{ + if (!serverVersionString) return NO; + + NSArray *serverVersionParts = [serverVersionString componentsSeparatedByString:@"."]; + + NSUInteger serverMajorVersion = (NSUInteger)[[serverVersionParts objectAtIndex:0] integerValue]; + if (serverMajorVersion < aMajorVersion) return NO; + if (serverMajorVersion > aMajorVersion) return YES; + + NSUInteger serverMinorVersion = (NSUInteger)[[serverVersionParts objectAtIndex:1] integerValue]; + if (serverMinorVersion < aMinorVersion) return NO; + if (serverMinorVersion > aMinorVersion) return YES; + + NSString *serverReleasePart = [serverVersionParts objectAtIndex:2]; + NSUInteger serverReleaseVersion = (NSUInteger)[[[serverReleasePart componentsSeparatedByString:@"-"] objectAtIndex:0] integerValue]; + if (serverReleaseVersion < aReleaseVersion) return NO; + return YES; +} + +#pragma mark - +#pragma mark Server tasks & processes + +/** + * Returns a result set describing the current server threads and their tasks. Note that + * the resulting process list defaults to the short form; run a manual SHOW FULL PROCESSLIST + * to retrieve tasks in non-truncated form. + * Returns nil on error. + */ +- (SPMySQLResult *)listProcesses +{ + if (state != SPMySQLConnected) return nil; + + // Check the connection if appropriate + if (![self _checkConnectionIfNecessary]) return nil; + + // Lock the connection before using it + [self _lockConnection]; + + // Get the process list + MYSQL_RES *mysqlResult = mysql_list_processes(mySQLConnection); + + // Convert to SPMySQLResult + SPMySQLResult *theResult = [[SPMySQLResult alloc] initWithMySQLResult:mysqlResult stringEncoding:stringEncoding]; + + // Unlock and return + [self _unlockConnection]; + return [theResult autorelease]; +} + +/** + * Kill the process with the supplied thread ID. On MySQL version 5 or later, this kills + * the query; on older servers this kills the entire connection. Note that the SUPER + * privilege is required to kill queries and processes not belonging to the currently + * connected user, while only PROCESS is required to see other user's processes. + * Returns a boolean indicating success or failure. + */ +- (BOOL)killQueryOnThreadID:(unsigned long)theThreadID +{ + + // Note that mysql_kill has been deprecated, so use a query to perform this task. + NSMutableString *killQuery = [NSMutableString stringWithString:@"KILL"]; + if ([self serverVersionIsGreaterThanOrEqualTo:5 minorVersion:0 releaseVersion:0]) { + [killQuery appendString:@" QUERY"]; + } + [killQuery appendFormat:@" %lu", theThreadID]; + + // Run the query + [self queryString:killQuery]; + + // Return a value based on whether the query errored or not + return ![self queryErrored]; +} + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h new file mode 100644 index 00000000..db6dc0af --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h @@ -0,0 +1,177 @@ +// +// $Id$ +// +// SPMySQLConnection.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 8, 2012 +// Copyright (c) 2012 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 + +@interface SPMySQLConnection : NSObject { + + // Delegate + NSObject *delegate; + BOOL delegateSupportsWillQueryString; + BOOL delegateSupportsConnectionLost; + BOOL delegateQueryLogging; // Defaults to YES if protocol implemented + + // Basic connection details + NSString *host; + NSString *username; + NSString *password; + NSUInteger port; + BOOL useSocket; + NSString *socketPath; + + // SSL connection details + BOOL useSSL; + NSString *sslKeyFilePath; + NSString *sslCertificatePath; + NSString *sslCACertificatePath; + + // MySQL connection details and state + struct st_mysql *mySQLConnection; + SPMySQLConnectionState state; + BOOL connectedWithSSL; + BOOL userTriggeredDisconnect; + BOOL isReconnecting; + uint64_t initialConnectTime; + unsigned long mysqlConnectionThreadId; + + // Connection proxy + NSObject *proxy; + SPMySQLConnectionProxyState previousProxyState; + BOOL proxyStateChangeNotificationsIgnored; + + // Connection lock to prevent non-thread-safe query misuse + NSConditionLock *connectionLock; + + // Currently selected database + NSString *database; + + // Delegate connection lost decisions + NSUInteger reconnectionRetryAttempts; + SPMySQLConnectionLostDecision lastDelegateDecisionForLostConnection; + NSLock *delegateDecisionLock; + + // Timeout and keep-alive + NSUInteger timeout; + BOOL useKeepAlive; + NSTimer *keepAliveTimer; + CGFloat keepAliveInterval; + uint64_t lastKeepAliveTime; + NSUInteger keepAlivePingFailures; + pthread_t keepAlivePingThread; + BOOL keepAlivePingThreadActive; + BOOL keepAliveLastPingSuccess; + BOOL keepAliveLastPingBlocked; + + // Encoding details - and also a record of any previous encoding to allow + // switching back and forth + NSString *encoding; + NSStringEncoding stringEncoding; + BOOL encodingUsesLatin1Transport; + NSString *previousEncoding; + BOOL previousEncodingUsesLatin1Transport; + + // Server details + NSString *serverVersionString; + + // Error state for the last query or connection state + NSUInteger queryErrorID; + NSString *queryErrorMessage; + + // Query details + unsigned long long lastQueryAffectedRowCount; + unsigned long long lastQueryInsertID; + + // Query cancellation details + BOOL lastQueryWasCancelled; + BOOL lastQueryWasCancelledUsingReconnect; + + // Timing details + uint64_t lastConnectionUsedTime; + double lastQueryExecutionTime; + + // Maximum query size + NSUInteger maxQuerySize; + BOOL maxQuerySizeIsEditable; + BOOL maxQuerySizeEditabilityChecked; + NSUInteger queryActionShouldRestoreMaxQuerySize; + + // Queries + BOOL retryQueriesOnConnectionFailure; +} + +#pragma mark - +#pragma mark Synthesized properties + +@property (readwrite, assign, nonatomic) NSObject *delegate; +@property (readwrite, assign, nonatomic) NSObject *proxy; + +@property (readwrite, retain) NSString *host; +@property (readwrite, retain) NSString *username; +@property (readwrite, retain) NSString *password; +@property (readwrite, assign) NSUInteger port; +@property (readwrite, assign) BOOL useSocket; +@property (readwrite, retain) NSString *socketPath; + +@property (readwrite, assign) BOOL useSSL; +@property (readwrite, retain) NSString *sslKeyFilePath; +@property (readwrite, retain) NSString *sslCertificatePath; +@property (readwrite, retain) NSString *sslCACertificatePath; + +@property (readwrite, assign) NSUInteger timeout; +@property (readwrite, assign) BOOL useKeepAlive; +@property (readwrite, assign) CGFloat keepAliveInterval; + +@property (readonly) unsigned long mysqlConnectionThreadId; +@property (readwrite, assign) BOOL retryQueriesOnConnectionFailure; + +@property (readwrite, assign) BOOL delegateQueryLogging; + +#pragma mark - +#pragma mark Connection and disconnection + +- (BOOL)connect; +- (BOOL)reconnect; +- (void)disconnect; + +#pragma mark - +#pragma mark Connection state + +- (BOOL)isConnected; +- (BOOL)isConnectedViaSSL; +- (BOOL)checkConnection; +- (double)timeConnected; +- (BOOL)userTriggeredDisconnect; + +#pragma mark - +#pragma mark Connection utility + ++ (NSString *)findSocketPath; + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m new file mode 100644 index 00000000..4968266d --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m @@ -0,0 +1,834 @@ +// +// $Id$ +// +// SPMySQLConnection.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 8, 2012 +// Copyright (c) 2012 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 + +#import "SPMySQL Private APIs.h" +#include +#include +#include + + +#pragma mark Class constants + +// The default connection options for MySQL connections +const NSUInteger SPMySQLConnectionOptions = + CLIENT_COMPRESS | // Enable protocol compression - almost always a win + CLIENT_INTERACTIVE | // Mark ourselves as an interactive client + CLIENT_MULTI_RESULTS; // Multiple result support (very basic, but present) + +// List of permissible ciphers to use for SSL connections +const char *SPMySQLSSLPermissibleCiphers = "DHE-RSA-AES256-SHA:AES256-SHA:DHE-RSA-AES128-SHA:AES128-SHA:AES256-RMD:AES128-RMD:DES-CBC3-RMD:DHE-RSA-AES256-RMD:DHE-RSA-AES128-RMD:DHE-RSA-DES-CBC3-RMD:RC4-SHA:RC4-MD5:DES-CBC3-SHA:DES-CBC-SHA:EDH-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC-SHA"; + + +@implementation SPMySQLConnection + +#pragma mark - +#pragma mark Synthesized properties + +@synthesize delegate; +@synthesize proxy; +@synthesize host; +@synthesize username; +@synthesize password; +@synthesize port; +@synthesize useSocket; +@synthesize socketPath; +@synthesize useSSL; +@synthesize sslKeyFilePath; +@synthesize sslCertificatePath; +@synthesize sslCACertificatePath; +@synthesize timeout; +@synthesize useKeepAlive; +@synthesize keepAliveInterval; +@synthesize mysqlConnectionThreadId; +@synthesize retryQueriesOnConnectionFailure; +@synthesize delegateQueryLogging; + +#pragma mark - +#pragma mark Initialisation and teardown + +/** + * Initialise the SPMySQLConnection object, setting up class defaults. + * + * Typically initialisation would be followed by setting the connection details + * and then calling -connect. + */ +- (id)init +{ + if ((self = [super init])) { + mySQLConnection = NULL; + state = SPMySQLDisconnected; + userTriggeredDisconnect = NO; + isReconnecting = NO; + mysqlConnectionThreadId = 0; + initialConnectTime = 0; + + port = 3306; + + // Default to socket connections if no other details have been provided + useSocket = YES; + + // Start with no proxy + proxy = nil; + proxyStateChangeNotificationsIgnored = NO; + + // Start with no selected database + database = nil; + + // Set a timeout of 30 seconds, with keepalive on and acting every sixty seconds + timeout = 30; + useKeepAlive = YES; + keepAliveInterval = 60; + keepAlivePingFailures = 0; + lastKeepAliveTime = 0; + keepAlivePingThread = NULL; + keepAlivePingThreadActive = NO; + keepAliveLastPingSuccess = NO; + keepAliveLastPingBlocked = NO; + + // Set up default encoding variables + encoding = [[NSString alloc] initWithString:@"utf8"]; + stringEncoding = NSUTF8StringEncoding; + encodingUsesLatin1Transport = NO; + previousEncoding = nil; + previousEncodingUsesLatin1Transport = NO; + + // Initialise default delegate settings + delegateSupportsWillQueryString = NO; + delegateSupportsConnectionLost = NO; + delegateQueryLogging = YES; + + // Delegate disconnection decisions + reconnectionRetryAttempts = 0; + lastDelegateDecisionForLostConnection = SPMySQLConnectionLostDisconnect; + delegateDecisionLock = [[NSLock alloc] init]; + + // Set up the connection lock + connectionLock = [[NSConditionLock alloc] initWithCondition:SPMySQLConnectionIdle]; + [connectionLock setName:@"SPMySQLConnection query lock"]; + + // Ensure the server detail records are initialised + serverVersionString = nil; + + // Start with a blank error state + queryErrorID = 0; + queryErrorMessage = nil; + + // Start with empty cancellation details + lastQueryWasCancelled = NO; + lastQueryWasCancelledUsingReconnect = NO; + + // Empty or reset the timing variables + lastConnectionUsedTime = 0; + lastQueryExecutionTime = 0; + + // Default to editable query size of 1MB + maxQuerySize = 1048576; + maxQuerySizeIsEditable = YES; + maxQuerySizeEditabilityChecked = NO; + queryActionShouldRestoreMaxQuerySize = NSNotFound; + + // Default to allowing queries to be automatically retried if the connection drops + // while running them + retryQueriesOnConnectionFailure = YES; + + // Start the ping keepalive timer + if ([NSThread isMainThread]) { + [self _initKeepAlivePingTimer]; + } else { + [self performSelectorOnMainThread:@selector(_initKeepAlivePingTimer) withObject:nil waitUntilDone:YES]; + } + } + + return self; +} + +/** + * Object deallocation. + */ +- (void) dealloc +{ + userTriggeredDisconnect = YES; + + // Unset the delegate + [self setDelegate:nil]; + + // Disconnect if appropriate (which should also disconnect any proxy) + [self disconnect]; + + // Clean up the connection proxy, if any + if (proxy) { + [proxy setConnectionStateChangeSelector:NULL delegate:nil]; + [proxy release]; + } + + // Ensure the query lock is unlocked, thereafter setting to nil in case of pending calls + if ([connectionLock condition] != SPMySQLConnectionIdle) { + [self _unlockConnection]; + } + [connectionLock release], connectionLock = nil; + + [encoding dealloc]; + if (previousEncoding) [previousEncoding release], previousEncoding = nil; + + if (database) [database release], database = nil; + if (serverVersionString) [serverVersionString release], serverVersionString = nil; + if (queryErrorMessage) [queryErrorMessage release], queryErrorMessage = nil; + [keepAliveTimer invalidate]; + [keepAliveTimer release]; + [delegateDecisionLock release]; + + [NSObject cancelPreviousPerformRequestsWithTarget:self]; + + [super dealloc]; +} + +#pragma mark - +#pragma mark Connection and disconnection + +/** + * Trigger a connection to the specified host, if any, using any connection details + * that have been set. + * Returns whether the connection was successful. + */ +- (BOOL)connect +{ + + // If a connection is already active in some form, throw an exception + if (state != SPMySQLDisconnected) { + [NSException raise:NSInternalInconsistencyException format:@"Attempted to connect a connection that is not disconnected."]; + return NO; + } + state = SPMySQLConnecting; + + // Lock the connection for safety + [self _lockConnection]; + + // Attempt the connection + mySQLConnection = [self _makeRawMySQLConnectionWithEncoding:encoding isMasterConnection:YES]; + + // If the connection failed, reset state and return + if (!mySQLConnection) { + [self _unlockConnection]; + state = SPMySQLDisconnected; + return NO; + } + + // Successfully connected - record connected state and reset tracking variables + state = SPMySQLConnected; + userTriggeredDisconnect = NO; + reconnectionRetryAttempts = 0; + initialConnectTime = mach_absolute_time(); + mysqlConnectionThreadId = mySQLConnection->thread_id; + lastConnectionUsedTime = 0; + + // Update SSL state + connectedWithSSL = NO; + if (useSSL) connectedWithSSL = (mysql_get_ssl_cipher(mySQLConnection))?YES:NO; + if (useSSL && !connectedWithSSL) { + if ([delegate respondsToSelector:@selector(connectionFellBackToNonSSL:)]) { + [delegate connectionFellBackToNonSSL:self]; + } + } + + // Reset keepalive variables + lastKeepAliveTime = 0; + keepAlivePingFailures = 0; + + // Clear the connection error record + [self _updateLastErrorID:NSNotFound]; + [self _updateLastErrorMessage:nil]; + + // Unlock the connection + [self _unlockConnection]; + + // Update connection variables to be in sync with the server state. As this performs + // a query, ensure the connection is still up afterwards (!) + [self _updateConnectionVariables]; + if (state != SPMySQLConnected) return NO; + + // Update the maximum query size + [self _updateMaxQuerySize]; + + return YES; +} + +/** + * Reconnect to the currently "active" - but possibly disconnected - connection, using the + * stored details. + * Error checks extensively - if this method fails, it will ask how to proceed and loop depending + * on the status, not returning control until either a connection has been established or + * the connection and document have been closed. + * Runs its own autorelease pool as sometimes called in a thread following proxy changes + * (where the return code doesn't matter). + */ +- (BOOL)reconnect +{ + if (userTriggeredDisconnect) return NO; + + NSAutoreleasePool *reconnectionPool = [[NSAutoreleasePool alloc] init]; + + // Check whether a reconnection attempt is already being made - if so, wait + // and return the status of that reconnection attempt. This improves threaded + // use of the connection by preventing reconnect races. + if (isReconnecting) { + + // Loop in a panel runloop mode until the reconnection has processed; if an iteration + // takes less than the requested 0.1s, sleep instead. + while (isReconnecting) { + uint64_t loopIterationStart_t = mach_absolute_time(); + + [[NSRunLoop currentRunLoop] runMode:NSModalPanelRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; + if (_elapsedSecondsSinceAbsoluteTime(loopIterationStart_t) < 0.1) { + usleep(100000 - (useconds_t)(1000000 * _elapsedSecondsSinceAbsoluteTime(loopIterationStart_t))); + } + } + + [reconnectionPool drain]; + return (state == SPMySQLConnected); + } + + isReconnecting = YES; + + // Store certain details about the connection, so that if the reconnection is successful + // they can be restored. This has to be treated separately from _restoreConnectionDetails + // as a full connection reinitialises certain values from the server. + NSString *preReconnectEncoding = [NSString stringWithString:encoding]; + BOOL preReconnectEncodingUsesLatin1 = encodingUsesLatin1Transport; + NSString *preReconnectDatabase = nil; + if (database) preReconnectDatabase = [NSString stringWithString:database]; + + // If there is a connection proxy, temporarily disassociate the state change action + if (proxy) proxyStateChangeNotificationsIgnored = YES; + + // Close the connection if it's active + [self disconnect]; + + // Lock the connection while waiting for network and proxy + [self _lockConnection]; + + // If no network is present, wait for a short time for one to become available + [self _waitForNetworkConnectionWithTimeout:10]; + + // If there is a proxy, attempt to reconnect it in blocking fashion + if (proxy) { + uint64_t loopIterationStart_t, proxyWaitStart_t; + + // If the proxy is not yet idle after requesting a disconnect, wait for a short time + // to allow it to disconnect. + if ([proxy state] != SPMySQLProxyIdle) { + + proxyWaitStart_t = mach_absolute_time(); + while ([proxy state] != SPMySQLProxyIdle) { + loopIterationStart_t = mach_absolute_time(); + + // If the connection timeout has passed, break out of the loop + if (_elapsedSecondsSinceAbsoluteTime(proxyWaitStart_t) > timeout) break; + + // Allow events to process for 0.25s, sleeping to completion on early return + [[NSRunLoop currentRunLoop] runMode:NSModalPanelRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.25]]; + if (_elapsedSecondsSinceAbsoluteTime(loopIterationStart_t) < 0.25) { + usleep(250000 - (useconds_t)(1000000 * _elapsedSecondsSinceAbsoluteTime(loopIterationStart_t))); + } + } + } + + // Request that the proxy re-establishes its connection + [proxy connect]; + + // Wait while the proxy connects + proxyWaitStart_t = mach_absolute_time(); + while (1) { + loopIterationStart_t = mach_absolute_time(); + + // If the proxy has connected, record the new local port and break out of the loop + if ([proxy state] == SPMySQLProxyConnected) { + port = [proxy localPort]; + break; + } + + // If the proxy connection attempt time has exceeded the timeout, break of of the loop. + if (_elapsedSecondsSinceAbsoluteTime(proxyWaitStart_t) > (timeout + 1)) { + [proxy disconnect]; + break; + } + + // Process events for a short time, allowing dialogs to be shown but waiting for + // the proxy. Capture how long this interface action took, standardising the + // overall time. + [[NSRunLoop mainRunLoop] runMode:NSModalPanelRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.25]]; + if (_elapsedSecondsSinceAbsoluteTime(loopIterationStart_t) < 0.25) { + usleep((useconds_t)(250000 - (1000000 * _elapsedSecondsSinceAbsoluteTime(loopIterationStart_t)))); + } + + // Extend the connection timeout by any interface time + if ([proxy state] == SPMySQLProxyWaitingForAuth) { + proxyWaitStart_t += mach_absolute_time() - loopIterationStart_t; + } + } + + // Having in theory performed the proxy connect, update state + previousProxyState = [proxy state]; + proxyStateChangeNotificationsIgnored = NO; + } + + // Unlock the connection + [self _unlockConnection]; + + // If not using a proxy, or if the proxy successfully connected, trigger a connection + if (!proxy || [proxy state] == SPMySQLProxyConnected) { + [self connect]; + } + + // If the connection failed, retry the reconnection or cancel as appropriate. + if (state != SPMySQLConnected) { + + // Default to attempting another reconnect + SPMySQLConnectionLostDecision connectionLostDecision = SPMySQLConnectionLostReconnect; + + // If the delegate supports the decision process, ask it how to proceed + if (delegateSupportsConnectionLost) { + connectionLostDecision = [self _delegateDecisionForLostConnection]; + + // Otherwise default to reconnect, but only a set number of times to prevent a runaway loop + } else { + if (reconnectionRetryAttempts < 5) { + connectionLostDecision = SPMySQLConnectionLostReconnect; + } else { + connectionLostDecision = SPMySQLConnectionLostDisconnect; + } + reconnectionRetryAttempts++; + } + + switch (connectionLostDecision) { + case SPMySQLConnectionLostDisconnect: + [self _updateLastErrorMessage:NSLocalizedString(@"User triggered disconnection", @"User triggered disconnection")]; + userTriggeredDisconnect = YES; + isReconnecting = NO; + [reconnectionPool release]; + return NO; + default: + isReconnecting = NO; + [reconnectionPool release]; + return [self reconnect]; + } + } + + // If the connection was successfully established, restore the connection + // state if appropriate. + if (preReconnectDatabase) { + [self selectDatabase:preReconnectDatabase]; + } + [self setEncoding:preReconnectEncoding]; + [self setEncodingUsesLatin1Transport:preReconnectEncodingUsesLatin1]; + + isReconnecting = NO; + [reconnectionPool release]; + return YES; +} + +/** + * Trigger a disconnection if the connection is currently active. + */ +- (void)disconnect +{ + + // Only continue if a connection is active + if (state != SPMySQLConnected && state != SPMySQLConnecting) return; + state = SPMySQLDisconnecting; + + // If a query is active, cancel it + [self cancelCurrentQuery]; + + // Allow any pings or cancelled queries to complete, inside a time limit of ten seconds + uint64_t disconnectStartTime_t = mach_absolute_time(); + do { + usleep(100000); + if (_elapsedSecondsSinceAbsoluteTime(disconnectStartTime_t) > 10) break; + } while (![self _tryLockConnection]); + [self _unlockConnection]; + if (keepAlivePingThread != NULL) pthread_cancel(keepAlivePingThread), keepAlivePingThread = NULL; + + // Close the underlying MySQL connection if it still appears to be active, and not reading + // or writing. While this may result in a leak of the MySQL object, it prevents crashes + // due to attempts to close a blocked/stuck connection. + if (!mySQLConnection->net.reading_or_writing && mySQLConnection->net.vio && mySQLConnection->net.buff) { + mysql_close(mySQLConnection); + } + mySQLConnection = NULL; + + // If using a connection proxy, disconnect that too + if (proxy) { + [proxy performSelectorOnMainThread:@selector(disconnect) withObject:nil waitUntilDone:YES]; + } + + // Clear host-specific information + if (serverVersionString) [serverVersionString release], serverVersionString = nil; + if (database) [database release], database = nil; + + state = SPMySQLDisconnected; +} + +#pragma mark - +#pragma mark Connection state + +/** + * Retrieve whether the connection instance is connected to the remote host. + * Returns NO if the connection is still in process, YES if a disconnection is + * being actively performed. + */ +- (BOOL)isConnected +{ + return (state == SPMySQLConnected || state == SPMySQLDisconnecting); +} + +/** + * Returns YES if the MCPConnection is connected to a server via SSL, NO otherwise. + */ +- (BOOL)isConnectedViaSSL +{ + if (![self isConnected]) return NO; + return connectedWithSSL; +} + +/** + * Checks whether the connection to the server is still active. This verifies + * the connection using a ping, and if the connection is found to be down attempts + * to quickly restore it, including the previous state. + */ +- (BOOL)checkConnection +{ + + // If the connection is not seen as active, don't proceed + if (state != SPMySQLConnected) return NO; + + // Similarly, if the connection is currently locked, that indicates it's in use. This + // could be because queries are actively being run, or that a ping is running. + if ([connectionLock condition] == SPMySQLConnectionBusy) { + + // If a ping thread is not active queries are being performed - return success. + if (!keepAlivePingThreadActive) return YES; + + // If a ping thread is active, wait for it to complete before checking the connection + while (keepAlivePingThreadActive) { + usleep(10000); + } + } + + // Confirm whether the connection is still responding by using a ping + BOOL connectionVerified = [self _pingConnectionUsingLoopDelay:400]; + + // If the connection didn't respond, trigger a reconnect. This will automatically + // attempt to reconnect once, and if that fails will ask the user how to proceed - whether + // to keep reconnecting, or whether to disconnect. + if (!connectionVerified) { + connectionVerified = [self reconnect]; + } + + return connectionVerified; +} + +/** + * Retrieve the time elapsed since the connection was established, in seconds. + * This time is retrieved in a monotonically increasing fashion and is high + * precision; it is used internally for query timing, and is reset on reconnections. + * If no connection is currently active, returns -1. + */ +- (double)timeConnected +{ + if (initialConnectTime == 0) return -1; + + return _elapsedSecondsSinceAbsoluteTime(initialConnectTime); +} + +/** + * Returns YES if the user chose to disconnect at the last "connection failure" + * prompt, NO otherwise. This can be used to alter behaviour in response to state + * changes. + */ +- (BOOL)userTriggeredDisconnect +{ + return userTriggeredDisconnect; +} + +#pragma mark - +#pragma mark General connection utilities + ++ (NSString *)findSocketPath +{ + NSFileManager *fileManager = [NSFileManager defaultManager]; + + NSArray *possibleSocketLocations = [NSArray arrayWithObjects: + @"/tmp/mysql.sock", // Default + @"/Applications/MAMP/tmp/mysql/mysql.sock", // MAMP default location + @"/Applications/xampp/xamppfiles/var/mysql/mysql.sock", // XAMPP default location + @"/var/mysql/mysql.sock", // Mac OS X Server default + @"/opt/local/var/run/mysqld/mysqld.sock", // Darwinports MySQL + @"/opt/local/var/run/mysql4/mysqld.sock", // Darwinports MySQL 4 + @"/opt/local/var/run/mysql5/mysqld.sock", // Darwinports MySQL 5 + @"/usr/local/zend/mysql/tmp/mysql.sock", // Zend Server CE (see Issue #1251) + @"/var/run/mysqld/mysqld.sock", // As used on Debian/Gentoo + @"/var/tmp/mysql.sock", // As used on FreeBSD + @"/var/lib/mysql/mysql.sock", // As used by Fedora + @"/opt/local/lib/mysql/mysql.sock", // Alternate fedora + nil]; + + for (NSUInteger i = 0; i < [possibleSocketLocations count]; i++) { + if ([fileManager fileExistsAtPath:[possibleSocketLocations objectAtIndex:i]]) + return [possibleSocketLocations objectAtIndex:i]; + } + + return nil; +} + +@end + +#pragma mark - +#pragma mark Private API + +@implementation SPMySQLConnection (PrivateAPI) + +/** + * Make a connection using the class connection settings, returning a MySQL + * connection object on success. + */ +- (MYSQL *)_makeRawMySQLConnectionWithEncoding:(NSString *)encodingName isMasterConnection:(BOOL)isMaster +{ + + // Set up the MySQL connection object + MYSQL *theConnection = mysql_init(NULL); + if (!theConnection) return NULL; + + // Disable automatic reconnection, as it's handled in-framework to preserve + // options, encodings and connection state. + my_bool falseMyBool = FALSE; + mysql_options(theConnection, MYSQL_OPT_RECONNECT, &falseMyBool); + + // Set the connection timeout + mysql_options(theConnection, MYSQL_OPT_CONNECT_TIMEOUT, (const void *)&timeout); + + // Set the connection encoding + mysql_options(theConnection, MYSQL_SET_CHARSET_NAME, [encodingName UTF8String]); + + // Set up the connection variables in the format MySQL needs, from the class-wide variables + const char *theHost = NULL; + const char *theUsername = ""; + const char *thePassword = NULL; + const char *theSocket = NULL; + + if (host) theHost = [self _cStringForString:host]; + if (username) theUsername = [self _cStringForString:username]; + + // If a password was supplied, use it; otherwise ask the delegate if appropriate + if (password) { + thePassword = [self _cStringForString:password]; + } else if ([delegate respondsToSelector:@selector(keychainPasswordForConnection:)]) { + thePassword = [self _cStringForString:[delegate keychainPasswordForConnection:self]]; + } + + // If set to use a socket and a socket was supplied, use it; otherwise, search for a socket to use + if (useSocket) { + if (socketPath) { + theSocket = [self _cStringForString:socketPath]; + } else { + theSocket = [self _cStringForString:[SPMySQLConnection findSocketPath]]; + } + } + + // Apply SSL if appropriate + if (useSSL) { + const char *theSSLKeyFilePath = NULL; + const char *theSSLCertificatePath = NULL; + const char *theCACertificatePath = NULL; + + if (sslKeyFilePath) { + theSSLKeyFilePath = [[sslKeyFilePath stringByExpandingTildeInPath] UTF8String]; + } + if (sslCertificatePath) { + theSSLCertificatePath = [[sslCertificatePath stringByExpandingTildeInPath] UTF8String]; + } + if (sslCACertificatePath) { + theCACertificatePath = [[sslCACertificatePath stringByExpandingTildeInPath] UTF8String]; + } + + mysql_ssl_set(theConnection, theSSLKeyFilePath, theSSLCertificatePath, theCACertificatePath, NULL, SPMySQLSSLPermissibleCiphers); + } + + MYSQL *connectionStatus = mysql_real_connect(theConnection, theHost, theUsername, thePassword, NULL, (unsigned int)port, theSocket, SPMySQLConnectionOptions); + + // If the connection failed, return NULL + if (theConnection != connectionStatus) { + + // If the connection is the master connection, record the error state + if (isMaster) { + [self _updateLastErrorMessage:[self _stringForCString:mysql_error(theConnection)]]; + [self _updateLastErrorID:mysql_errno(theConnection)]; + } + + return NULL; + } + + // Ensure automatic reconnection is disabled for older versions + theConnection->reconnect = 0; + + // Successful connection - return the handle + return theConnection; +} + +/** + * Loop while a connection isn't available; allows blocking while the network is disconnected + * or still connecting (eg Airport still coming up after sleep). + */ +- (BOOL)_waitForNetworkConnectionWithTimeout:(double)timeoutSeconds +{ + BOOL hostReachable; + Boolean flagsValid; + SCNetworkReachabilityRef reachabilityTarget; + SCNetworkConnectionFlags reachabilityStatus; + + // Set up the reachability target - the host is not important, and is not connected to. + reachabilityTarget = SCNetworkReachabilityCreateWithName(NULL, "dev.mysql.com"); + + // In a loop until success or the timeout, test reachability + uint64_t loopStart_t = mach_absolute_time(); + while (1) { + + // Check reachability + flagsValid = SCNetworkReachabilityGetFlags(reachabilityTarget, &reachabilityStatus); + + hostReachable = flagsValid ? YES : NO; + + // Ensure that the network is reachable + if (hostReachable && !(reachabilityStatus & kSCNetworkFlagsReachable)) hostReachable = NO; + + // Ensure that Airport is up/connected if present + if (hostReachable && (reachabilityStatus & kSCNetworkFlagsConnectionRequired)) hostReachable = NO; + + // If the host *is* reachable, return success + if (hostReachable) return YES; + + // If the timeout has been exceeded, break out of the loop + if (_elapsedSecondsSinceAbsoluteTime(loopStart_t) >= timeoutSeconds) break; + + // Sleep before the next loop iteration + usleep(250000); + } + + // All checks failed - return failure + return NO; +} + +/** + * Update connection variables from the server, collecting state and ensuring + * settings like encoding are in sync. + */ +- (void)_updateConnectionVariables +{ + if (state != SPMySQLConnected && state != SPMySQLConnecting) return; + + // Retrieve all variables from the server in a single query + SPMySQLResult *theResult = [self queryString:@"SHOW VARIABLES"]; + if (![theResult numberOfRows]) return; + + // SHOW VARIABLES can return binary results on certain MySQL 4 versions; ensure string output + [theResult setReturnDataAsStrings:YES]; + + // Convert the result set into a variables dictionary + [theResult setDefaultRowReturnType:SPMySQLResultRowAsArray]; + NSMutableDictionary *variables = [NSMutableDictionary new]; + for (NSArray *variableRow in theResult) { + [variables setObject:[variableRow objectAtIndex:1] forKey:[variableRow objectAtIndex:0]]; + } + + // Copy the server version string to the instance variable + if (serverVersionString) [serverVersionString release], serverVersionString = nil; + serverVersionString = [[variables objectForKey:@"version"] retain]; + + // Get the connection encoding. Although a specific encoding may have been requested on + // connection, it may be overridden by init_connect commands or connection state changes. + // Default to latin1 for older server versions. + NSString *retrievedEncoding = @"latin1"; + if ([variables objectForKey:@"character_set_results"]) { + retrievedEncoding = [variables objectForKey:@"character_set_results"]; + } else if ([variables objectForKey:@"character_set"]) { + retrievedEncoding = [variables objectForKey:@"character_set"]; + } + + // Update instance variables + if (encoding) [encoding release]; + encoding = [[NSString alloc] initWithString:retrievedEncoding]; + stringEncoding = [SPMySQLConnection stringEncodingForMySQLCharset:[self _cStringForString:encoding]]; + encodingUsesLatin1Transport = NO; + + // Check the interactive timeout - if it's below five minutes, increase it to ten + // to imprive timeout/keepalive behaviour + if ([variables objectForKey:@"interactive_timeout"]) { + if ([[variables objectForKey:@"interactive_timeout"] integerValue] < 300) { + [self queryString:@"SET interactive_timeout=600"]; + } + } + + [variables release]; +} + +/** + * Restore the connection encoding details as necessary based on previously set + * details. + */ +- (void)_restoreConnectionVariables +{ + mysqlConnectionThreadId = mySQLConnection->thread_id; + initialConnectTime = mach_absolute_time(); + + [self selectDatabase:database]; + + [self setEncoding:encoding]; + [self setEncodingUsesLatin1Transport:encodingUsesLatin1Transport]; +} + +/** + * If thirty seconds have passed since the last time the connection was + * used, check the connection. + * This minimises the impact of continuous additional connection checks - + * each of which requires a round trip to the server - but handles most + * network issues. + * Returns whether the connection is considered still valid. + */ +- (BOOL)_checkConnectionIfNecessary +{ + + // If the connection was recently used, return success + if (_elapsedSecondsSinceAbsoluteTime(lastConnectionUsedTime) < 30) return YES; + + // Otherwise check the connection + return [self checkConnection]; +} +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h new file mode 100644 index 00000000..f1a1f911 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h @@ -0,0 +1,106 @@ +// +// $Id$ +// +// SPMySQLConnectionDelegate.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on October 20, 2010. +// Copyright (c) 2010 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 + +@protocol SPMySQLConnectionDelegate +@optional + +/** + * Notifies the delegate that a query will be performed. + * + * @param query The query string that will be sent to the MySQL server + * @param connection The connection instance performing the query + */ +- (void)willQueryString:(NSString *)query connection:(id)connection; + +/** + * Notifies the delegate that a query that was just performed gave + * an error. + * + * @param error The query error, as a string + * @param connection The connection instance which received the error + */ +- (void)queryGaveError:(NSString *)error connection:(id)connection; + +/** + * Notifies the delegate that it should display the supplied error. + * The connection may sometimes want to notify the user directly + * about certain issues, and will use this method to allow the + * delegate to do so. + * + * @param title The title of the message to display to the user + * @param message The main text of the message to display to the user + */ +- (void)showErrorWithTitle:(NSString *)title message:(NSString *)message; + +/** + * Requests the keychain password for the connection. + * When a connection is being made to a server, it is best not to + * set the password on the class; instead, it should be kept within + * the secure store, and the other connection details (user, host) + * can be used to look it up and supplied on demand. + * + * @param connection The connection instance to supply the password for + */ +- (NSString *)keychainPasswordForConnection:(id)connection; + +/** + * Notifies the delegate that no underlying connection is available, + * typically when the connection has been asked to perform a query + * or some other action for which a connection must be present. + * Those actions will still return false or error states as appropriate, + * but the delegate may wish to perform actions as a result of a total + * loss of connection. + * + * @param connection The connection instance which has lost the connection to the host + */ +- (void)noConnectionAvailable:(id)connection; + +/** + * Notifies the delegate that although a SSL connection was requested, + * MySQL made the connection without using SSL. This can happen because + * the server connected to doesn't support SSL or had it disabled, or + * that insufficient details were provided to make the connection over + * SSL. + */ +- (void)connectionFellBackToNonSSL:(id)connection; + +/** + * Notifies the delegate that the connection has been temporarily lost, + * and asks the delegate for guidance on how to proceed. If the delegate + * does not implement this method, reconnections will automatically be + * attempted - up to a small limit of attempts. + * + * @param connection The connection instance that requires a decision on how to proceed + */ +- (SPMySQLConnectionLostDecision)connectionLost:(id)connection; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h new file mode 100644 index 00000000..afd7c95a --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h @@ -0,0 +1,77 @@ +// +// $Id$ +// +// SPMySQLConnectionProxy.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on July 2, 2009. +// Copyright (c) 2009 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 + + +/** + * Connection proxy state constants. + */ +typedef enum { + SPMySQLProxyIdle = 0, + SPMySQLProxyConnecting = 1, + SPMySQLProxyWaitingForAuth = 2, + SPMySQLProxyConnected = 3, + SPMySQLProxyForwardingFailed = 4 +} SPMySQLConnectionProxyState; + + +@protocol SPMySQLConnectionProxy + +/** + * All the methods for this protocol are required. + */ + +/** + * Connect the proxy. + */ +- (void)connect; + +/** + * Disconnect the proxy. + */ +- (void)disconnect; + +/** + * Get the current state of the proxy. + */ +- (SPMySQLConnectionProxyState)state; + +/** + * Get the local port being provided by the proxy. + */ +- (NSUInteger)localPort; + +/** + * Sets the method the proxy should call whenever the state of the connection changes. + */ +- (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h new file mode 100644 index 00000000..6fb3d279 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h @@ -0,0 +1,76 @@ +// +// $Id$ +// +// SPMySQLConstants.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +// Connection state +typedef enum { + SPMySQLDisconnected = 0, + SPMySQLConnecting = 1, + SPMySQLConnected = 2, + SPMySQLDisconnecting = 3 +} SPMySQLConnectionState; + +// Connection lock state +typedef enum { + SPMySQLConnectionIdle = 0, + SPMySQLConnectionBusy = 1 +} SPMySQLConnectionLockState; + +// Decision on how to handle lost connections +// Connection check constants +typedef enum { + SPMySQLConnectionLostDisconnect = 0, + SPMySQLConnectionLostReconnect = 1 +} SPMySQLConnectionLostDecision; + +// Result set row types +typedef enum { + SPMySQLResultRowAsDefault = 0, + SPMySQLResultRowAsArray = 1, + SPMySQLResultRowAsDictionary = 2 +} SPMySQLResultRowType; + +// Result charset list +typedef struct { + NSUInteger nr; + const char *name; + const char *collation; + NSUInteger char_minlen; + NSUInteger char_maxlen; +} SPMySQLResultCharset; + +// Query result types +typedef enum { + SPMySQLResultAsResult = 0, + SPMySQLResultAsFastStreamingResult = 1, + SPMySQLResultAsLowMemStreamingResult = 2 +} SPMySQLResultType; \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h b/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h new file mode 100644 index 00000000..a4f07cdd --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h @@ -0,0 +1,47 @@ +// +// $Id$ +// +// SPMySQLFastStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLFastStreamingResult : SPMySQLStreamingResult { + + // Linked list setup + struct st_spmysqlstreamingrowdata *currentDataStoreEntry; + struct st_spmysqlstreamingrowdata *lastDataStoreEntry; + + // Additional counts and memory length tracking + NSUInteger processedRowCount; + + // Thread safety + pthread_mutex_t dataLock; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m b/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m new file mode 100644 index 00000000..f084dee0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m @@ -0,0 +1,417 @@ +// +// $Id$ +// +// SPMySQLFastStreamingResult.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 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 + +#import "SPMySQLFastStreamingResult.h" +#import "SPMySQL Private APIs.h" +#include + +/** + * This type of streaming result operates in a multithreaded fashion - a worker + * thread is set up to download the results as fast as possible in the background, + * while the results are made available via blocking (and so single-thread-compatible) + * calls. This provides the benefit of allowing a progress bar to be shown during + * downloads, and threaded processing, but still has reasonable memory usage for the + * downloaded result - and won't block the server. + */ + +typedef struct st_spmysqlstreamingrowdata { + char *data; + NSUInteger *dataLengths; + struct st_spmysqlstreamingrowdata *nextRow; +} SPMySQLStreamingRowData; + +@interface SPMySQLFastStreamingResult (Private_API) + +- (void) _downloadAllData; + +@end + +#pragma mark - + +@implementation SPMySQLFastStreamingResult + +#pragma mark - + +/** + * Standard init method, constructing the SPMySQLStreamingResult around a MySQL + * result pointer and the encoding to use when working with the data. + * As opposed to SPMySQLResult, defaults to returning rows as arrays, as the result + * sets are likely to be larger and processed in loops. + */ +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection +{ + + // If no result set was passed in, return nil. + if (!theResult) return nil; + + if ((self = [super initWithMySQLResult:theResult stringEncoding:theStringEncoding connection:theConnection])) { + + // Initialise the extra streaming result counts and tracking + processedRowCount = 0; + + // Initialise the linked list pointers + currentDataStoreEntry = NULL; + lastDataStoreEntry = NULL; + + // Set up the linked list lock + pthread_mutex_init(&dataLock, NULL); + + // Start the data download thread + [NSThread detachNewThreadSelector:@selector(_downloadAllData) toTarget:self withObject:nil]; + } + + return self; +} + +/** + * Deallocate the result and ensure the parent connection is unlocked for further use. + */ +- (void)dealloc +{ + + // Ensure all data is processed and the parent connection is unlocked + [self cancelResultLoad]; + + // Destroy the linked list lock + pthread_mutex_destroy(&dataLock); + + // Call dealloc on super to clean up everything else, and to throw an exception if + // the parent connection hasn't been cleaned up correctly. + [super dealloc]; +} + +#pragma mark - +#pragma mark Data retrieval + +/** + * Override the convenience selectors so that forwarding works correctly. + */ +- (id)getRow +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsDefault); +} +- (NSArray *)getRowAsArray +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsArray); +} +- (NSDictionary *)getRowAsDictionary +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsDictionary); +} + +/** + * Retrieve the next row in the result set, using the internal pointer, in the specified + * return format. + * If there are no rows remaining in the current iteration, returns nil. + */ +- (id)getRowAsType:(SPMySQLResultRowType)theType +{ + NSUInteger copiedDataLength = 0; + char *theRowData; + NSUInteger *fieldLengths; + id theReturnData; + + // Lock the data mutex for safe access of variables and counters + pthread_mutex_lock(&dataLock); + + // Determine whether any data is available; if not, wait 1ms before trying again + while (!dataDownloaded && processedRowCount == downloadedRowCount) { + pthread_mutex_unlock(&dataLock); + usleep(1000); + pthread_mutex_lock(&dataLock); + } + + // If all rows have been processed, the end of the result set has been reached; return nil. + if (processedRowCount == downloadedRowCount) { + pthread_mutex_unlock(&dataLock); + return nil; + } + + // Unlock the data mutex now checks are complete + pthread_mutex_unlock(&dataLock); + + // Get a reference to the data for the current row; this is safe to do outside the lock + // as the pointer won't change until markers are changed at the end of this process + theRowData = currentDataStoreEntry->data; + fieldLengths = currentDataStoreEntry->dataLengths; + + // If the target type was unspecified, use the instance default + if (theType == SPMySQLResultRowAsDefault) theType = defaultRowReturnType; + + // Set up the return data as appropriate + if (theType == SPMySQLResultRowAsArray) { + theReturnData = [NSMutableArray arrayWithCapacity:numberOfFields]; + } else { + theReturnData = [NSMutableDictionary dictionaryWithCapacity:numberOfFields]; + } + + // Convert each of the cells in the row in turn + for (NSUInteger i = 0; i < numberOfFields; i++) { + char *rawCellData; + NSUInteger fieldLength = fieldLengths[i]; + + // If the length of this cell is NSNotFound, it's a null reference + if (fieldLength == NSNotFound) { + rawCellData = NULL; + + // Otherwise grab a reference to that data using pointer arithmetic + } else { + rawCellData = theRowData + copiedDataLength; + copiedDataLength += fieldLength; + } + + // Convert to the correct object type + id cellData = SPMySQLResultGetObject(self, rawCellData, fieldLength, fieldTypes[i], i); + + // If object creation failed, display a null + if (!cellData) cellData = [NSNull null]; + + // Add to the result array/dictionary + if (theType == SPMySQLResultRowAsArray) { + [(NSMutableArray *)theReturnData addObject:cellData]; + } else { + [(NSMutableDictionary *)theReturnData setObject:cellData forKey:fieldNames[i]]; + } + } + + // Get a reference to the current item + SPMySQLStreamingRowData *previousDataStoreEntry = currentDataStoreEntry; + + // Lock the mutex before updating counters and linked lists + pthread_mutex_lock(&dataLock); + + // Update the active-data pointer to the next item in the list (which may be NULL) + currentDataStoreEntry = currentDataStoreEntry->nextRow; + + // Increment the processed counter and row index + processedRowCount++; + currentRowIndex++; + if (dataDownloaded && processedRowCount == downloadedRowCount) currentRowIndex = NSNotFound; + + // Unlock the mutex + pthread_mutex_unlock(&dataLock); + + // Free the memory for the processed row + previousDataStoreEntry->nextRow = NULL; + free(previousDataStoreEntry->dataLengths); + if (previousDataStoreEntry->data != NULL) free(previousDataStoreEntry->data); + free(previousDataStoreEntry); + + return theReturnData; +} + +/* + * Ensure the result set is fully processed and freed without any processing + * This method ensures that the connection is unlocked. + */ +- (void)cancelResultLoad +{ + + // If data has already been downloaded successfully, no further action is required + if (dataDownloaded && processedRowCount == downloadedRowCount) return; + + // Loop until all data is fetched and freed + while (1) { + + // Check to see whether we need to wait for the data to be available + // - if so, wait 1ms before checking again + while (!dataDownloaded && processedRowCount == downloadedRowCount) usleep(1000); + + // If all rows have been processed, we're at the end of the result set - return + if (processedRowCount == downloadedRowCount) { + + // We don't need to unlock the connection because the data loading thread + // has already taken care of that + return; + } + + // Mark the row entry as processed without performing any actions + pthread_mutex_lock(&dataLock); + SPMySQLStreamingRowData *previousDataStoreEntry = currentDataStoreEntry; + + // Update the active-data pointer to the next item in the list (which may be NULL) + currentDataStoreEntry = currentDataStoreEntry->nextRow; + + processedRowCount++; + currentRowIndex++; + if (dataDownloaded && processedRowCount == downloadedRowCount) currentRowIndex = NSNotFound; + + // Unlock the mutex + pthread_mutex_unlock(&dataLock); + + // Free the memory for the processed row + previousDataStoreEntry->nextRow = NULL; + free(previousDataStoreEntry->dataLengths); + if (previousDataStoreEntry->data != NULL) free(previousDataStoreEntry->data); + free(previousDataStoreEntry); + } +} + +#pragma mark - +#pragma mark Data retrieval for fast enumeration + +/** + * Implement the fast enumeration endpoint. Rows for fast enumeration are retrieved in + * the instance default, as specified in setDefaultRowReturnType: or defaulting to + * NSDictionary. + */ +- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len +{ + + // If all rows have already been processed, return 0 to stop iteration. + if (dataDownloaded && processedRowCount == downloadedRowCount) return 0; + + // If the MySQL row pointer does not match the requested state, throw an exception + if (state->state != currentRowIndex) { + [NSException raise:NSRangeException format:@"SPMySQLFastStreamingResult results can only be accessed linearly"]; + } + + // Determine how many objects to return. Default to 128 items, or the number of items requested + NSUInteger itemsToReturn = 128; + if (len < 128) itemsToReturn = len; + + // If there are fewer items available in the downloaded-but-processed queue, limit to that + if (downloadedRowCount - processedRowCount < itemsToReturn) { + itemsToReturn = downloadedRowCount - processedRowCount; + } + + // If no rows are available to be processed, wait for a single item to be readied. + if (!itemsToReturn) itemsToReturn = 1; + + // Retrieve rows and add them to the result stack + NSUInteger i, itemsRetrieved = 0; + id eachRow; + for (i = 0; i < itemsToReturn; i++) { + eachRow = SPMySQLResultGetRow(self, SPMySQLResultRowAsDefault); + + // If nil was returned the end of the result resource has been reached + if (!eachRow) { + if (!itemsRetrieved) return 0; + break; + } + + stackbuf[i] = eachRow; + itemsRetrieved++; + } + + state->state += itemsRetrieved; + state->itemsPtr = stackbuf; + state->mutationsPtr = (unsigned long *)self; + + return itemsRetrieved; +} + +@end + +#pragma mark - +#pragma mark Result set internals + +@implementation SPMySQLFastStreamingResult (Private_API) + +/** + * Used internally to download results in a background thread + */ +- (void)_downloadAllData +{ + NSAutoreleasePool *downloadPool = [[NSAutoreleasePool alloc] init]; + MYSQL_ROW theRow; + unsigned long *fieldLengths; + NSUInteger i, dataCopiedLength, rowDataLength; + SPMySQLStreamingRowData *newRowStore; + + size_t sizeOfStreamingRowData = sizeof(SPMySQLStreamingRowData); + size_t sizeOfDataLengths = (size_t)(sizeof(NSUInteger) * numberOfFields); + size_t sizeOfChar = sizeof(char); + + // Loop through the rows until the end of the data is reached - indicated via a NULL + while ( + (*isConnectedPtr)(parentConnection, isConnectedSelector) + && (theRow = mysql_fetch_row(resultSet)) + ) + { + + // Retrieve the lengths of the returned data + fieldLengths = mysql_fetch_lengths(resultSet); + rowDataLength = 0; + dataCopiedLength = 0; + for (i = 0; i < numberOfFields; i++) { + rowDataLength += fieldLengths[i]; + } + + // Initialise memory for the row and set a NULL pointer for the next item + newRowStore = malloc(sizeOfStreamingRowData); + newRowStore->nextRow = NULL; + + // Set up the row data store - a char* - and copy in the data if there is any. + newRowStore->data = malloc(sizeOfChar * rowDataLength); + for (i = 0; i < numberOfFields; i++) { + if (theRow[i] != NULL) { + memcpy(newRowStore->data+dataCopiedLength, theRow[i], fieldLengths[i]); + dataCopiedLength += fieldLengths[i]; + } else { + fieldLengths[i] = NSNotFound; + } + } + + // Set up the memory for, and copy in, the field lengths + newRowStore->dataLengths = memcpy(malloc(sizeOfDataLengths), fieldLengths, sizeOfDataLengths); + + // Lock the data mutex + pthread_mutex_lock(&dataLock); + + // Add the newly allocated row to end of the storage linked list + if (lastDataStoreEntry) { + lastDataStoreEntry->nextRow = newRowStore; + } + lastDataStoreEntry = newRowStore; + if (!currentDataStoreEntry) currentDataStoreEntry = newRowStore; + + // Update the downloaded row count + downloadedRowCount++; + + // Unlock the mutex + pthread_mutex_unlock(&dataLock); + } + + // Update the connection's error statuses to reflect any errors during the content download + [parentConnection _updateLastErrorID:NSNotFound]; + [parentConnection _updateLastErrorMessage:nil]; + + // Unlock the parent connection now all data has been retrieved + [parentConnection _unlockConnection]; + connectionUnlocked = YES; + + dataDownloaded = YES; + [downloadPool drain]; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch b/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch new file mode 100644 index 00000000..8528c29c --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch @@ -0,0 +1,11 @@ +// +// Prefix header for all source files of the 'SPMySQLFramework' target in the 'SPMySQLFramework' project. +// + +#ifdef __OBJC__ + #import +#endif + +#import "mysql.h" +#import "SPMySQL.h" +#import "SPMySQLUtilities.h" \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.h b/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.h new file mode 100644 index 00000000..e1313032 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// SPMySQLGeometryData.h +// sequel-pro +// +// Created by Hans-Jörg Bibiko on October 07, 2010 +// +// 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 + + +@interface SPMySQLGeometryData : NSObject +{ + // Holds the WKB bytes coming from SQL server + Byte *geoBuffer; + + // Holds the buffer length + NSUInteger bufferLength; + +} + +- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length; ++ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length; +- (NSString *)description; +- (NSUInteger)length; +- (NSData *)data; +- (NSString *)wktString; +- (NSDictionary *)coordinates; +- (NSInteger)wkbType; +- (NSString *)wktType; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m b/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m new file mode 100644 index 00000000..3c37e403 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m @@ -0,0 +1,810 @@ +// +// $Id$ +// +// SPMySQLGeometryData.m +// sequel-pro +// +// Created by Hans-Jörg Bibiko on October 07, 2010 +// +// 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 + +#import "SPMySQLGeometryData.h" + +enum wkbType +{ + wkb_point = 1, + wkb_linestring = 2, + wkb_polygon = 3, + wkb_multipoint = 4, + wkb_multilinestring = 5, + wkb_multipolygon = 6, + wkb_geometrycollection = 7 +}; + +typedef struct st_point_2d_ +{ + double x; + double y; +} st_point_2d; + +#define SIZEOF_STORED_UINT32 4 +#define SIZEOF_STORED_DOUBLE 8 +#define POINT_DATA_SIZE (SIZEOF_STORED_DOUBLE*2) +#define WKB_HEADER_SIZE (1+SIZEOF_STORED_UINT32) +#define BUFFER_START 0 + +@implementation SPMySQLGeometryData + +/** + * Initialize the SPMySQLGeometryData object + */ +- (id)init +{ + if ((self = [super init])) { + geoBuffer = nil; + bufferLength = 0; + } + return self; +} + +/** + * Initialize the SPMySQLGeometryData object with the WKB data + */ +- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length +{ + if ((self = [self init])) { + bufferLength = length; + geoBuffer = malloc(bufferLength); + memcpy(geoBuffer, geoData, bufferLength); + } + return self; +} + +/** + * Return an autorelease SPMySQLGeometryData object + */ ++ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length +{ + return [[[SPMySQLGeometryData alloc] initWithBytes:geoData length:length] autorelease]; +} + +/** + * copyWithZone + */ +- (id)copyWithZone:(NSZone *)zone +{ + return [self retain]; +} + +/** + * Return the hex representation of the WKB buffer (only for convenience) + */ +- (NSString*)description +{ + return [[NSData dataWithBytes:geoBuffer length:bufferLength] description]; +} + +/** + * Return the length of the WKB buffer + */ +- (NSUInteger)length +{ + return bufferLength; +} + +/** + * Return NSData pointer of the WKB buffer + */ +- (NSData *)data +{ + return [NSData dataWithBytes:geoBuffer length:bufferLength]; +} + +/** + * Return a human readable WKT string of the internal format (imitating the SQL function AsText()). + */ +- (NSString *)wktString +{ + char byteOrder; + uint32_t geoType, numberOfItems, numberOfSubItems, numberOfSubSubItems, numberOfCollectionItems; + int32_t srid; + st_point_2d aPoint; + + uint32_t i, j, k, n; // Loop counter for numberOf...Items + uint32_t ptr = BUFFER_START; // pointer to geoBuffer while parsing + + NSMutableString *wkt = [NSMutableString string]; + + if (bufferLength < WKB_HEADER_SIZE) + return @""; + + memcpy(&srid, &geoBuffer[0], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + + byteOrder = (char)geoBuffer[ptr]; + + if (byteOrder != 0x1) + return @"Byte order not yet supported"; + + ptr++; + geoType = geoBuffer[ptr]; + ptr += SIZEOF_STORED_UINT32; + + switch (geoType) { + + case wkb_point: + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + return [NSString stringWithFormat:@"POINT(%.16g %.16g)%@", aPoint.x, aPoint.y, (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; + break; + + case wkb_linestring: + [wkt setString:@"LINESTRING("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (i=0; i < numberOfItems; i++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (i < numberOfItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE; + } + [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; + return wkt; + break; + + case wkb_polygon: + [wkt setString:@"POLYGON("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + [wkt appendString:@"("]; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (j < numberOfSubItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE; + } + [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; + } + [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; + return wkt; + break; + + case wkb_multipoint: + [wkt setString:@"MULTIPOINT("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (i < numberOfItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE+WKB_HEADER_SIZE; + } + [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; + return wkt; + break; + + case wkb_multilinestring: + [wkt setString:@"MULTILINESTRING("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + [wkt appendString:@"("]; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (j < numberOfSubItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE; + } + ptr += WKB_HEADER_SIZE; + [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; + } + [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; + return wkt; + break; + + case wkb_multipolygon: + [wkt setString:@"MULTIPOLYGON("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + [wkt appendString:@"("]; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&numberOfSubSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + [wkt appendString:@"("]; + for (k=0; k < numberOfSubSubItems; k++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (k < numberOfSubSubItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE; + } + [wkt appendFormat:@")%@", (j < numberOfSubItems-1) ? @"," : @""]; + } + ptr += WKB_HEADER_SIZE; + [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; + } + [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; + return wkt; + break; + + case wkb_geometrycollection: + [wkt setString:@"GEOMETRYCOLLECTION("]; + numberOfCollectionItems = geoBuffer[ptr]; + ptr += SIZEOF_STORED_UINT32; + + for (n=0; n < numberOfCollectionItems; n++) { + + byteOrder = (char)geoBuffer[ptr]; + + if(byteOrder != 0x1) + return @"Byte order not yet supported"; + + ptr++; + geoType = geoBuffer[ptr]; + ptr += SIZEOF_STORED_UINT32; + + switch(geoType) { + + case wkb_point: + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"POINT(%.16g %.16g)", aPoint.x, aPoint.y]; + ptr += POINT_DATA_SIZE; + break; + + case wkb_linestring: + [wkt appendString:@"LINESTRING("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (i=0; i < numberOfItems; i++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (i < numberOfItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE; + } + [wkt appendString:@")"]; + break; + + case wkb_polygon: + [wkt appendString:@"POLYGON("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + [wkt appendString:@"("]; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (j < numberOfSubItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE; + } + [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; + } + [wkt appendString:@")"]; + break; + + case wkb_multipoint: + [wkt appendString:@"MULTIPOINT("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (i < numberOfItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE+WKB_HEADER_SIZE; + } + ptr -= WKB_HEADER_SIZE; + [wkt appendString:@")"]; + break; + + case wkb_multilinestring: + [wkt appendString:@"MULTILINESTRING("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + [wkt appendString:@"("]; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (j < numberOfSubItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE; + } + ptr += WKB_HEADER_SIZE; + [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; + } + ptr -= WKB_HEADER_SIZE; + [wkt appendString:@")"]; + break; + + case wkb_multipolygon: + [wkt appendString:@"MULTIPOLYGON("]; + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + [wkt appendString:@"("]; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&numberOfSubSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + [wkt appendString:@"("]; + for (k=0; k < numberOfSubSubItems; k++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (k < numberOfSubSubItems-1) ? @"," : @""]; + ptr += POINT_DATA_SIZE; + } + [wkt appendFormat:@")%@", (j < numberOfSubItems-1) ? @"," : @""]; + } + ptr += WKB_HEADER_SIZE; + [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; + } + ptr -= WKB_HEADER_SIZE; + [wkt appendString:@")"]; + break; + + default: + return @"Error geometrycollection type parsing"; + } + [wkt appendString:(n < numberOfCollectionItems-1) ? @"," : @""]; + } + [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; + return wkt; + break; + + default: + return @"Error geometry type parsing"; + } + + return @"Error while parsing"; +} + +/** + * Return a dictionary of coordinates, bbox, etc. to be able to draw the given geometry. + * + * @return A dictionary having the following keys: "bbox" as NSArray of NSNumbers of x_min x_max y_min y_max, "coordinates" as NSArray containing the + * the to be drawn points as NSPoint strings, "type" as NSString + */ +- (NSDictionary *)coordinates +{ + char byteOrder; + uint32_t geoType, numberOfItems, numberOfSubItems, numberOfSubSubItems, numberOfCollectionItems; + int32_t srid; + st_point_2d aPoint; + + uint32_t i, j, k, n; // Loop counter for numberOf...Items + uint32_t ptr = BUFFER_START; // pointer to geoBuffer while parsing + + double x_min = DBL_MAX; + double x_max = -DBL_MAX; + double y_min = DBL_MAX; + double y_max = -DBL_MAX; + + NSMutableArray *coordinates = [NSMutableArray array]; + NSMutableArray *subcoordinates = [NSMutableArray array]; + NSMutableArray *pointcoordinates = [NSMutableArray array]; + NSMutableArray *linecoordinates = [NSMutableArray array]; + NSMutableArray *linesubcoordinates = [NSMutableArray array]; + NSMutableArray *polygoncoordinates = [NSMutableArray array]; + NSMutableArray *polygonsubcoordinates = [NSMutableArray array]; + + if (bufferLength < WKB_HEADER_SIZE) + return nil; + + memcpy(&srid, &geoBuffer[0], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + + byteOrder = (char)geoBuffer[ptr]; + + if (byteOrder != 0x1) + return nil; + + ptr++; + geoType = geoBuffer[ptr]; + ptr += SIZEOF_STORED_UINT32; + + switch(geoType) { + + case wkb_point: + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = aPoint.x; + x_max = aPoint.x; + y_min = aPoint.y; + y_max = aPoint.y; + [coordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSArray arrayWithObjects: + [NSNumber numberWithDouble:x_min], + [NSNumber numberWithDouble:x_max], + [NSNumber numberWithDouble:y_min], + [NSNumber numberWithDouble:y_max], + nil], @"bbox", + coordinates, @"coordinates", + [NSNumber numberWithInt:srid], @"srid", + @"POINT", @"type", + nil]; + break; + + case wkb_linestring: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (i=0; i < numberOfItems; i++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [coordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + } + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSArray arrayWithObjects: + [NSNumber numberWithDouble:x_min], + [NSNumber numberWithDouble:x_max], + [NSNumber numberWithDouble:y_min], + [NSNumber numberWithDouble:y_max], + nil], @"bbox", + [NSArray arrayWithObjects:coordinates,nil], @"coordinates", + @"LINESTRING", @"type", + nil]; + break; + + case wkb_polygon: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [subcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + } + [coordinates addObject:[[subcoordinates copy] autorelease]]; + [subcoordinates removeAllObjects]; + } + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSArray arrayWithObjects: + [NSNumber numberWithDouble:x_min], + [NSNumber numberWithDouble:x_max], + [NSNumber numberWithDouble:y_min], + [NSNumber numberWithDouble:y_max], + nil], @"bbox", + coordinates, @"coordinates", + [NSNumber numberWithInt:srid], @"srid", + @"POLYGON", @"type", + nil]; + break; + + case wkb_multipoint: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [coordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE+WKB_HEADER_SIZE; + } + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSArray arrayWithObjects: + [NSNumber numberWithDouble:x_min], + [NSNumber numberWithDouble:x_max], + [NSNumber numberWithDouble:y_min], + [NSNumber numberWithDouble:y_max], + nil], @"bbox", + coordinates, @"coordinates", + [NSNumber numberWithInt:srid], @"srid", + @"MULTIPOINT", @"type", + nil]; + break; + + case wkb_multilinestring: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [subcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + } + ptr += WKB_HEADER_SIZE; + [coordinates addObject:[[subcoordinates copy] autorelease]]; + [subcoordinates removeAllObjects]; + } + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSArray arrayWithObjects: + [NSNumber numberWithDouble:x_min], + [NSNumber numberWithDouble:x_max], + [NSNumber numberWithDouble:y_min], + [NSNumber numberWithDouble:y_max], + nil], @"bbox", + coordinates, @"coordinates", + [NSNumber numberWithInt:srid], @"srid", + @"MULTILINESTRING", @"type", + nil]; + break; + + case wkb_multipolygon: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&numberOfSubSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (k=0; k < numberOfSubSubItems; k++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [subcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + } + [coordinates addObject:[[subcoordinates copy] autorelease]]; + [subcoordinates removeAllObjects]; + } + ptr += WKB_HEADER_SIZE; + } + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSArray arrayWithObjects: + [NSNumber numberWithDouble:x_min], + [NSNumber numberWithDouble:x_max], + [NSNumber numberWithDouble:y_min], + [NSNumber numberWithDouble:y_max], + nil], @"bbox", + coordinates, @"coordinates", + [NSNumber numberWithInt:srid], @"srid", + @"MULTIPOLYGON", @"type", + nil]; + break; + + case wkb_geometrycollection: + numberOfCollectionItems = geoBuffer[ptr]; + ptr += SIZEOF_STORED_UINT32; + + for (n=0; n < numberOfCollectionItems; n++) { + + byteOrder = (char)geoBuffer[ptr]; + + if (byteOrder != 0x1) + return nil; + + ptr++; + geoType = geoBuffer[ptr]; + ptr += SIZEOF_STORED_UINT32; + + switch(geoType) { + + case wkb_point: + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [pointcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + break; + + case wkb_linestring: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (i=0; i < numberOfItems; i++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [linesubcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + } + [linecoordinates addObject:[[linesubcoordinates copy] autorelease]]; + [linesubcoordinates removeAllObjects]; + break; + + case wkb_polygon: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [polygonsubcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + } + [polygoncoordinates addObject:[[polygonsubcoordinates copy] autorelease]]; + [polygonsubcoordinates removeAllObjects]; + } + break; + + case wkb_multipoint: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [pointcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE+WKB_HEADER_SIZE; + } + ptr -= WKB_HEADER_SIZE; + break; + + case wkb_multilinestring: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [linesubcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + } + [linecoordinates addObject:[[linesubcoordinates copy] autorelease]]; + [linesubcoordinates removeAllObjects]; + ptr += WKB_HEADER_SIZE; + } + ptr -= WKB_HEADER_SIZE; + break; + + case wkb_multipolygon: + memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; + for (i=0; i < numberOfItems; i++) { + memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (j=0; j < numberOfSubItems; j++) { + memcpy(&numberOfSubSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); + ptr += SIZEOF_STORED_UINT32; + for (k=0; k < numberOfSubSubItems; k++) { + memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); + x_min = (aPoint.x < x_min) ? aPoint.x : x_min; + x_max = (aPoint.x > x_max) ? aPoint.x : x_max; + y_min = (aPoint.y < y_min) ? aPoint.y : y_min; + y_max = (aPoint.y > y_max) ? aPoint.y : y_max; + [polygonsubcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; + ptr += POINT_DATA_SIZE; + } + [polygoncoordinates addObject:[[polygonsubcoordinates copy] autorelease]]; + [polygonsubcoordinates removeAllObjects]; + } + ptr += WKB_HEADER_SIZE; + } + ptr -= WKB_HEADER_SIZE; + break; + + default: + return nil; + } + } + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSArray arrayWithObjects: + [NSNumber numberWithDouble:x_min], + [NSNumber numberWithDouble:x_max], + [NSNumber numberWithDouble:y_min], + [NSNumber numberWithDouble:y_max], + nil], @"bbox", + [NSArray arrayWithObjects:pointcoordinates, linecoordinates, polygoncoordinates, nil], @"coordinates", + @"GEOMETRYCOLLECTION", @"type", + nil]; + break; + + default: + return nil; + } + + return nil; +} + +/** + * Return the WKB type of the geoBuffer ie if buffer represents a POINT, LINESTRING, etc. + * according to stored wkbType in header file. It returns -1 if an error occurred. + */ +- (NSInteger)wkbType +{ + char byteOrder; + SInt32 geoType; + + NSUInteger ptr = BUFFER_START; // pointer to geoBuffer while parsing + + if (bufferLength < WKB_HEADER_SIZE) + return -1; + + byteOrder = (char)geoBuffer[ptr]; + + if (byteOrder != 0x1) + return -1; + + ptr++; + geoType = geoBuffer[ptr]; + + if (geoType > 0 && geoType < 8) + return geoType; + else + return -1; + +} + +/** + * Return the WKT type of the geoBuffer ie if buffer represents a POINT, LINESTRING, etc. + * according to stored wkbType in header file. It returns nil if an error occurred. + */ +- (NSString *)wktType +{ + switch ([self wkbType]) + { + case wkb_point: + return @"POINT"; + case wkb_linestring: + return @"LINESTRING"; + case wkb_polygon: + return @"POLYGON"; + case wkb_multipoint: + return @"MULTIPOINT"; + case wkb_multilinestring: + return @"MULTILINESTRING"; + case wkb_multipolygon: + return @"MULTIPOLYGON"; + case wkb_geometrycollection: + return @"GEOMETRYCOLLECTION"; + default: + return nil; + } + return nil; +} + +/** + * dealloc + */ +- (void)dealloc +{ + if (geoBuffer && bufferLength) free(geoBuffer); + [super dealloc]; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h new file mode 100644 index 00000000..20e1ddc9 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h @@ -0,0 +1,38 @@ +// +// $Id$ +// +// Field Definitions.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLResult (Field_Definitions) + +- (NSArray *)fieldDefinitions; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m new file mode 100644 index 00000000..59e75d2f --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m @@ -0,0 +1,557 @@ +// +// $Id$ +// +// Field Definitions.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 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 + +#import "Field Definitions.h" + +@interface SPMySQLResult (Field_Definitions_Private_API) + +- (NSUInteger)_findCharsetMaxByteLengthPerCharForMySQLNumber:(NSUInteger)charsetnr; +- (NSString *)_charsetNameForMySQLNumber:(NSUInteger)charsetnr; +- (NSString *)_charsetCollationForMySQLNumber:(NSUInteger)charsetnr; +- (NSString *)_mysqlTypeToStringForType:(NSUInteger)type withCharsetNr:(NSUInteger)charsetnr withFlags:(NSUInteger)flags withLength:(unsigned long long)length; +- (NSString *)_mysqlTypeToGroupForType:(NSUInteger)type withCharsetNr:(NSUInteger)charsetnr withFlags:(NSUInteger)flags; + +@end + +// Import a private declaration from the SPMySQLResult file for use +@interface SPMySQLResult (Private_API) + +- (NSString *)_stringWithBytes:(const void *)bytes length:(NSUInteger)length; + +@end + +#define MAGIC_BINARY_CHARSET_NR 63 + +const SPMySQLResultCharset SPMySQLCharsetMap[] = +{ + {1, "big5","big5_chinese_ci", 1, 2}, + {3, "dec8", "dec8_swedisch_ci", 1, 1}, + {4, "cp850", "cp850_general_ci", 1, 1}, + {6, "hp8", "hp8_english_ci", 1, 1}, + {7, "koi8r", "koi8r_general_ci", 1, 1}, + {8, "latin1", "latin1_swedish_ci", 1, 1}, + {9, "latin2", "latin2_general_ci", 1, 1}, + {10, "swe7", "swe7_swedish_ci", 1, 1}, + {11, "ascii", "ascii_general_ci", 1, 1}, + {12, "ujis", "ujis_japanese_ci", 1, 3}, + {13, "sjis", "sjis_japanese_ci", 1, 2}, + {16, "hebrew", "hebrew_general_ci", 1, 1}, + {18, "tis620", "tis620_thai_ci", 1, 1}, + {19, "euckr", "euckr_korean_ci", 1, 2}, + {22, "koi8u", "koi8u_general_ci", 1, 1}, + {24, "gb2312", "gb2312_chinese_ci", 1, 2}, + {25, "greek", "greek_general_ci", 1, 1}, + {26, "cp1250", "cp1250_general_ci", 1, 1}, + {28, "gbk", "gbk_chinese_ci", 1, 2}, + {30, "latin5", "latin5_turkish_ci", 1, 1}, + {32, "armscii8", "armscii8_general_ci", 1, 1}, + {33, "utf8", "utf8_general_ci", 1, 3}, + {35, "ucs2", "ucs2_general_ci", 2, 2}, + {36, "cp866", "cp866_general_ci", 1, 1}, + {37, "keybcs2", "keybcs2_general_ci", 1, 1}, + {38, "macce", "macce_general_ci", 1, 1}, + {39, "macroman", "macroman_general_ci", 1, 1}, + {40, "cp852", "cp852_general_ci", 1, 1}, + {41, "latin7", "latin7_general_ci", 1, 1}, + {51, "cp1251", "cp1251_general_ci", 1, 1}, + {57, "cp1256", "cp1256_general_ci", 1, 1}, + {59, "cp1257", "cp1257_general_ci", 1, 1}, + {63, "binary", "binary", 1, 1}, + {92, "geostd8", "geostd8_general_ci", 1, 1}, + {95, "cp932", "cp932_japanese_ci", 1, 2}, + {97, "eucjpms", "eucjpms_japanese_ci", 1, 3}, + {2, "latin2", "latin2_czech_cs", 1, 1}, + {5, "latin1", "latin1_german_ci", 1, 1}, + {14, "cp1251", "cp1251_bulgarian_ci", 1, 1}, + {15, "latin1", "latin1_danish_ci", 1, 1}, + {17, "filename", "filename", 1, 5}, + {20, "latin7", "latin7_estonian_cs", 1, 1}, + {21, "latin2", "latin2_hungarian_ci", 1, 1}, + {23, "cp1251", "cp1251_ukrainian_ci", 1, 1}, + {27, "latin2", "latin2_croatian_ci", 1, 1}, + {29, "cp1257", "cp1257_lithunian_ci", 1, 1}, + {31, "latin1", "latin1_german2_ci", 1, 1}, + {34, "cp1250", "cp1250_czech_cs", 1, 1}, + {42, "latin7", "latin7_general_cs", 1, 1}, + {43, "macce", "macce_bin", 1, 1}, + {44, "cp1250", "cp1250_croatian_ci", 1, 1}, + {45, "utf8", "utf8_general_ci", 1, 1}, + {46, "utf8", "utf8_bin", 1, 1}, + {47, "latin1", "latin1_bin", 1, 1}, + {48, "latin1", "latin1_general_ci", 1, 1}, + {49, "latin1", "latin1_general_cs", 1, 1}, + {50, "cp1251", "cp1251_bin", 1, 1}, + {52, "cp1251", "cp1251_general_cs", 1, 1}, + {53, "macroman", "macroman_bin", 1, 1}, + {58, "cp1257", "cp1257_bin", 1, 1}, + {60, "armascii8", "armascii8_bin", 1, 1}, + {65, "ascii", "ascii_bin", 1, 1}, + {66, "cp1250", "cp1250_bin", 1, 1}, + {67, "cp1256", "cp1256_bin", 1, 1}, + {68, "cp866", "cp866_bin", 1, 1}, + {69, "dec8", "dec8_bin", 1, 1}, + {70, "greek", "greek_bin", 1, 1}, + {71, "hebew", "hebrew_bin", 1, 1}, + {72, "hp8", "hp8_bin", 1, 1}, + {73, "keybcs2", "keybcs2_bin", 1, 1}, + {74, "koi8r", "koi8r_bin", 1, 1}, + {75, "koi8u", "koi8u_bin", 1, 1}, + {77, "latin2", "latin2_bin", 1, 1}, + {78, "latin5", "latin5_bin", 1, 1}, + {79, "latin7", "latin7_bin", 1, 1}, + {80, "cp850", "cp850_bin", 1, 1}, + {81, "cp852", "cp852_bin", 1, 1}, + {82, "swe7", "swe7_bin", 1, 1}, + {93, "geostd8", "geostd8_bin", 1, 1}, + {83, "utf8", "utf8_bin", 1, 3}, + {84, "big5", "big5_bin", 1, 2}, + {85, "euckr", "euckr_bin", 1, 2}, + {86, "gb2312", "gb2312_bin", 1, 2}, + {87, "gbk", "gbk_bin", 1, 2}, + {88, "sjis", "sjis_bin", 1, 2}, + {89, "tis620", "tis620_bin", 1, 1}, + {90, "ucs2", "ucs2_bin", 2, 2}, + {91, "ujis", "ujis_bin", 1, 3}, + {94, "latin1", "latin1_spanish_ci", 1, 1}, + {96, "cp932", "cp932_bin", 1, 2}, + {99, "cp1250", "cp1250_polish_ci", 1, 1}, + {98, "eucjpms", "eucjpms_bin", 1, 3}, + {128, "ucs2", "ucs2_unicode_ci", 2, 2}, + {129, "ucs2", "ucs2_icelandic_ci", 2, 2}, + {130, "ucs2", "ucs2_latvian_ci", 2, 2}, + {131, "ucs2", "ucs2_romanian_ci", 2, 2}, + {132, "ucs2", "ucs2_slovenian_ci", 2, 2}, + {133, "ucs2", "ucs2_polish_ci", 2, 2}, + {134, "ucs2", "ucs2_estonian_ci", 2, 2}, + {135, "ucs2", "ucs2_spanish_ci", 2, 2}, + {136, "ucs2", "ucs2_swedish_ci", 2, 2}, + {137, "ucs2", "ucs2_turkish_ci", 2, 2}, + {138, "ucs2", "ucs2_czech_ci", 2, 2}, + {139, "ucs2", "ucs2_danish_ci", 2, 2}, + {140, "ucs2", "ucs2_lithunian_ci", 2, 2}, + {141, "ucs2", "ucs2_slovak_ci", 2, 2}, + {142, "ucs2", "ucs2_spanish2_ci", 2, 2}, + {143, "ucs2", "ucs2_roman_ci", 2, 2}, + {144, "ucs2", "ucs2_persian_ci", 2, 2}, + {145, "ucs2", "ucs2_esperanto_ci", 2, 2}, + {146, "ucs2", "ucs2_hungarian_ci", 2, 2}, + {147, "ucs2", "ucs2_sinhala_ci", 2, 2}, + {192, "utf8mb3", "utf8mb3_general_ci", 1, 3}, + {193, "utf8mb3", "utf8mb3_icelandic_ci", 1, 3}, + {194, "utf8mb3", "utf8mb3_latvian_ci", 1, 3}, + {195, "utf8mb3", "utf8mb3_romanian_ci", 1, 3}, + {196, "utf8mb3", "utf8mb3_slovenian_ci", 1, 3}, + {197, "utf8mb3", "utf8mb3_polish_ci", 1, 3}, + {198, "utf8mb3", "utf8mb3_estonian_ci", 1, 3}, + {119, "utf8mb3", "utf8mb3_spanish_ci", 1, 3}, + {200, "utf8mb3", "utf8mb3_swedish_ci", 1, 3}, + {201, "utf8mb3", "utf8mb3_turkish_ci", 1, 3}, + {202, "utf8mb3", "utf8mb3_czech_ci", 1, 3}, + {203, "utf8mb3", "utf8mb3_danish_ci", 1, 3}, + {204, "utf8mb3", "utf8mb3_lithunian_ci", 1, 3}, + {205, "utf8mb3", "utf8mb3_slovak_ci", 1, 3}, + {206, "utf8mb3", "utf8mb3_spanish2_ci", 1, 3}, + {207, "utf8mb3", "utf8mb3_roman_ci", 1, 3}, + {208, "utf8mb3", "utf8mb3_persian_ci", 1, 3}, + {209, "utf8mb3", "utf8mb3_esperanto_ci", 1, 3}, + {210, "utf8mb3", "utf8mb3_hungarian_ci", 1, 3}, + {211, "utf8mb3", "utf8mb3_sinhala_ci", 1, 3}, + {224, "utf8", "utf8_unicode_ci", 1, 3}, + {225, "utf8", "utf8_icelandic_ci", 1, 3}, + {226, "utf8", "utf8_latvian_ci", 1, 3}, + {227, "utf8", "utf8_romanian_ci", 1, 3}, + {228, "utf8", "utf8_slovenian_ci", 1, 3}, + {229, "utf8", "utf8_polish_ci", 1, 3}, + {230, "utf8", "utf8_estonian_ci", 1, 3}, + {231, "utf8", "utf8_spanish_ci", 1, 3}, + {232, "utf8", "utf8_swedish_ci", 1, 3}, + {233, "utf8", "utf8_turkish_ci", 1, 3}, + {234, "utf8", "utf8_czech_ci", 1, 3}, + {235, "utf8", "utf8_danish_ci", 1, 3}, + {236, "utf8", "utf8_lithuanian_ci", 1, 3}, + {237, "utf8", "utf8_slovak_ci", 1, 3}, + {238, "utf8", "utf8_spanish2_ci", 1, 3}, + {239, "utf8", "utf8_roman_ci", 1, 3}, + {240, "utf8", "utf8_persian_ci", 1, 3}, + {241, "utf8", "utf8_esperanto_ci", 1, 3}, + {242, "utf8", "utf8_hungarian_ci", 1, 3}, + {243, "utf8", "utf8_sinhala_ci", 1, 3}, + {254, "utf8mb3", "utf8mb3_general_cs", 1, 3}, + {0, NULL, NULL, 0, 0} +}; + +#pragma mark - + +@implementation SPMySQLResult (Field_Definitions) + +/** + * Return an array of NSDictionaries, each containing information about one of + * the columns in the result set. + * MySQL returns non-valid details as empty strings - these are converted to + * unset entries in the dictionary. + */ +- (NSArray *)fieldDefinitions +{ + NSUInteger i; + NSMutableArray *theFieldDefinitions = [NSMutableArray array]; + NSMutableDictionary *eachField; + MYSQL_FIELD mysqlField; + + for (i = 0; i < numberOfFields; i++) { + eachField = [NSMutableDictionary dictionary]; + mysqlField = fieldDefinitions[i]; + + // Record the original column position within the result set + [eachField setObject:[NSString stringWithFormat:@"%llu", (unsigned long long)i] forKey:@"datacolumnindex"]; + + // Record the column name, or alias if one is being used + [eachField setObject:[self _stringWithBytes:mysqlField.name length:mysqlField.name_length] forKey:@"name"]; + + // Record the original column name if using an alias + [eachField setObject:[self _stringWithBytes:mysqlField.org_name length:mysqlField.org_name_length] forKey:@"org_name"]; + + // If the column had an underlying table, record the table name, respecting aliases + if (mysqlField.table_length) { + [eachField setObject:[self _stringWithBytes:mysqlField.table length:mysqlField.table_length] forKey:@"table"]; + } + + // If the column had an underlying table, record the original table name, ignoring aliases + if (mysqlField.org_table_length) { + [eachField setObject:[self _stringWithBytes:mysqlField.org_table length:mysqlField.org_table_length] forKey:@"org_table"]; + } + + // If the column had an underlying database, record the database name + if (mysqlField.db_length) { + [eachField setObject:[self _stringWithBytes:mysqlField.db length:mysqlField.db_length] forKey:@"db"]; + } + + // Width of column (minimum real length in bytes) + [eachField setObject:[NSNumber numberWithUnsignedLongLong:mysqlField.length] forKey:@"byte_length"]; + + // Width of column (as in create) + // TODO: Discuss the logic of this with Hans-Jörg Bibiko; is this related to max_byte_length? + [eachField setObject:[NSNumber numberWithUnsignedLongLong:(mysqlField.length/[self _findCharsetMaxByteLengthPerCharForMySQLNumber:mysqlField.charsetnr])] forKey:@"char_length"]; + + // Max width (bytes) for selected set. Note that this will be 0 for streaming results. + [eachField setObject:[NSNumber numberWithUnsignedLongLong:mysqlField.max_length] forKey:@"max_byte_length"]; + + // Bit-flags that describe the field, in entirety and split out + [eachField setObject:[NSNumber numberWithUnsignedInt:mysqlField.flags] forKey:@"flags"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & NOT_NULL_FLAG) ? YES : NO] forKey:@"null"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & PRI_KEY_FLAG) ? YES : NO] forKey:@"PRI_KEY_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & UNIQUE_KEY_FLAG) ? YES : NO] forKey:@"UNIQUE_KEY_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & MULTIPLE_KEY_FLAG) ? YES : NO] forKey:@"MULTIPLE_KEY_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & BLOB_FLAG) ? YES : NO] forKey:@"BLOB_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & UNSIGNED_FLAG) ? YES : NO] forKey:@"UNSIGNED_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & ZEROFILL_FLAG) ? YES : NO] forKey:@"ZEROFILL_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & BINARY_FLAG) ? YES : NO] forKey:@"BINARY_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & ENUM_FLAG) ? YES : NO] forKey:@"ENUM_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & AUTO_INCREMENT_FLAG) ? YES : NO] forKey:@"AUTO_INCREMENT_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & SET_FLAG) ? YES : NO] forKey:@"SET_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & NUM_FLAG) ? YES : NO] forKey:@"NUM_FLAG"]; + [eachField setObject:[NSNumber numberWithBool:(mysqlField.flags & PART_KEY_FLAG) ? YES : NO] forKey:@"PART_KEY_FLAG"]; + + // For numeric fields, record the number of decimals + [eachField setObject:[NSNumber numberWithUnsignedInteger:mysqlField.decimals] forKey:@"decimals"]; + + // Character set details + [eachField setObject:[NSNumber numberWithUnsignedInteger:mysqlField.charsetnr] forKey:@"charsetnr"]; + [eachField setObject:[self _charsetNameForMySQLNumber:mysqlField.charsetnr] forKey:@"charset_name"]; + [eachField setObject:[self _charsetCollationForMySQLNumber:mysqlField.charsetnr] forKey:@"charset_collation"]; + + /* Table type */ + [eachField setObject:[self _mysqlTypeToStringForType:mysqlField.type + withCharsetNr:mysqlField.charsetnr + withFlags:mysqlField.flags + withLength:mysqlField.length + ] forKey:@"type"]; + + /* Table type group*/ + [eachField setObject:[self _mysqlTypeToGroupForType:mysqlField.type + withCharsetNr:mysqlField.charsetnr + withFlags:mysqlField.flags + ] forKey:@"typegrouping"]; + + [theFieldDefinitions addObject:eachField]; + } + + return theFieldDefinitions; +} + +@end + +#pragma mark - +#pragma mark Field defintion internals + +@implementation SPMySQLResult (Field_Definitions_Private_API) + +/** + * Return the maximum byte length to store a char by using + * a specific mysql_charsetnr + */ +- (NSUInteger)_findCharsetMaxByteLengthPerCharForMySQLNumber:(NSUInteger)charsetnr +{ + const SPMySQLResultCharset *c = SPMySQLCharsetMap; + + do { + if (c->nr == charsetnr) + return c->char_maxlen; + ++c; + } while (c[0].nr != 0); + + return 1; +} + +/** + * Convert a mysql_charsetnr into a charset name as string + */ +- (NSString *)_charsetNameForMySQLNumber:(NSUInteger)charsetnr +{ + const SPMySQLResultCharset *c = SPMySQLCharsetMap; + + do { + if (c->nr == charsetnr) + return [NSString stringWithCString:c->name encoding:stringEncoding]; + ++c; + } while (c[0].nr != 0); + + return @"UNKNOWN"; +} + +/** + * Convert a mysql_charsetnr into a collation name as string + */ +- (NSString *)_charsetCollationForMySQLNumber:(NSUInteger)charsetnr +{ + const SPMySQLResultCharset *c = SPMySQLCharsetMap; + + do { + if (c->nr == charsetnr) + return [NSString stringWithCString:c->collation encoding:stringEncoding]; + ++c; + } while (c[0].nr != 0); + + return @"UNKNOWN"; +} + +/** + * Convert a mysql_type to a string + */ +- (NSString *)_mysqlTypeToStringForType:(NSUInteger)type withCharsetNr:(NSUInteger)charsetnr withFlags:(NSUInteger)flags withLength:(unsigned long long)length +{ + + switch (type) { + + case FIELD_TYPE_BIT: + return @"BIT"; + + case MYSQL_TYPE_DECIMAL: + case MYSQL_TYPE_NEWDECIMAL: + return @"DECIMAL"; + + case MYSQL_TYPE_TINY: + return @"TINYINT"; + + case MYSQL_TYPE_SHORT: + return @"SMALLINT"; + + case MYSQL_TYPE_LONG: + return @"INT"; + + case MYSQL_TYPE_FLOAT: + return @"FLOAT"; + + case MYSQL_TYPE_DOUBLE: + return @"DOUBLE"; + + case MYSQL_TYPE_NULL: + return @"NULL"; + + case MYSQL_TYPE_TIMESTAMP: + return @"TIMESTAMP"; + + case MYSQL_TYPE_LONGLONG: + return @"BIGINT"; + + case MYSQL_TYPE_INT24: + return @"MEDIUMINT"; + + case MYSQL_TYPE_DATE: + return @"DATE"; + + case MYSQL_TYPE_TIME: + return @"TIME"; + + case MYSQL_TYPE_DATETIME: + return @"DATETIME"; + + case MYSQL_TYPE_TINY_BLOB:// should no appear over the wire + case MYSQL_TYPE_MEDIUM_BLOB:// should no appear over the wire + case MYSQL_TYPE_LONG_BLOB:// should no appear over the wire + case MYSQL_TYPE_BLOB: + { + BOOL isBlob = (charsetnr == MAGIC_BINARY_CHARSET_NR); + switch (length/[self _findCharsetMaxByteLengthPerCharForMySQLNumber:charsetnr]) { + case 255: return isBlob? @"TINYBLOB":@"TINYTEXT"; + case 65535: return isBlob? @"BLOB":@"TEXT"; + case 16777215: return isBlob? @"MEDIUMBLOB":@"MEDIUMTEXT"; + case 4294967295: return isBlob? @"LONGBLOB":@"LONGTEXT"; + default: + switch (length) { + case 255: return isBlob? @"TINYBLOB":@"TINYTEXT"; + case 65535: return isBlob? @"BLOB":@"TEXT"; + case 16777215: return isBlob? @"MEDIUMBLOB":@"MEDIUMTEXT"; + case 4294967295: return isBlob? @"LONGBLOB":@"LONGTEXT"; + default: + return @"UNKNOWN"; + } + } + } + + case MYSQL_TYPE_VAR_STRING: + if (flags & ENUM_FLAG) { + return @"ENUM"; + } + if (flags & SET_FLAG) { + return @"SET"; + } + if (charsetnr == MAGIC_BINARY_CHARSET_NR) { + return @"VARBINARY"; + } + return @"VARCHAR"; + + case MYSQL_TYPE_STRING: + if (flags & ENUM_FLAG) { + return @"ENUM"; + } + if (flags & SET_FLAG) { + return @"SET"; + } + if ((flags & BINARY_FLAG) && charsetnr == MAGIC_BINARY_CHARSET_NR) { + return @"BINARY"; + } + return @"CHAR"; + + case MYSQL_TYPE_ENUM: + /* This should never happen */ + return @"ENUM"; + + case MYSQL_TYPE_YEAR: + return @"YEAR"; + + case MYSQL_TYPE_SET: + /* This should never happen */ + return @"SET"; + + case MYSQL_TYPE_GEOMETRY: + return @"GEOMETRY"; + + default: + return @"UNKNOWN"; + } +} + +/** + * Merge mysql_types into type groups + */ +- (NSString *)_mysqlTypeToGroupForType:(NSUInteger)type withCharsetNr:(NSUInteger)charsetnr withFlags:(NSUInteger)flags +{ + switch(type){ + + case FIELD_TYPE_BIT: + return @"bit"; + + case MYSQL_TYPE_TINY: + case MYSQL_TYPE_SHORT: + case MYSQL_TYPE_LONG: + case MYSQL_TYPE_LONGLONG: + case MYSQL_TYPE_INT24: + return @"integer"; + + case MYSQL_TYPE_FLOAT: + case MYSQL_TYPE_DOUBLE: + case MYSQL_TYPE_DECIMAL: + case MYSQL_TYPE_NEWDECIMAL: + return @"float"; + + case MYSQL_TYPE_YEAR: + case MYSQL_TYPE_DATETIME: + case MYSQL_TYPE_TIME: + case MYSQL_TYPE_DATE: + case MYSQL_TYPE_TIMESTAMP: + return @"date"; + + case MYSQL_TYPE_VAR_STRING: + if (flags & ENUM_FLAG) { + return @"enum"; + } + if (flags & SET_FLAG) { + return @"enum"; + } + if (charsetnr == MAGIC_BINARY_CHARSET_NR) { + return @"binary"; + } + return @"string"; + + case MYSQL_TYPE_STRING: + if (flags & ENUM_FLAG) { + return @"enum"; + } + if (flags & SET_FLAG) { + return @"enum"; + } + if ((flags & BINARY_FLAG) && charsetnr == MAGIC_BINARY_CHARSET_NR) { + return @"binary"; + } + return @"string"; + + case MYSQL_TYPE_TINY_BLOB: // should no appear over the wire + case MYSQL_TYPE_MEDIUM_BLOB: // should no appear over the wire + case MYSQL_TYPE_LONG_BLOB: // should no appear over the wire + case MYSQL_TYPE_BLOB: + { + if (charsetnr == MAGIC_BINARY_CHARSET_NR) { + return @"blobdata"; + } else { + return @"textdata"; + } + } + + case MYSQL_TYPE_GEOMETRY: + return @"geometry"; + + default: + return @"blobdata"; + } +} + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h b/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h new file mode 100644 index 00000000..baddf8aa --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h @@ -0,0 +1,120 @@ +// +// $Id$ +// +// SPMySQLResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 26, 2012 +// Copyright (c) 2012 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 + + +typedef enum { + SPMySQLResultFieldAsUnhandled = 0, + SPMySQLResultFieldAsString = 1, + SPMySQLResultFieldAsStringOrBlob = 2, + SPMySQLResultFieldAsBlob = 3, + SPMySQLResultFieldAsBit = 4, + SPMySQLResultFieldAsGeometry = 5, + SPMySQLResultFieldAsNull = 6 +} SPMySQLResultFieldProcessor; + +@interface SPMySQLResult : NSObject { + + // Wrapped MySQL result set and its encoding + struct st_mysql_res *resultSet; + NSStringEncoding stringEncoding; + + // Number of fields in the result set, and the field names and information + NSUInteger numberOfFields; + struct st_mysql_field *fieldDefinitions; + unsigned int *fieldTypes; + NSString **fieldNames; + + // Number of rows in the result set and an internal data position counter + unsigned long long numberOfRows; + unsigned long long currentRowIndex; + + // How long it took to execute the query that produced this result + double queryExecutionTime; + + // The target result set type for fast enumeration and unspecified row retrieval + SPMySQLResultRowType defaultRowReturnType; + + // Whether all data should be returned as strings - useful for working with some older server types + BOOL returnDataAsStrings; +} + +// Master init method +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding; + +// Result set information +- (NSUInteger)numberOfFields; +- (unsigned long long)numberOfRows; + +// Column information +- (NSArray *)fieldNames; + +// Data retrieval (note that fast enumeration is also supported, using instance-default format) +- (void)seekToRow:(unsigned long long)targetRow; +- (id)getRow; +- (NSArray *)getRowAsArray; +- (NSDictionary *)getRowAsDictionary; +- (id)getRowAsType:(SPMySQLResultRowType)theType; + +// Data conversion ++ (NSString *)bitStringWithBytes:(const char *)bytes length:(NSUInteger)length padToLength:(NSUInteger)padLength; + +#pragma mark - +#pragma mark Synthesized properties + +/** + * Set whether the result should return data types as strings. This may be useful + * for queries where the result may be returned in either string or data form, but + * will be converted to string for display and use anyway. + * Note that certain MySQL versions also return data types for strings - eg SHOW + * commands like SHOW CREATE TABLE or SHOW VARIABLES, and this conversion can be + * necessary there. + */ +@property (readwrite, assign) BOOL returnDataAsStrings; + +@property (readwrite, assign) SPMySQLResultRowType defaultRowReturnType; + +@end + +/** + * Set up a static function to allow fast calling with cached selectors + */ +static inline id SPMySQLResultGetRow(SPMySQLResult* self, SPMySQLResultRowType rowType) +{ + typedef id (*SPMySQLResultGetRowMethodPtr)(SPMySQLResult*, SEL, SPMySQLResultRowType); + static SPMySQLResultGetRowMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(getRowAsType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetRowMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, rowType); +} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m b/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m new file mode 100644 index 00000000..b110958d --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m @@ -0,0 +1,459 @@ +// +// $Id$ +// +// SPMySQLResult.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 26, 2012 +// Copyright (c) 2012 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 + +#import "SPMySQLResult.h" +#import "SPMySQL Private APIs.h" + +static SPMySQLResultFieldProcessor fieldProcessingMap[256]; + +@implementation SPMySQLResult + +#pragma mark - +#pragma mark Synthesized properties + +@synthesize returnDataAsStrings; +@synthesize defaultRowReturnType; + +#pragma mark - +#pragma mark Setup and teardown + +/** + * In the one-off class initialisation, set up the result processing map + */ ++ (void)initialize +{ + + // Go through the list of enum_field_types in mysql_com.h, mapping each to the method for + // processing that result set. + fieldProcessingMap[MYSQL_TYPE_DECIMAL] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_TINY] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_SHORT] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_LONG] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_FLOAT] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_DOUBLE] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_NULL] = SPMySQLResultFieldAsNull; + fieldProcessingMap[MYSQL_TYPE_TIMESTAMP] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_LONGLONG] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_INT24] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_DATE] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_TIME] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_DATETIME] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_YEAR] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_NEWDATE] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_VARCHAR] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_BIT] = SPMySQLResultFieldAsBit; + fieldProcessingMap[MYSQL_TYPE_NEWDECIMAL] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_ENUM] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_SET] = SPMySQLResultFieldAsString; + fieldProcessingMap[MYSQL_TYPE_TINY_BLOB] = SPMySQLResultFieldAsBlob; + fieldProcessingMap[MYSQL_TYPE_MEDIUM_BLOB] = SPMySQLResultFieldAsBlob; + fieldProcessingMap[MYSQL_TYPE_LONG_BLOB] = SPMySQLResultFieldAsBlob; + fieldProcessingMap[MYSQL_TYPE_BLOB] = SPMySQLResultFieldAsBlob; + fieldProcessingMap[MYSQL_TYPE_VAR_STRING] = SPMySQLResultFieldAsStringOrBlob; + fieldProcessingMap[MYSQL_TYPE_STRING] = SPMySQLResultFieldAsStringOrBlob; + fieldProcessingMap[MYSQL_TYPE_GEOMETRY] = SPMySQLResultFieldAsGeometry; + fieldProcessingMap[MYSQL_TYPE_DECIMAL] = SPMySQLResultFieldAsString; +} + +/** + * Prevent SPMySQLResults from being init'd normally. + */ +- (id)init +{ + [NSException raise:NSInternalInconsistencyException format:@"SPMySQLResults should not be init'd directly; use initWithMySQLResult:stringEncoding: instead."]; + return nil; +} + +/** + * Standard init method, constructing the SPMySQLResult around a MySQL + * result pointer and the encoding to use when working with the data. + */ +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding +{ + + // If no result set was passed in, return nil. + if (!theResult) return nil; + + if ((self = [super init])) { + stringEncoding = theStringEncoding; + queryExecutionTime = -1; + + // Get the result set and cache the number of fields and number of rows + resultSet = theResult; + numberOfFields = mysql_num_fields(resultSet); + numberOfRows = mysql_num_rows(resultSet); + currentRowIndex = 0; + + // Cache the field definitions and build up an array of cached field names and types + fieldDefinitions = mysql_fetch_fields(resultSet); + fieldNames = malloc(sizeof(NSString *) * numberOfFields); + fieldTypes = malloc(sizeof(unsigned int) * numberOfFields); + for (NSUInteger i = 0; i < numberOfFields; i++) { + MYSQL_FIELD aField = fieldDefinitions[i]; + fieldNames[i] = [[self _stringWithBytes:aField.name length:aField.name_length] retain]; + fieldTypes[i] = aField.type; + } + + defaultRowReturnType = SPMySQLResultRowAsDictionary; + } + + return self; +} + +- (void)dealloc +{ + mysql_free_result(resultSet); + + for (NSUInteger i = 0; i < numberOfFields; i++) { + [fieldNames[i] release]; + } + free(fieldNames); + free(fieldTypes); + + [super dealloc]; +} + +#pragma mark - +#pragma mark Result set information + +/** + * Return the number of fields in the result set. + */ +- (NSUInteger)numberOfFields +{ + return numberOfFields; +} + +/** + * Return the number of data rows in the result set. + */ +- (unsigned long long)numberOfRows +{ + return numberOfRows; +} + +/** + * Return how long the original query took to execute - including connection lag! + */ +- (double)queryExecutionTime +{ + return queryExecutionTime; +} + +#pragma mark - +#pragma mark Column information + +/** + * Retrieve the field names for the result set, as an NSArray of NSStrings. + */ +- (NSArray *)fieldNames +{ + return [NSArray arrayWithObjects:fieldNames count:numberOfFields]; +} + +/** + * For field definitions, see Result Categories/Field Definitions.h/m + */ + +#pragma mark - +#pragma mark Data retrieval + +/** + * Jump to a specified row in the result set; when the result set is initialised, + * the internal pointer automatically starts at 0. + */ +- (void)seekToRow:(unsigned long long)targetRow +{ + if (targetRow == currentRowIndex) return; + + if (targetRow >= numberOfRows) { + targetRow = numberOfRows - 1; + } + + mysql_data_seek(resultSet, targetRow); + currentRowIndex = targetRow; +} + +/** + * Retrieve the next row in the result set, using the internal pointer, in the + * instance-specified setDefaultRowReturnType: row format (defaulting to NSDictionary). + * If there are no rows remaining, returns nil. + */ +- (id)getRow +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsDefault); +} + +/** + * Retrieve the next row in the result set, using the internal pointer, in the + * instance-specified setDefaultRowReturnType: row format (defaulting to NSDictionary). + * If there are no rows remaining, returns nil. + */ +- (NSArray *)getRowAsArray +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsArray); +} + +/** + * Retrieve the next row in the result set, using the internal pointer, in the + * instance-specified setDefaultRowReturnType: row format (defaulting to NSDictionary). + * If there are no rows remaining, returns nil. + */ +- (NSDictionary *)getRowAsDictionary +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsDictionary); +} + +/** + * Retrieve the next row in the result set, using the internal pointer, in the specified + * return format. + * If there are no rows remaining in the current iteration, returns nil. + */ +- (id)getRowAsType:(SPMySQLResultRowType)theType +{ + MYSQL_ROW theRow; + unsigned long *theRowDataLengths; + id theReturnData; + + // Retrieve the row in MySQL format, and the length of the data within the row + theRow = mysql_fetch_row(resultSet); + theRowDataLengths = mysql_fetch_lengths(resultSet); + + // If no row was returned, likely at the end of the result set - return nil + if (!theRow) return nil; + + // If the target type was unspecified, use the instance default + if (theType == SPMySQLResultRowAsDefault) theType = defaultRowReturnType; + + // Set up the return data as appropriate + if (theType == SPMySQLResultRowAsArray) { + theReturnData = [NSMutableArray arrayWithCapacity:numberOfFields]; + } else { + theReturnData = [NSMutableDictionary dictionaryWithCapacity:numberOfFields]; + } + + // Convert each of the cells in the row in turn + for (NSUInteger i = 0; i < numberOfFields; i++) { + id cellData = SPMySQLResultGetObject(self, theRow[i], theRowDataLengths[i], fieldTypes[i], i); + + // If object creation failed, display a null + if (!cellData) cellData = [NSNull null]; + + // Add to the result array/dictionary + if (theType == SPMySQLResultRowAsArray) { + [(NSMutableArray *)theReturnData addObject:cellData]; + } else { + [(NSMutableDictionary *)theReturnData setObject:cellData forKey:fieldNames[i]]; + } + } + + // Increment the row pointer index and set to NSNotFound if the end of the result set has + // been reached + currentRowIndex++; + if (currentRowIndex > numberOfRows) currentRowIndex = NSNotFound; + + return theReturnData; +} + +#pragma mark - +#pragma mark Data retrieval for fast enumeration + +/** + * Implement the fast enumeration endpoint. Rows for fast enumeration are retrieved in + * the instance default, as specified in setDefaultRowReturnType: or defaulting to + * NSDictionary. + */ +- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len +{ + + // If the start index is out of bounds, return 0 to indicate end of results + if (state->state >= numberOfRows) return 0; + + // Sync up the MySQL pointer position with the requested state if necessary + if (state->state != currentRowIndex) [self seekToRow:state->state]; + + // Determine how many objects to return - 128, len, or all items remaining + NSUInteger itemsToReturn = 128; + if (len < 128) itemsToReturn = len; + if (numberOfRows - state->state < itemsToReturn) { + itemsToReturn = (unsigned long)(numberOfRows - state->state); + } + + // Loop through the rows and add them to the result stack + NSUInteger i; + for (i = 0; i < itemsToReturn; i++) { + stackbuf[i] = SPMySQLResultGetRow(self, SPMySQLResultRowAsDefault); + } + + state->state += itemsToReturn; + state->itemsPtr = stackbuf; + state->mutationsPtr = (unsigned long *)self; + + return itemsToReturn; +} + +#pragma mark - +#pragma mark Data conversion + +/** + * Provides a binary representation of the supplied bytes as a returned NSString. + * The resulting binary representation will be zero-padded according to the supplied + * field length. + */ ++ (NSString *)bitStringWithBytes:(const char *)bytes length:(NSUInteger)length padToLength:(NSUInteger)padLength +{ + if (bytes == NULL) return nil; + + NSUInteger i = 0; + length--; + padLength--; + + // Generate a C string representation of the binary data + char *cStringBuffer = malloc(length + 1); + while (i <= padLength) { + cStringBuffer[padLength - i++] = ( (bytes[length - (i >> 3)] >> (i & 0x7)) & 1 ) ? '1' : '0'; + } + cStringBuffer[padLength+1] = '\0'; + + // Convert to a string + NSString *returnString = [NSString stringWithUTF8String:cStringBuffer]; + + // Free up memory and return + free(cStringBuffer); + return returnString; +} + +@end + +#pragma mark - +#pragma mark Result set internals + +@implementation SPMySQLResult (Private_API) + +/** + * Support internal string conversions which take a supplied byte sequence and length + * and convert them to an NSString using the instance encoding. Will preserve nul + * characters within the string. + */ +- (id)_stringWithBytes:(const void *)bytes length:(NSUInteger)length +{ + return [[[NSString alloc] initWithBytes:bytes length:length encoding:stringEncoding] autorelease]; +} + +/** + * Allow setting the execution time for the original query (including connection lag) + * so it can be requested later without relying on connection state. + */ +- (void)_setQueryExecutionTime:(double)theExecutionTime +{ + queryExecutionTime = theExecutionTime; +} + +/** + * Core data conversion function, taking C data provided by MySQL and converting + * to an appropriate return type. + * Note that the data passed in currently is *not* nul-terminated for fast + * streaming results, which is safe for the current implementation but should be + * kept in mind for future changes. + */ +- (id)_getObjectFromBytes:(char *)bytes ofLength:(NSUInteger)length fieldType:(unsigned int)fieldType fieldDefinitionIndex:(NSUInteger)fieldIndex +{ + + // A NULL pointer for the data indicates a null value; return a NSNull object. + if (bytes == NULL) return [NSNull null]; + + // Determine the field processor to use + SPMySQLResultFieldProcessor dataProcessor = fieldProcessingMap[fieldType]; + + // Switch the method to process the cell data based on the field type mapping. + // Do this in two passes: the first as logic may cause a change in processor required. + switch (dataProcessor) { + + // STRING and VAR_STRING types may be strings or binary types; check the binary flag + case SPMySQLResultFieldAsStringOrBlob: + if (fieldDefinitions[fieldIndex].flags & BINARY_FLAG) { + dataProcessor = SPMySQLResultFieldAsBlob; + } + break; + + // Blob types may be automatically be converted to strings, or may be non-binary + case SPMySQLResultFieldAsBlob: + if (!(fieldDefinitions[fieldIndex].flags & BINARY_FLAG)) { + dataProcessor = SPMySQLResultFieldAsString; + } + break; + + // In most cases, use the original data processor. + default: + break; + } + + // If this instance is set to convert all data as strings, alter the processor. + if (returnDataAsStrings && dataProcessor == SPMySQLResultFieldAsBlob) { + dataProcessor = SPMySQLResultFieldAsString; + } + + // Now switch the processing method again to actually process the data. + switch (dataProcessor) { + + // Convert string types using a method that will preserve any nul characters + // within the string + case SPMySQLResultFieldAsString: + case SPMySQLResultFieldAsStringOrBlob: + return [[[NSString alloc] initWithBytes:bytes length:length encoding:stringEncoding] autorelease]; + + // Convert BLOB types to NSData + case SPMySQLResultFieldAsBlob: + return [NSData dataWithBytes:bytes length:length]; + + // For Geometry types, use a special Geometry object to handle their complexity + case SPMySQLResultFieldAsGeometry: + return [SPMySQLGeometryData dataWithBytes:bytes length:length]; + + // For bit fields, get a zero-padded representation of the data + case SPMySQLResultFieldAsBit: + return [SPMySQLResult bitStringWithBytes:bytes length:length padToLength:fieldDefinitions[fieldIndex].length]; + + // Convert null types to NSNulls + case SPMySQLResultFieldAsNull: + return [NSNull null]; + + case SPMySQLResultFieldAsUnhandled: + NSLog(@"SPMySQLResult processing encountered an unknown field type (%d), falling back to NSData handling", fieldType); + return [NSData dataWithBytes:bytes length:length]; + } + + [NSException raise:NSInternalInconsistencyException format:@"Unhandled field type when processing SPMySQLResults"]; + return nil; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.h b/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.h new file mode 100644 index 00000000..5abb85db --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.h @@ -0,0 +1,54 @@ +// +// $Id$ +// +// SPMySQLStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 18, 2012 +// Copyright (c) 2012 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 + +@interface SPMySQLStreamingResult : SPMySQLResult { + + // Keep a link to the parent connection for locking purposes + SPMySQLConnection *parentConnection; + + // Streaming result information and tracking + BOOL connectionUnlocked; + BOOL dataDownloaded; + + // Counts and memory length tracking + NSUInteger downloadedRowCount; + + IMP isConnectedPtr; + SEL isConnectedSelector; +} + +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection; + +// Allow result fetching to be cancelled +- (void)cancelResultLoad; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m b/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m new file mode 100644 index 00000000..b19e5356 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m @@ -0,0 +1,246 @@ +// +// $Id$ +// +// SPMySQLStreamingResult.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 18, 2012 +// Copyright (c) 2012 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 + +#import "SPMySQLStreamingResult.h" +#import "SPMySQL Private APIs.h" + + +/** + * This type of streaming result allows each row to be accessed on-demand; this can + * be dangerous as it means a SELECT will tie up the server for longer, as for MyISAM + * tables updates (and subsequent reads) must block while a SELECT is still running. + * However this can be useful for certain processes such as working with very large + * tables to keep memory usage low. + */ + +@implementation SPMySQLStreamingResult + +#pragma mark - + +/** + * Prevent SPMySQLStreamingResults from being init'd as SPMySQLResults. + */ +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding +{ + [NSException raise:NSInternalInconsistencyException format:@"SPMySQLFullStreamingResults should not be init'd as SPMySQLResults; use initWithMySQLResult:stringEncoding:connection:withFullStreaming: instead."]; + return nil; +} + +/** + * Standard init method, constructing the SPMySQLStreamingResult around a MySQL + * result pointer and the encoding to use when working with the data. + * As opposed to SPMySQLResult, defaults to returning rows as arrays, as the result + * sets are likely to be larger and processed in loops. + */ +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection +{ + + // If no result set was passed in, return nil. + if (!theResult) return nil; + + if ((self = [super initWithMySQLResult:theResult stringEncoding:theStringEncoding])) { + parentConnection = theConnection; + numberOfRows = NSNotFound; + + // Start with no rows downloaded + downloadedRowCount = 0; + dataDownloaded = NO; + connectionUnlocked = NO; + + // Cache the isConnected selector and pointer for fast connection checks + isConnectedSelector = @selector(isConnected); + isConnectedPtr = [parentConnection methodForSelector:isConnectedSelector]; + + // Default to returning rows as arrays + defaultRowReturnType = SPMySQLResultRowAsArray; + } + + return self; +} + +/** + * Deallocate the result and ensure the parent connection is unlocked for further use. + */ +- (void)dealloc +{ + + // Ensure all data is processed and the parent connection is unlocked + [self cancelResultLoad]; + + // Throw an exception if in invalid state + if (!connectionUnlocked) { + [parentConnection _unlockConnection]; + [NSException raise:NSInternalInconsistencyException format:@"Parent connection remains locked after SPMySQLStreamingResult use"]; + } + + [super dealloc]; +} + +#pragma mark - +#pragma mark Result set information + +/** + * Override the return of the number of rows in the data set. If this is used before the + * data is fully downloaded, the number of results is still unknown (the server may still + * be seeking/matching), so return NSNotFound; otherwise the number of rows is returned. + */ +- (unsigned long long)numberOfRows +{ + if (!dataDownloaded) return NSNotFound; + + return downloadedRowCount; +} + +#pragma mark - +#pragma mark Data retrieval + +/** + * Override seeking behaviour: seeking cannot be used in streaming result sets. + */ +- (void)seekToRow:(unsigned long long)targetRow +{ + [NSException raise:NSInternalInconsistencyException format:@"Seeking is not supported in streaming SPMySQL result sets."]; +} + +/** + * Override the convenience selectors so that forwarding works correctly. + */ +- (id)getRow +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsDefault); +} +- (NSArray *)getRowAsArray +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsArray); +} +- (NSDictionary *)getRowAsDictionary +{ + return SPMySQLResultGetRow(self, SPMySQLResultRowAsDictionary); +} + +/** + * Retrieve the next row in the result set, using the internal pointer, in the specified + * return format. + * If there are no rows remaining in the current iteration, returns nil. + */ +- (id)getRowAsType:(SPMySQLResultRowType)theType +{ + id theRow = nil; + + // Ensure that the connection is still up before performing a row fetch + if ((*isConnectedPtr)(parentConnection, isConnectedSelector)) { + + // The core of result fetching in streaming mode is still based around mysql_fetch_row, + // so use the super to perform normal processing. + theRow = [super getRowAsType:theType]; + } + + // If no row was returned, the end of the result set has been reached. Clear markers, + // unlock the parent connection, and return nil. + if (!theRow) { + dataDownloaded = YES; + [parentConnection _unlockConnection]; + connectionUnlocked = YES; + return nil; + } + + // Otherwise increment the data downloaded counter and return the row + downloadedRowCount++; + + return theRow; +} + +/* + * Ensure the result set is fully processed and freed without any processing + * This method ensures that the connection is unlocked. + */ +- (void)cancelResultLoad +{ + + // If data has already been downloaded successfully, no further action is required + if (dataDownloaded) return; + + MYSQL_ROW theRow; + + // Loop through all the rows and ensure the rows are fetched. + while (1) { + theRow = mysql_fetch_row(resultSet); + + // If no data was returned, we're at the end of the result set - return. + if (theRow == NULL) { + dataDownloaded = YES; + if (!connectionUnlocked) { + [parentConnection _unlockConnection]; + connectionUnlocked = YES; + } + return; + } + + downloadedRowCount++; + } +} + +#pragma mark - +#pragma mark Data retrieval for fast enumeration + +/** + * Implement the fast enumeration endpoint. Rows for fast enumeration are retrieved in + * the instance default, as specified in setDefaultRowReturnType: or defaulting to + * NSDictionary. Full streaming mode - return one row at a time. + */ +- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len +{ + + // If all rows have been retrieved, return 0 to stop iteration. + if (dataDownloaded) return 0; + + // If the MySQL row pointer does not match the requested state, throw an exception + if (state->state != currentRowIndex) { + [NSException raise:NSRangeException format:@"SPMySQLStreamingResult results can only be accessed linearly"]; + } + + // In full streaming mode return one row at a time. Retrieve the row. + id theRow = SPMySQLResultGetRow(self, SPMySQLResultRowAsDefault); + + // If nil was returned the end of the result resource has been reached + if (!theRow) return 0; + + // Add the row to the result stack and update state + stackbuf[0] = theRow; + state->state += 1; + state->itemsPtr = stackbuf; + state->mutationsPtr = (unsigned long *)self; + + return 1; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.h b/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.h new file mode 100644 index 00000000..b1f9ccd0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.h @@ -0,0 +1,39 @@ +// +// $Id$ +// +// SPMySQLStringAdditions.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 8, 2012 +// Copyright (c) 2012 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 + + +@interface NSString (SPMySQLStringAdditions) + +- (NSString *)mySQLBacktickQuotedString; +- (NSString *)mySQLTickQuotedString; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m b/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m new file mode 100644 index 00000000..1ea966de --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m @@ -0,0 +1,57 @@ +// +// $Id$ +// +// SPMySQLStringAdditions.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 8, 2012 +// Copyright (c) 2012 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 + +#import "SPMySQLStringAdditions.h" + +@implementation NSString (SPMySQLStringAdditions) + +/** + * Returns the string quoted with backticks as required for MySQL identifiers + * eg.: tablename => `tablename` + * my`table => `my``table` + */ +- (NSString *)mySQLBacktickQuotedString +{ + return [NSString stringWithFormat: @"`%@`", [self stringByReplacingOccurrencesOfString:@"`" withString:@"``"]]; +} + +/** + * Returns the string quoted with ticks as required for MySQL identifiers + * eg.: tablename => 'tablename' + * my'table => 'my''table' + */ +- (NSString *)mySQLTickQuotedString +{ + return [NSString stringWithFormat: @"'%@'", [self stringByReplacingOccurrencesOfString:@"'" withString:@"''"]]; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h b/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h new file mode 100644 index 00000000..0a8c19b0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h @@ -0,0 +1,45 @@ +// +// $Id$ +// +// Locking.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 6, 2012 +// Copyright (c) 2012 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 + +#include + +/** + * Define a project function to make it easier to use mach_absolute_time() + * to track monotonically increasing time. + */ +static double _elapsedSecondsSinceAbsoluteTime(uint64_t comparisonTime) +{ + uint64_t elapsedTime_t = mach_absolute_time() - comparisonTime; + Nanoseconds elapsedTime = AbsoluteToNanoseconds(*(AbsoluteTime *)&(elapsedTime_t)); + + return (((double)UnsignedWideToUInt64(elapsedTime)) * 1e-9); +} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build-mysql-client.sh b/Frameworks/SPMySQLFramework/build-mysql-client.sh new file mode 100755 index 00000000..45e3c465 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build-mysql-client.sh @@ -0,0 +1,171 @@ +#! /bin/ksh + +# +# $Id$ +# +# build-mysql-client.sh +# sequel-pro +# +# Created by Stuart Connolly (stuconnolly.com) +# Copyright (c) 2009 Stuart Connolly. All rights reserved. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# More info at + +# Builds the MySQL client libraries for distrubution in Sequel Pro's MySQL framework. +# +# Paramters: -s -- The path to the MySQL source directory. +# -q -- Quiet. Don't output any compiler messages. +# -c -- Clean the source after build completes. +# -d -- Debug. Output the build statements. + +QUIET='NO' +DEBUG='NO' +CLEAN='NO' + +# C/C++ compiler flags +export CFLAGS='-isysroot /Developer/SDKs/MacOSX10.5.sdk -arch ppc -arch i386 -arch x86_64 -O3 -fno-omit-frame-pointer -fno-exceptions -mmacosx-version-min=10.5' +export CXXFLAGS='-isysroot /Developer/SDKs/MacOSX10.5.sdk -arch ppc -arch i386 -arch x86_64 -O3 -fno-omit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti -mmacosx-version-min=10.5' + +CONFIGURE_OPTIONS='--without-server --enable-thread-safe-client --disable-dependency-tracking --enable-local-infile --with-ssl --enable-assembler --with-mysqld-ldflags=-all-static' +BINARY_DISTRIBUTION_SCRIPT='scripts/make_binary_distribution' + +usage() +{ + cat < [-q -c -d] + +Where: -s -- Path to the MySQL source directory + -q -- Be quiet during the build. Suppress all compiler messages + -c -- Clean the source directory after the build completes + -d -- Debug. Output all the build commands +!EOF +} + +if [ $# -eq 0 ] +then + echo "Invalid number of arguments. I need the path to the MySQL source directory." + echo '' + usage + exit 1 +fi + +echo '' +echo "This script builds the MySQL client libraries for distribution in Sequel Pro's MySQL framework." +echo 'They are all built as 3-way binaries (32 bit PPC, 32/64 bit i386).' +echo '' +echo -n 'This may take a while, are you sure you want to continue [y | n]: ' + +read CONTINUE + +if [ "x${CONTINUE}" == 'xn' ] +then + echo 'Aborting...' + exit 0 +fi + +while getopts ':s:qcd' OPTION +do + case "$OPTION" in + s) MYSQL_SOURCE_DIR="$OPTARG";; + q) QUIET='YES';; + c) CLEAN='YES';; + d) DEBUG='YES';; + *) echo 'Unrecognised option'; usage; exit 1;; + esac +done + +if [ ! -d "$MYSQL_SOURCE_DIR" ] +then + echo "MySQL source directory does not exist at path '${MYSQL_SOURCE_DIR}'." + echo 'Exiting...' + exit 1 +fi + +# Change to source directory +cd "$MYSQL_SOURCE_DIR" + +echo 'Configuring MySQL source...' + +if [ "x${DEBUG}" == 'xYES' ] +then + echo "${MYSQL_SOURCE_DIR}/configure" "$CONFIGURE_OPTIONS" +fi + +if [ "x${QUIET}" == 'xYES' ] +then + ./configure $CONFIGURE_OPTIONS > /dev/null +else + ./configure $CONFIGURE_OPTIONS +fi + +if [ $? -eq 0 ] +then + echo 'Configure successfully completed' +else + echo 'Configure failed. Exiting...' + exit 1 +fi + +echo 'Building client libraries...' + +if [ "x${QUIET}" == 'xYES' ] +then + make > /dev/null +else + make +fi + +if [ $? -eq 0 ] +then + echo 'Building libraries successfully completed' +else + echo 'Building libraries failed. Exiting...' + exit 1 +fi + +echo 'Building binary distribution...' + +if [ "x${QUIET}" == 'xYES' ] +then + $BINARY_DISTRIBUTION_SCRIPT > /dev/null +else + $BINARY_DISTRIBUTION_SCRIPT +fi + +if [ $? -eq 0 ] +then + echo 'Building binary distribution successfully completed' +else + echo 'Building binary distribution failed. Exiting...' + exit 1 +fi + +if [ "x${CLEAN}" == 'xYES' ] +then + echo 'Cleaning build...' + + if [ "x${QUIET}" == 'xYES' ] + then + make clean > /dev/null + else + make clean + fi +fi + +echo 'Building MySQL client libraries successfully completed.' + +exit 0 diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers new file mode 120000 index 00000000..a177d2a6 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources new file mode 120000 index 00000000..953ee36f --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL new file mode 120000 index 00000000..3a3ed2eb --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL @@ -0,0 +1 @@ +Versions/Current/SPMySQL \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h new file mode 100644 index 00000000..332b2680 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h @@ -0,0 +1,49 @@ +// +// $Id$ +// +// Databases & Tables.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 11, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Databases_and_Tables) + +// Database selection +- (BOOL)selectDatabase:(NSString *)aDatabase; + +// Database lists +- (NSArray *)databases; +- (NSArray *)databasesLike:(NSString *)nameLikeString; + +// Table lists +- (NSArray *)tables; +- (NSArray *)tablesLike:(NSString *)nameLikeString; +- (NSArray *)tablesFromDatabase:(NSString *)aDatabase; +- (NSArray *)tablesLike:(NSString *)nameLikeString fromDatabase:(NSString *)aDatabase; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h new file mode 100644 index 00000000..cf132fcf --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h @@ -0,0 +1,36 @@ +// +// $Id$ +// +// Delegate & Proxy.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Delegate_and_Proxy) + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h new file mode 100644 index 00000000..bb5bf25d --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// Encoding.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Encoding) + +// Current connection encoding information +- (NSString *)encoding; +- (NSStringEncoding)stringEncoding; +- (BOOL)encodingUsesLatin1Transport; + +// Setting connection encoding +- (BOOL)setEncoding:(NSString *)theEncoding; +- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1; + +// Encoding storage and restoration +- (void)storeEncodingForRestoration; +- (void)restoreStoredEncoding; + +// Encoding conversion ++ (NSStringEncoding)stringEncodingForMySQLCharset:(const char *)mysqlCharset; ++ (NSString *)mySQLCharsetForStringEncoding:(NSStringEncoding)aStringEncoding; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h new file mode 100644 index 00000000..20e1ddc9 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h @@ -0,0 +1,38 @@ +// +// $Id$ +// +// Field Definitions.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLResult (Field_Definitions) + +- (NSArray *)fieldDefinitions; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h new file mode 100644 index 00000000..faa667d8 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h @@ -0,0 +1,40 @@ +// +// $Id$ +// +// Max Packet Size.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Max_Packet_Size) + +- (NSUInteger)maxQuerySize; +- (BOOL)isMaxQuerySizeEditable; +- (NSUInteger)setGlobalMaxQuerySize:(NSUInteger)newMaxSize; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h new file mode 100644 index 00000000..ff55f796 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h @@ -0,0 +1,103 @@ +// +// $Id$ +// +// Querying & Preparation.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Querying_and_Preparation) + +// Data preparation +- (NSString *)escapeAndQuoteString:(NSString *)theString; +- (NSString *)escapeString:(NSString *)theString includingQuotes:(BOOL)includeQuotes; +- (NSString *)escapeAndQuoteData:(NSData *)theData; +- (NSString *)escapeData:(NSData *)theData includingQuotes:(BOOL)includeQuotes; + +// Queries +- (SPMySQLResult *)queryString:(NSString *)theQueryString; +- (SPMySQLFastStreamingResult *)streamingQueryString:(NSString *)theQueryString; +- (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming; +- (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType; + +// Query information +- (unsigned long long)rowsAffectedByLastQuery; +- (unsigned long long)lastInsertID; + +// Connection and query error state +- (BOOL)queryErrored; +- (NSString *)lastErrorMessage; +- (NSUInteger)lastErrorID; ++ (BOOL)isErrorIDConnectionError:(NSUInteger)theErrorID; + +// Query cancellation +- (void)cancelCurrentQuery; +- (BOOL)lastQueryWasCancelled; +- (BOOL)lastQueryWasCancelledUsingReconnect; + +@end + +/** + * Set up static functions to allow fast calling with cached selectors + */ + +static inline id SPMySQLConnectionEscapeString(SPMySQLConnection* self, NSString *theString, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, BOOL); + static SPMySQLConnectionEscapeStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeString:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theString, encloseInQuotes); +} + +static inline id SPMySQLConnectionEscapeData(SPMySQLConnection* self, NSData *theData, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeDataMethodPtr)(SPMySQLConnection*, SEL, NSData *, BOOL); + static SPMySQLConnectionEscapeDataMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeData:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeDataMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theData, encloseInQuotes); +} + +static inline id SPMySQLConnectionQueryString(SPMySQLConnection* self, NSString *theQueryString, NSStringEncoding theEncoding, SPMySQLResultType theReturnType) +{ + typedef id (*SPMySQLConnectionQueryStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, NSStringEncoding, SPMySQLResultType); + static SPMySQLConnectionQueryStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(queryString:usingEncoding:withResultType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionQueryStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theQueryString, theEncoding, theReturnType); +} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h new file mode 100644 index 00000000..a9150f46 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h @@ -0,0 +1,62 @@ +// +// $Id$ +// +// SPMySQL.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 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 + +@class SPMySQLConnection, SPMySQLResult, SPMySQLStreamingResult, SPMySQLFastStreamingResult; + +// Global include file for the framework. +// Constants +#import "SPMySQLConstants.h" + +// Required category additions +#import "SPMySQLStringAdditions.h" + +// MySQL Connection Delegate and Proxy protocols +#import "SPMySQLConnectionDelegate.h" +#import "SPMySQLConnectionProxy.h" + +// MySQL Connection class and public categories +#import "SPMySQLConnection.h" +#import "Delegate & Proxy.h" +#import "Databases & Tables.h" +#import "Max Packet Size.h" +#import "Querying & Preparation.h" +#import "Encoding.h" +#import "Server Info.h" + +// MySQL result set, streaming subclasses of same, and associated categories +#import "SPMySQLResult.h" +#import "SPMySQLStreamingResult.h" +#import "SPMySQLFastStreamingResult.h" +#import "Field Definitions.h" + +// Result data objects +#import "SPMySQLGeometryData.h" \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h new file mode 100644 index 00000000..db6dc0af --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h @@ -0,0 +1,177 @@ +// +// $Id$ +// +// SPMySQLConnection.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 8, 2012 +// Copyright (c) 2012 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 + +@interface SPMySQLConnection : NSObject { + + // Delegate + NSObject *delegate; + BOOL delegateSupportsWillQueryString; + BOOL delegateSupportsConnectionLost; + BOOL delegateQueryLogging; // Defaults to YES if protocol implemented + + // Basic connection details + NSString *host; + NSString *username; + NSString *password; + NSUInteger port; + BOOL useSocket; + NSString *socketPath; + + // SSL connection details + BOOL useSSL; + NSString *sslKeyFilePath; + NSString *sslCertificatePath; + NSString *sslCACertificatePath; + + // MySQL connection details and state + struct st_mysql *mySQLConnection; + SPMySQLConnectionState state; + BOOL connectedWithSSL; + BOOL userTriggeredDisconnect; + BOOL isReconnecting; + uint64_t initialConnectTime; + unsigned long mysqlConnectionThreadId; + + // Connection proxy + NSObject *proxy; + SPMySQLConnectionProxyState previousProxyState; + BOOL proxyStateChangeNotificationsIgnored; + + // Connection lock to prevent non-thread-safe query misuse + NSConditionLock *connectionLock; + + // Currently selected database + NSString *database; + + // Delegate connection lost decisions + NSUInteger reconnectionRetryAttempts; + SPMySQLConnectionLostDecision lastDelegateDecisionForLostConnection; + NSLock *delegateDecisionLock; + + // Timeout and keep-alive + NSUInteger timeout; + BOOL useKeepAlive; + NSTimer *keepAliveTimer; + CGFloat keepAliveInterval; + uint64_t lastKeepAliveTime; + NSUInteger keepAlivePingFailures; + pthread_t keepAlivePingThread; + BOOL keepAlivePingThreadActive; + BOOL keepAliveLastPingSuccess; + BOOL keepAliveLastPingBlocked; + + // Encoding details - and also a record of any previous encoding to allow + // switching back and forth + NSString *encoding; + NSStringEncoding stringEncoding; + BOOL encodingUsesLatin1Transport; + NSString *previousEncoding; + BOOL previousEncodingUsesLatin1Transport; + + // Server details + NSString *serverVersionString; + + // Error state for the last query or connection state + NSUInteger queryErrorID; + NSString *queryErrorMessage; + + // Query details + unsigned long long lastQueryAffectedRowCount; + unsigned long long lastQueryInsertID; + + // Query cancellation details + BOOL lastQueryWasCancelled; + BOOL lastQueryWasCancelledUsingReconnect; + + // Timing details + uint64_t lastConnectionUsedTime; + double lastQueryExecutionTime; + + // Maximum query size + NSUInteger maxQuerySize; + BOOL maxQuerySizeIsEditable; + BOOL maxQuerySizeEditabilityChecked; + NSUInteger queryActionShouldRestoreMaxQuerySize; + + // Queries + BOOL retryQueriesOnConnectionFailure; +} + +#pragma mark - +#pragma mark Synthesized properties + +@property (readwrite, assign, nonatomic) NSObject *delegate; +@property (readwrite, assign, nonatomic) NSObject *proxy; + +@property (readwrite, retain) NSString *host; +@property (readwrite, retain) NSString *username; +@property (readwrite, retain) NSString *password; +@property (readwrite, assign) NSUInteger port; +@property (readwrite, assign) BOOL useSocket; +@property (readwrite, retain) NSString *socketPath; + +@property (readwrite, assign) BOOL useSSL; +@property (readwrite, retain) NSString *sslKeyFilePath; +@property (readwrite, retain) NSString *sslCertificatePath; +@property (readwrite, retain) NSString *sslCACertificatePath; + +@property (readwrite, assign) NSUInteger timeout; +@property (readwrite, assign) BOOL useKeepAlive; +@property (readwrite, assign) CGFloat keepAliveInterval; + +@property (readonly) unsigned long mysqlConnectionThreadId; +@property (readwrite, assign) BOOL retryQueriesOnConnectionFailure; + +@property (readwrite, assign) BOOL delegateQueryLogging; + +#pragma mark - +#pragma mark Connection and disconnection + +- (BOOL)connect; +- (BOOL)reconnect; +- (void)disconnect; + +#pragma mark - +#pragma mark Connection state + +- (BOOL)isConnected; +- (BOOL)isConnectedViaSSL; +- (BOOL)checkConnection; +- (double)timeConnected; +- (BOOL)userTriggeredDisconnect; + +#pragma mark - +#pragma mark Connection utility + ++ (NSString *)findSocketPath; + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h new file mode 100644 index 00000000..f1a1f911 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h @@ -0,0 +1,106 @@ +// +// $Id$ +// +// SPMySQLConnectionDelegate.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on October 20, 2010. +// Copyright (c) 2010 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 + +@protocol SPMySQLConnectionDelegate +@optional + +/** + * Notifies the delegate that a query will be performed. + * + * @param query The query string that will be sent to the MySQL server + * @param connection The connection instance performing the query + */ +- (void)willQueryString:(NSString *)query connection:(id)connection; + +/** + * Notifies the delegate that a query that was just performed gave + * an error. + * + * @param error The query error, as a string + * @param connection The connection instance which received the error + */ +- (void)queryGaveError:(NSString *)error connection:(id)connection; + +/** + * Notifies the delegate that it should display the supplied error. + * The connection may sometimes want to notify the user directly + * about certain issues, and will use this method to allow the + * delegate to do so. + * + * @param title The title of the message to display to the user + * @param message The main text of the message to display to the user + */ +- (void)showErrorWithTitle:(NSString *)title message:(NSString *)message; + +/** + * Requests the keychain password for the connection. + * When a connection is being made to a server, it is best not to + * set the password on the class; instead, it should be kept within + * the secure store, and the other connection details (user, host) + * can be used to look it up and supplied on demand. + * + * @param connection The connection instance to supply the password for + */ +- (NSString *)keychainPasswordForConnection:(id)connection; + +/** + * Notifies the delegate that no underlying connection is available, + * typically when the connection has been asked to perform a query + * or some other action for which a connection must be present. + * Those actions will still return false or error states as appropriate, + * but the delegate may wish to perform actions as a result of a total + * loss of connection. + * + * @param connection The connection instance which has lost the connection to the host + */ +- (void)noConnectionAvailable:(id)connection; + +/** + * Notifies the delegate that although a SSL connection was requested, + * MySQL made the connection without using SSL. This can happen because + * the server connected to doesn't support SSL or had it disabled, or + * that insufficient details were provided to make the connection over + * SSL. + */ +- (void)connectionFellBackToNonSSL:(id)connection; + +/** + * Notifies the delegate that the connection has been temporarily lost, + * and asks the delegate for guidance on how to proceed. If the delegate + * does not implement this method, reconnections will automatically be + * attempted - up to a small limit of attempts. + * + * @param connection The connection instance that requires a decision on how to proceed + */ +- (SPMySQLConnectionLostDecision)connectionLost:(id)connection; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h new file mode 100644 index 00000000..afd7c95a --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h @@ -0,0 +1,77 @@ +// +// $Id$ +// +// SPMySQLConnectionProxy.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on July 2, 2009. +// Copyright (c) 2009 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 + + +/** + * Connection proxy state constants. + */ +typedef enum { + SPMySQLProxyIdle = 0, + SPMySQLProxyConnecting = 1, + SPMySQLProxyWaitingForAuth = 2, + SPMySQLProxyConnected = 3, + SPMySQLProxyForwardingFailed = 4 +} SPMySQLConnectionProxyState; + + +@protocol SPMySQLConnectionProxy + +/** + * All the methods for this protocol are required. + */ + +/** + * Connect the proxy. + */ +- (void)connect; + +/** + * Disconnect the proxy. + */ +- (void)disconnect; + +/** + * Get the current state of the proxy. + */ +- (SPMySQLConnectionProxyState)state; + +/** + * Get the local port being provided by the proxy. + */ +- (NSUInteger)localPort; + +/** + * Sets the method the proxy should call whenever the state of the connection changes. + */ +- (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h new file mode 100644 index 00000000..6fb3d279 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h @@ -0,0 +1,76 @@ +// +// $Id$ +// +// SPMySQLConstants.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +// Connection state +typedef enum { + SPMySQLDisconnected = 0, + SPMySQLConnecting = 1, + SPMySQLConnected = 2, + SPMySQLDisconnecting = 3 +} SPMySQLConnectionState; + +// Connection lock state +typedef enum { + SPMySQLConnectionIdle = 0, + SPMySQLConnectionBusy = 1 +} SPMySQLConnectionLockState; + +// Decision on how to handle lost connections +// Connection check constants +typedef enum { + SPMySQLConnectionLostDisconnect = 0, + SPMySQLConnectionLostReconnect = 1 +} SPMySQLConnectionLostDecision; + +// Result set row types +typedef enum { + SPMySQLResultRowAsDefault = 0, + SPMySQLResultRowAsArray = 1, + SPMySQLResultRowAsDictionary = 2 +} SPMySQLResultRowType; + +// Result charset list +typedef struct { + NSUInteger nr; + const char *name; + const char *collation; + NSUInteger char_minlen; + NSUInteger char_maxlen; +} SPMySQLResultCharset; + +// Query result types +typedef enum { + SPMySQLResultAsResult = 0, + SPMySQLResultAsFastStreamingResult = 1, + SPMySQLResultAsLowMemStreamingResult = 2 +} SPMySQLResultType; \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h new file mode 100644 index 00000000..a4f07cdd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h @@ -0,0 +1,47 @@ +// +// $Id$ +// +// SPMySQLFastStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLFastStreamingResult : SPMySQLStreamingResult { + + // Linked list setup + struct st_spmysqlstreamingrowdata *currentDataStoreEntry; + struct st_spmysqlstreamingrowdata *lastDataStoreEntry; + + // Additional counts and memory length tracking + NSUInteger processedRowCount; + + // Thread safety + pthread_mutex_t dataLock; +} + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h new file mode 100644 index 00000000..e1313032 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// SPMySQLGeometryData.h +// sequel-pro +// +// Created by Hans-Jörg Bibiko on October 07, 2010 +// +// 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 + + +@interface SPMySQLGeometryData : NSObject +{ + // Holds the WKB bytes coming from SQL server + Byte *geoBuffer; + + // Holds the buffer length + NSUInteger bufferLength; + +} + +- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length; ++ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length; +- (NSString *)description; +- (NSUInteger)length; +- (NSData *)data; +- (NSString *)wktString; +- (NSDictionary *)coordinates; +- (NSInteger)wkbType; +- (NSString *)wktType; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h new file mode 100644 index 00000000..baddf8aa --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h @@ -0,0 +1,120 @@ +// +// $Id$ +// +// SPMySQLResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 26, 2012 +// Copyright (c) 2012 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 + + +typedef enum { + SPMySQLResultFieldAsUnhandled = 0, + SPMySQLResultFieldAsString = 1, + SPMySQLResultFieldAsStringOrBlob = 2, + SPMySQLResultFieldAsBlob = 3, + SPMySQLResultFieldAsBit = 4, + SPMySQLResultFieldAsGeometry = 5, + SPMySQLResultFieldAsNull = 6 +} SPMySQLResultFieldProcessor; + +@interface SPMySQLResult : NSObject { + + // Wrapped MySQL result set and its encoding + struct st_mysql_res *resultSet; + NSStringEncoding stringEncoding; + + // Number of fields in the result set, and the field names and information + NSUInteger numberOfFields; + struct st_mysql_field *fieldDefinitions; + unsigned int *fieldTypes; + NSString **fieldNames; + + // Number of rows in the result set and an internal data position counter + unsigned long long numberOfRows; + unsigned long long currentRowIndex; + + // How long it took to execute the query that produced this result + double queryExecutionTime; + + // The target result set type for fast enumeration and unspecified row retrieval + SPMySQLResultRowType defaultRowReturnType; + + // Whether all data should be returned as strings - useful for working with some older server types + BOOL returnDataAsStrings; +} + +// Master init method +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding; + +// Result set information +- (NSUInteger)numberOfFields; +- (unsigned long long)numberOfRows; + +// Column information +- (NSArray *)fieldNames; + +// Data retrieval (note that fast enumeration is also supported, using instance-default format) +- (void)seekToRow:(unsigned long long)targetRow; +- (id)getRow; +- (NSArray *)getRowAsArray; +- (NSDictionary *)getRowAsDictionary; +- (id)getRowAsType:(SPMySQLResultRowType)theType; + +// Data conversion ++ (NSString *)bitStringWithBytes:(const char *)bytes length:(NSUInteger)length padToLength:(NSUInteger)padLength; + +#pragma mark - +#pragma mark Synthesized properties + +/** + * Set whether the result should return data types as strings. This may be useful + * for queries where the result may be returned in either string or data form, but + * will be converted to string for display and use anyway. + * Note that certain MySQL versions also return data types for strings - eg SHOW + * commands like SHOW CREATE TABLE or SHOW VARIABLES, and this conversion can be + * necessary there. + */ +@property (readwrite, assign) BOOL returnDataAsStrings; + +@property (readwrite, assign) SPMySQLResultRowType defaultRowReturnType; + +@end + +/** + * Set up a static function to allow fast calling with cached selectors + */ +static inline id SPMySQLResultGetRow(SPMySQLResult* self, SPMySQLResultRowType rowType) +{ + typedef id (*SPMySQLResultGetRowMethodPtr)(SPMySQLResult*, SEL, SPMySQLResultRowType); + static SPMySQLResultGetRowMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(getRowAsType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetRowMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, rowType); +} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h new file mode 100644 index 00000000..5abb85db --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h @@ -0,0 +1,54 @@ +// +// $Id$ +// +// SPMySQLStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 18, 2012 +// Copyright (c) 2012 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 + +@interface SPMySQLStreamingResult : SPMySQLResult { + + // Keep a link to the parent connection for locking purposes + SPMySQLConnection *parentConnection; + + // Streaming result information and tracking + BOOL connectionUnlocked; + BOOL dataDownloaded; + + // Counts and memory length tracking + NSUInteger downloadedRowCount; + + IMP isConnectedPtr; + SEL isConnectedSelector; +} + +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection; + +// Allow result fetching to be cancelled +- (void)cancelResultLoad; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h new file mode 100644 index 00000000..d8f5f183 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h @@ -0,0 +1,50 @@ +// +// $Id$ +// +// Server Info.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + +@class SPMySQLResult; + +@interface SPMySQLConnection (Server_Info) + +// Server version information +- (NSString *)serverVersionString; +- (NSUInteger)serverMajorVersion; +- (NSUInteger)serverMinorVersion; +- (NSUInteger)serverReleaseVersion; + +// Server version comparisons +- (BOOL)serverVersionIsGreaterThanOrEqualTo:(NSUInteger)aMajorVersion minorVersion:(NSUInteger)aMinorVersion releaseVersion:(NSUInteger)aReleaseVersion; + +// Server tasks & processes +- (SPMySQLResult *)listProcesses; +- (BOOL)killQueryOnThreadID:(unsigned long)theThreadID; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings new file mode 100644 index 00000000..dea12de4 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings differ diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist new file mode 100644 index 00000000..6f7e4285 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,40 @@ + + + + + BuildMachineOSBuild + 11D50b + CFBundleDevelopmentRegion + English + CFBundleExecutable + SPMySQL + CFBundleIdentifier + com.yourcompany.SPMySQL + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + SPMySQL + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + SPDT + CFBundleVersion + 1 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 10M2518 + DTPlatformVersion + PG + DTSDKBuild + 9L31a + DTSDKName + macosx10.5 + DTXcode + 0400 + DTXcodeBuild + 10M2518 + + diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL new file mode 100755 index 00000000..8b1d8803 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL differ diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current new file mode 120000 index 00000000..8c7e5a66 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers new file mode 120000 index 00000000..a177d2a6 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources new file mode 120000 index 00000000..953ee36f --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL new file mode 120000 index 00000000..3a3ed2eb --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL @@ -0,0 +1 @@ +Versions/Current/SPMySQL \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h new file mode 100644 index 00000000..332b2680 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h @@ -0,0 +1,49 @@ +// +// $Id$ +// +// Databases & Tables.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 11, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Databases_and_Tables) + +// Database selection +- (BOOL)selectDatabase:(NSString *)aDatabase; + +// Database lists +- (NSArray *)databases; +- (NSArray *)databasesLike:(NSString *)nameLikeString; + +// Table lists +- (NSArray *)tables; +- (NSArray *)tablesLike:(NSString *)nameLikeString; +- (NSArray *)tablesFromDatabase:(NSString *)aDatabase; +- (NSArray *)tablesLike:(NSString *)nameLikeString fromDatabase:(NSString *)aDatabase; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h new file mode 100644 index 00000000..cf132fcf --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h @@ -0,0 +1,36 @@ +// +// $Id$ +// +// Delegate & Proxy.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Delegate_and_Proxy) + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h new file mode 100644 index 00000000..bb5bf25d --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// Encoding.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Encoding) + +// Current connection encoding information +- (NSString *)encoding; +- (NSStringEncoding)stringEncoding; +- (BOOL)encodingUsesLatin1Transport; + +// Setting connection encoding +- (BOOL)setEncoding:(NSString *)theEncoding; +- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1; + +// Encoding storage and restoration +- (void)storeEncodingForRestoration; +- (void)restoreStoredEncoding; + +// Encoding conversion ++ (NSStringEncoding)stringEncodingForMySQLCharset:(const char *)mysqlCharset; ++ (NSString *)mySQLCharsetForStringEncoding:(NSStringEncoding)aStringEncoding; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h new file mode 100644 index 00000000..20e1ddc9 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h @@ -0,0 +1,38 @@ +// +// $Id$ +// +// Field Definitions.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLResult (Field_Definitions) + +- (NSArray *)fieldDefinitions; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h new file mode 100644 index 00000000..faa667d8 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h @@ -0,0 +1,40 @@ +// +// $Id$ +// +// Max Packet Size.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Max_Packet_Size) + +- (NSUInteger)maxQuerySize; +- (BOOL)isMaxQuerySizeEditable; +- (NSUInteger)setGlobalMaxQuerySize:(NSUInteger)newMaxSize; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h new file mode 100644 index 00000000..ff55f796 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h @@ -0,0 +1,103 @@ +// +// $Id$ +// +// Querying & Preparation.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Querying_and_Preparation) + +// Data preparation +- (NSString *)escapeAndQuoteString:(NSString *)theString; +- (NSString *)escapeString:(NSString *)theString includingQuotes:(BOOL)includeQuotes; +- (NSString *)escapeAndQuoteData:(NSData *)theData; +- (NSString *)escapeData:(NSData *)theData includingQuotes:(BOOL)includeQuotes; + +// Queries +- (SPMySQLResult *)queryString:(NSString *)theQueryString; +- (SPMySQLFastStreamingResult *)streamingQueryString:(NSString *)theQueryString; +- (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming; +- (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType; + +// Query information +- (unsigned long long)rowsAffectedByLastQuery; +- (unsigned long long)lastInsertID; + +// Connection and query error state +- (BOOL)queryErrored; +- (NSString *)lastErrorMessage; +- (NSUInteger)lastErrorID; ++ (BOOL)isErrorIDConnectionError:(NSUInteger)theErrorID; + +// Query cancellation +- (void)cancelCurrentQuery; +- (BOOL)lastQueryWasCancelled; +- (BOOL)lastQueryWasCancelledUsingReconnect; + +@end + +/** + * Set up static functions to allow fast calling with cached selectors + */ + +static inline id SPMySQLConnectionEscapeString(SPMySQLConnection* self, NSString *theString, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, BOOL); + static SPMySQLConnectionEscapeStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeString:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theString, encloseInQuotes); +} + +static inline id SPMySQLConnectionEscapeData(SPMySQLConnection* self, NSData *theData, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeDataMethodPtr)(SPMySQLConnection*, SEL, NSData *, BOOL); + static SPMySQLConnectionEscapeDataMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeData:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeDataMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theData, encloseInQuotes); +} + +static inline id SPMySQLConnectionQueryString(SPMySQLConnection* self, NSString *theQueryString, NSStringEncoding theEncoding, SPMySQLResultType theReturnType) +{ + typedef id (*SPMySQLConnectionQueryStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, NSStringEncoding, SPMySQLResultType); + static SPMySQLConnectionQueryStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(queryString:usingEncoding:withResultType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionQueryStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theQueryString, theEncoding, theReturnType); +} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h new file mode 100644 index 00000000..a9150f46 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h @@ -0,0 +1,62 @@ +// +// $Id$ +// +// SPMySQL.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 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 + +@class SPMySQLConnection, SPMySQLResult, SPMySQLStreamingResult, SPMySQLFastStreamingResult; + +// Global include file for the framework. +// Constants +#import "SPMySQLConstants.h" + +// Required category additions +#import "SPMySQLStringAdditions.h" + +// MySQL Connection Delegate and Proxy protocols +#import "SPMySQLConnectionDelegate.h" +#import "SPMySQLConnectionProxy.h" + +// MySQL Connection class and public categories +#import "SPMySQLConnection.h" +#import "Delegate & Proxy.h" +#import "Databases & Tables.h" +#import "Max Packet Size.h" +#import "Querying & Preparation.h" +#import "Encoding.h" +#import "Server Info.h" + +// MySQL result set, streaming subclasses of same, and associated categories +#import "SPMySQLResult.h" +#import "SPMySQLStreamingResult.h" +#import "SPMySQLFastStreamingResult.h" +#import "Field Definitions.h" + +// Result data objects +#import "SPMySQLGeometryData.h" \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h new file mode 100644 index 00000000..db6dc0af --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h @@ -0,0 +1,177 @@ +// +// $Id$ +// +// SPMySQLConnection.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 8, 2012 +// Copyright (c) 2012 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 + +@interface SPMySQLConnection : NSObject { + + // Delegate + NSObject *delegate; + BOOL delegateSupportsWillQueryString; + BOOL delegateSupportsConnectionLost; + BOOL delegateQueryLogging; // Defaults to YES if protocol implemented + + // Basic connection details + NSString *host; + NSString *username; + NSString *password; + NSUInteger port; + BOOL useSocket; + NSString *socketPath; + + // SSL connection details + BOOL useSSL; + NSString *sslKeyFilePath; + NSString *sslCertificatePath; + NSString *sslCACertificatePath; + + // MySQL connection details and state + struct st_mysql *mySQLConnection; + SPMySQLConnectionState state; + BOOL connectedWithSSL; + BOOL userTriggeredDisconnect; + BOOL isReconnecting; + uint64_t initialConnectTime; + unsigned long mysqlConnectionThreadId; + + // Connection proxy + NSObject *proxy; + SPMySQLConnectionProxyState previousProxyState; + BOOL proxyStateChangeNotificationsIgnored; + + // Connection lock to prevent non-thread-safe query misuse + NSConditionLock *connectionLock; + + // Currently selected database + NSString *database; + + // Delegate connection lost decisions + NSUInteger reconnectionRetryAttempts; + SPMySQLConnectionLostDecision lastDelegateDecisionForLostConnection; + NSLock *delegateDecisionLock; + + // Timeout and keep-alive + NSUInteger timeout; + BOOL useKeepAlive; + NSTimer *keepAliveTimer; + CGFloat keepAliveInterval; + uint64_t lastKeepAliveTime; + NSUInteger keepAlivePingFailures; + pthread_t keepAlivePingThread; + BOOL keepAlivePingThreadActive; + BOOL keepAliveLastPingSuccess; + BOOL keepAliveLastPingBlocked; + + // Encoding details - and also a record of any previous encoding to allow + // switching back and forth + NSString *encoding; + NSStringEncoding stringEncoding; + BOOL encodingUsesLatin1Transport; + NSString *previousEncoding; + BOOL previousEncodingUsesLatin1Transport; + + // Server details + NSString *serverVersionString; + + // Error state for the last query or connection state + NSUInteger queryErrorID; + NSString *queryErrorMessage; + + // Query details + unsigned long long lastQueryAffectedRowCount; + unsigned long long lastQueryInsertID; + + // Query cancellation details + BOOL lastQueryWasCancelled; + BOOL lastQueryWasCancelledUsingReconnect; + + // Timing details + uint64_t lastConnectionUsedTime; + double lastQueryExecutionTime; + + // Maximum query size + NSUInteger maxQuerySize; + BOOL maxQuerySizeIsEditable; + BOOL maxQuerySizeEditabilityChecked; + NSUInteger queryActionShouldRestoreMaxQuerySize; + + // Queries + BOOL retryQueriesOnConnectionFailure; +} + +#pragma mark - +#pragma mark Synthesized properties + +@property (readwrite, assign, nonatomic) NSObject *delegate; +@property (readwrite, assign, nonatomic) NSObject *proxy; + +@property (readwrite, retain) NSString *host; +@property (readwrite, retain) NSString *username; +@property (readwrite, retain) NSString *password; +@property (readwrite, assign) NSUInteger port; +@property (readwrite, assign) BOOL useSocket; +@property (readwrite, retain) NSString *socketPath; + +@property (readwrite, assign) BOOL useSSL; +@property (readwrite, retain) NSString *sslKeyFilePath; +@property (readwrite, retain) NSString *sslCertificatePath; +@property (readwrite, retain) NSString *sslCACertificatePath; + +@property (readwrite, assign) NSUInteger timeout; +@property (readwrite, assign) BOOL useKeepAlive; +@property (readwrite, assign) CGFloat keepAliveInterval; + +@property (readonly) unsigned long mysqlConnectionThreadId; +@property (readwrite, assign) BOOL retryQueriesOnConnectionFailure; + +@property (readwrite, assign) BOOL delegateQueryLogging; + +#pragma mark - +#pragma mark Connection and disconnection + +- (BOOL)connect; +- (BOOL)reconnect; +- (void)disconnect; + +#pragma mark - +#pragma mark Connection state + +- (BOOL)isConnected; +- (BOOL)isConnectedViaSSL; +- (BOOL)checkConnection; +- (double)timeConnected; +- (BOOL)userTriggeredDisconnect; + +#pragma mark - +#pragma mark Connection utility + ++ (NSString *)findSocketPath; + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h new file mode 100644 index 00000000..f1a1f911 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h @@ -0,0 +1,106 @@ +// +// $Id$ +// +// SPMySQLConnectionDelegate.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on October 20, 2010. +// Copyright (c) 2010 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 + +@protocol SPMySQLConnectionDelegate +@optional + +/** + * Notifies the delegate that a query will be performed. + * + * @param query The query string that will be sent to the MySQL server + * @param connection The connection instance performing the query + */ +- (void)willQueryString:(NSString *)query connection:(id)connection; + +/** + * Notifies the delegate that a query that was just performed gave + * an error. + * + * @param error The query error, as a string + * @param connection The connection instance which received the error + */ +- (void)queryGaveError:(NSString *)error connection:(id)connection; + +/** + * Notifies the delegate that it should display the supplied error. + * The connection may sometimes want to notify the user directly + * about certain issues, and will use this method to allow the + * delegate to do so. + * + * @param title The title of the message to display to the user + * @param message The main text of the message to display to the user + */ +- (void)showErrorWithTitle:(NSString *)title message:(NSString *)message; + +/** + * Requests the keychain password for the connection. + * When a connection is being made to a server, it is best not to + * set the password on the class; instead, it should be kept within + * the secure store, and the other connection details (user, host) + * can be used to look it up and supplied on demand. + * + * @param connection The connection instance to supply the password for + */ +- (NSString *)keychainPasswordForConnection:(id)connection; + +/** + * Notifies the delegate that no underlying connection is available, + * typically when the connection has been asked to perform a query + * or some other action for which a connection must be present. + * Those actions will still return false or error states as appropriate, + * but the delegate may wish to perform actions as a result of a total + * loss of connection. + * + * @param connection The connection instance which has lost the connection to the host + */ +- (void)noConnectionAvailable:(id)connection; + +/** + * Notifies the delegate that although a SSL connection was requested, + * MySQL made the connection without using SSL. This can happen because + * the server connected to doesn't support SSL or had it disabled, or + * that insufficient details were provided to make the connection over + * SSL. + */ +- (void)connectionFellBackToNonSSL:(id)connection; + +/** + * Notifies the delegate that the connection has been temporarily lost, + * and asks the delegate for guidance on how to proceed. If the delegate + * does not implement this method, reconnections will automatically be + * attempted - up to a small limit of attempts. + * + * @param connection The connection instance that requires a decision on how to proceed + */ +- (SPMySQLConnectionLostDecision)connectionLost:(id)connection; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h new file mode 100644 index 00000000..afd7c95a --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h @@ -0,0 +1,77 @@ +// +// $Id$ +// +// SPMySQLConnectionProxy.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on July 2, 2009. +// Copyright (c) 2009 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 + + +/** + * Connection proxy state constants. + */ +typedef enum { + SPMySQLProxyIdle = 0, + SPMySQLProxyConnecting = 1, + SPMySQLProxyWaitingForAuth = 2, + SPMySQLProxyConnected = 3, + SPMySQLProxyForwardingFailed = 4 +} SPMySQLConnectionProxyState; + + +@protocol SPMySQLConnectionProxy + +/** + * All the methods for this protocol are required. + */ + +/** + * Connect the proxy. + */ +- (void)connect; + +/** + * Disconnect the proxy. + */ +- (void)disconnect; + +/** + * Get the current state of the proxy. + */ +- (SPMySQLConnectionProxyState)state; + +/** + * Get the local port being provided by the proxy. + */ +- (NSUInteger)localPort; + +/** + * Sets the method the proxy should call whenever the state of the connection changes. + */ +- (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; + +@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h new file mode 100644 index 00000000..6fb3d279 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h @@ -0,0 +1,76 @@ +// +// $Id$ +// +// SPMySQLConstants.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + + +// Connection state +typedef enum { + SPMySQLDisconnected = 0, + SPMySQLConnecting = 1, + SPMySQLConnected = 2, + SPMySQLDisconnecting = 3 +} SPMySQLConnectionState; + +// Connection lock state +typedef enum { + SPMySQLConnectionIdle = 0, + SPMySQLConnectionBusy = 1 +} SPMySQLConnectionLockState; + +// Decision on how to handle lost connections +// Connection check constants +typedef enum { + SPMySQLConnectionLostDisconnect = 0, + SPMySQLConnectionLostReconnect = 1 +} SPMySQLConnectionLostDecision; + +// Result set row types +typedef enum { + SPMySQLResultRowAsDefault = 0, + SPMySQLResultRowAsArray = 1, + SPMySQLResultRowAsDictionary = 2 +} SPMySQLResultRowType; + +// Result charset list +typedef struct { + NSUInteger nr; + const char *name; + const char *collation; + NSUInteger char_minlen; + NSUInteger char_maxlen; +} SPMySQLResultCharset; + +// Query result types +typedef enum { + SPMySQLResultAsResult = 0, + SPMySQLResultAsFastStreamingResult = 1, + SPMySQLResultAsLowMemStreamingResult = 2 +} SPMySQLResultType; \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h new file mode 100644 index 00000000..a4f07cdd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h @@ -0,0 +1,47 @@ +// +// $Id$ +// +// SPMySQLFastStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLFastStreamingResult : SPMySQLStreamingResult { + + // Linked list setup + struct st_spmysqlstreamingrowdata *currentDataStoreEntry; + struct st_spmysqlstreamingrowdata *lastDataStoreEntry; + + // Additional counts and memory length tracking + NSUInteger processedRowCount; + + // Thread safety + pthread_mutex_t dataLock; +} + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h new file mode 100644 index 00000000..e1313032 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// SPMySQLGeometryData.h +// sequel-pro +// +// Created by Hans-Jörg Bibiko on October 07, 2010 +// +// 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 + + +@interface SPMySQLGeometryData : NSObject +{ + // Holds the WKB bytes coming from SQL server + Byte *geoBuffer; + + // Holds the buffer length + NSUInteger bufferLength; + +} + +- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length; ++ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length; +- (NSString *)description; +- (NSUInteger)length; +- (NSData *)data; +- (NSString *)wktString; +- (NSDictionary *)coordinates; +- (NSInteger)wkbType; +- (NSString *)wktType; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h new file mode 100644 index 00000000..baddf8aa --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h @@ -0,0 +1,120 @@ +// +// $Id$ +// +// SPMySQLResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 26, 2012 +// Copyright (c) 2012 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 + + +typedef enum { + SPMySQLResultFieldAsUnhandled = 0, + SPMySQLResultFieldAsString = 1, + SPMySQLResultFieldAsStringOrBlob = 2, + SPMySQLResultFieldAsBlob = 3, + SPMySQLResultFieldAsBit = 4, + SPMySQLResultFieldAsGeometry = 5, + SPMySQLResultFieldAsNull = 6 +} SPMySQLResultFieldProcessor; + +@interface SPMySQLResult : NSObject { + + // Wrapped MySQL result set and its encoding + struct st_mysql_res *resultSet; + NSStringEncoding stringEncoding; + + // Number of fields in the result set, and the field names and information + NSUInteger numberOfFields; + struct st_mysql_field *fieldDefinitions; + unsigned int *fieldTypes; + NSString **fieldNames; + + // Number of rows in the result set and an internal data position counter + unsigned long long numberOfRows; + unsigned long long currentRowIndex; + + // How long it took to execute the query that produced this result + double queryExecutionTime; + + // The target result set type for fast enumeration and unspecified row retrieval + SPMySQLResultRowType defaultRowReturnType; + + // Whether all data should be returned as strings - useful for working with some older server types + BOOL returnDataAsStrings; +} + +// Master init method +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding; + +// Result set information +- (NSUInteger)numberOfFields; +- (unsigned long long)numberOfRows; + +// Column information +- (NSArray *)fieldNames; + +// Data retrieval (note that fast enumeration is also supported, using instance-default format) +- (void)seekToRow:(unsigned long long)targetRow; +- (id)getRow; +- (NSArray *)getRowAsArray; +- (NSDictionary *)getRowAsDictionary; +- (id)getRowAsType:(SPMySQLResultRowType)theType; + +// Data conversion ++ (NSString *)bitStringWithBytes:(const char *)bytes length:(NSUInteger)length padToLength:(NSUInteger)padLength; + +#pragma mark - +#pragma mark Synthesized properties + +/** + * Set whether the result should return data types as strings. This may be useful + * for queries where the result may be returned in either string or data form, but + * will be converted to string for display and use anyway. + * Note that certain MySQL versions also return data types for strings - eg SHOW + * commands like SHOW CREATE TABLE or SHOW VARIABLES, and this conversion can be + * necessary there. + */ +@property (readwrite, assign) BOOL returnDataAsStrings; + +@property (readwrite, assign) SPMySQLResultRowType defaultRowReturnType; + +@end + +/** + * Set up a static function to allow fast calling with cached selectors + */ +static inline id SPMySQLResultGetRow(SPMySQLResult* self, SPMySQLResultRowType rowType) +{ + typedef id (*SPMySQLResultGetRowMethodPtr)(SPMySQLResult*, SEL, SPMySQLResultRowType); + static SPMySQLResultGetRowMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(getRowAsType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetRowMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, rowType); +} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h new file mode 100644 index 00000000..5abb85db --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h @@ -0,0 +1,54 @@ +// +// $Id$ +// +// SPMySQLStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 18, 2012 +// Copyright (c) 2012 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 + +@interface SPMySQLStreamingResult : SPMySQLResult { + + // Keep a link to the parent connection for locking purposes + SPMySQLConnection *parentConnection; + + // Streaming result information and tracking + BOOL connectionUnlocked; + BOOL dataDownloaded; + + // Counts and memory length tracking + NSUInteger downloadedRowCount; + + IMP isConnectedPtr; + SEL isConnectedSelector; +} + +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection; + +// Allow result fetching to be cancelled +- (void)cancelResultLoad; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h new file mode 100644 index 00000000..d8f5f183 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h @@ -0,0 +1,50 @@ +// +// $Id$ +// +// Server Info.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 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 + +@class SPMySQLResult; + +@interface SPMySQLConnection (Server_Info) + +// Server version information +- (NSString *)serverVersionString; +- (NSUInteger)serverMajorVersion; +- (NSUInteger)serverMinorVersion; +- (NSUInteger)serverReleaseVersion; + +// Server version comparisons +- (BOOL)serverVersionIsGreaterThanOrEqualTo:(NSUInteger)aMajorVersion minorVersion:(NSUInteger)aMinorVersion releaseVersion:(NSUInteger)aReleaseVersion; + +// Server tasks & processes +- (SPMySQLResult *)listProcesses; +- (BOOL)killQueryOnThreadID:(unsigned long)theThreadID; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings new file mode 100644 index 00000000..dea12de4 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings differ diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist new file mode 100644 index 00000000..6f7e4285 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,40 @@ + + + + + BuildMachineOSBuild + 11D50b + CFBundleDevelopmentRegion + English + CFBundleExecutable + SPMySQL + CFBundleIdentifier + com.yourcompany.SPMySQL + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + SPMySQL + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + SPDT + CFBundleVersion + 1 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 10M2518 + DTPlatformVersion + PG + DTSDKBuild + 9L31a + DTSDKName + macosx10.5 + DTXcode + 0400 + DTXcodeBuild + 10M2518 + + diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL new file mode 100755 index 00000000..d5483d58 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL differ diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current new file mode 120000 index 00000000..8c7e5a66 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList new file mode 100644 index 00000000..0fdb1c0e --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList @@ -0,0 +1,16 @@ +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap new file mode 100644 index 00000000..f028255b Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap new file mode 100644 index 00000000..25d939d3 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap new file mode 100644 index 00000000..0a13ebeb Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep new file mode 100644 index 00000000..a6f3b885 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep @@ -0,0 +1,142 @@ +bfccb90c7f200b83b17548b171dbd469 933ae9c74099be8debbfc5d567fbd48a ffffffffffffffffffffffffffffffff 34248 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +bfccb90c7f244c43b17548b171dbee31 e5ccc2835d553ee38ceb427543e98bb6 ffffffffffffffffffffffffffffffff 34140 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +bfccb90c7f29e0d5b17548b171dbd9ed fb0bb8203d87fa2b2131aa6bc0c28905 ffffffffffffffffffffffffffffffff 24624 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +bfccb90c7f243963b17548b171dbd283 9f8998a1e16460e4deec20c7b93c356e ffffffffffffffffffffffffffffffff 30768 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +bfccb90c7f2fe4bdb17548b171dbc5e5 8010ec6966c027952c3ed2c59e2c96d0 ffffffffffffffffffffffffffffffff 6036 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +bfccb90c7f2fe528b17548b171db86d5 d09b32df5e7edc58c2f512812b6965e8 ffffffffffffffffffffffffffffffff 59112 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +bfccb90c389b2d11b17548b171dbc719 77eaf425d3bafda93536c3e4b81e4479 ffffffffffffffffffffffffffffffff 42980 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +bfccb90c7f209939b17548b171dba71b 53dad33ac0c2ca1b7840b841601f530a ffffffffffffffffffffffffffffffff 63796 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +bfccb90c7f2148cab17548b171dbe725 08cd3ef9f3b090cfc6a6cd070eb19e49 ffffffffffffffffffffffffffffffff 49520 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +bfccb90c7f2dc9ddb17548b171dbc6f9 6ce6921f244c4cc07f000826eaf2dbf1 ffffffffffffffffffffffffffffffff 20816 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +bfccb90c7f5c3b2bb17548b171db8cd7 3984d7d28d2435aecafa55b67ef7cb27 ffffffffffffffffffffffffffffffff 64388 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +bfccb90c7f2fe526b17548b171dbcf53 69345072b559af1f459c83b2779a1449 ffffffffffffffffffffffffffffffff 22568 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +bfccb90c7f25fa58b17548b171dbdc0b 002192fc0ad1c3b1db6abfd2d0e2d6fc ffffffffffffffffffffffffffffffff 28960 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +bfccb90c7f28e52ab17548b171dbf53e e0e9bc5c2012a1f028185b0d1e5b179b ffffffffffffffffffffffffffffffff 44580 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +bfccb90c77d5f1bdb17548b171dbef3c 918a21e657ce491693d00e813222d89d ffffffffffffffffffffffffffffffff 29492 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +bfccb90c778813d3b17548b171dbbfbf ddb4f8d583f0f73cccd92a8c04c17049 ffffffffffffffffffffffffffffffff 108200 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +eaf153e6229fc2378cc6a8badfc8050e a2fd1bbaf2ef08936f05aa12656c6a9a ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +fea22eb9f115a2cda18f651a259bd66d 6eb3521f53ab5d671d39a6a72dffd716 ffffffffffffffffffffffffffffffff 1249328 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +000000004837395c000000000000f9fd bfccb90c3718dc7db17548b171db31f5 ffffffffffffffffffffffffffffffff 9980224 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +97ed352a49a6a94d07af5db2313dde0a 904c42cca8bbacd460ce61ab74e6a316 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +97ed352a49a6a94d07af5db2313dde0a bbc74268ff442548d89937c723411285 ffffffffffffffffffffffffffffffff 33864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +97ed352a49a2ee8d07af5db2313de452 426e5970643b97eed9fbfa5874723d2d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +97ed352a49a2ee8d07af5db2313de452 323d82a4a44e2a050f225a99e8ea0865 ffffffffffffffffffffffffffffffff 33788 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +97ed352a49af421b07af5db2313dd38e 9dfae2aa0f34c82bac2ce2b15be1713f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +97ed352a49af421b07af5db2313dd38e 06591bc0e6e2ce39cf7fe200094b6d40 ffffffffffffffffffffffffffffffff 24288 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +97ed352a49a29bad07af5db2313dd8e0 acbe091e17ac14c880f32cebc3c99c56 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +97ed352a49a29bad07af5db2313dd8e0 23a5e8c8ccd6987bb670c9dd93dadb63 ffffffffffffffffffffffffffffffff 30400 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +97ed352a49a9467307af5db2313dcf86 f47214968fe74fa8c4fc1b3936880f54 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +97ed352a49a9467307af5db2313dcf86 e93102bb17c12255f9bb731b021d3093 ffffffffffffffffffffffffffffffff 5924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +97ed352a49a947e607af5db2313d8cb6 dd21d8cfe0c7619ec81a7b95328ddbfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +97ed352a49a947e607af5db2313d8cb6 d27000fc8ea7e6d7a0a247e2f3f567a0 ffffffffffffffffffffffffffffffff 58808 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +97ed352a0e1d8fdf07af5db2313dcd7a 0e7f0eef19493081ac093465e6b4eb61 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +97ed352a0e1d8fdf07af5db2313dcd7a a3d9c51ac90ed92f195e55c260805b36 ffffffffffffffffffffffffffffffff 42516 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +97ed352a49a63bf707af5db2313dad78 cce22274caac57d80e09869951843fea ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +97ed352a49a63bf707af5db2313dad78 e91187e4bb4a0638a717eb77174b427d ffffffffffffffffffffffffffffffff 63652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +97ed352a49a7ea0407af5db2313ded46 e59155e9589dad20b83a7d8e0c6a617f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +97ed352a49a7ea0407af5db2313ded46 e400afe900818bd5024e2910d446e062 ffffffffffffffffffffffffffffffff 49184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +97ed352a49ab6b1307af5db2313dcc9a 9febb4e9bab24322a7ced49c03f6cfe8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +97ed352a49ab6b1307af5db2313dcc9a 91b911f6ae16d5996d2d3ca2160500cd ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +97ed352a49da99e507af5db2313d86b4 afb097bb7357a117f28aeb84b48cd60d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +97ed352a49da99e507af5db2313d86b4 6f5109f42865bf639aca44a6d762fbb9 ffffffffffffffffffffffffffffffff 63876 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +97ed352a49a947e807af5db2313dc530 5f2085563a2275e2ea698128df9a10c5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +97ed352a49a947e807af5db2313dc530 48cba2565dae3faf3d36ad3bd4948a1f ffffffffffffffffffffffffffffffff 22200 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +97ed352a49a3589607af5db2313dd668 25f24cbb6a9974f0427d9e417f7d17e8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +97ed352a49a3589607af5db2313dd668 d9b9ecf071d61915ab2de6f3dbbf046b ffffffffffffffffffffffffffffffff 28608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +97ed352a49ae47e407af5db2313dff5d 912c373dc4f733d10a4f86ad39db0bfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +97ed352a49ae47e407af5db2313dff5d e522823ea2fc90a03f942a8b80a32b35 ffffffffffffffffffffffffffffffff 44260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +97ed352a4153537307af5db2313de55f 733fcef9f29480f98e08536a9f396cb8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +97ed352a4153537307af5db2313de55f 23c1edaccf2208ed07e8b73f3afac370 ffffffffffffffffffffffffffffffff 29108 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +97ed352a410eb11d07af5db2313db5dc 9c9b56d66d88e294fb3ae0556f7bb07c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +97ed352a410eb11d07af5db2313db5dc d17dd1432f412a64842773bbeb22123d ffffffffffffffffffffffffffffffff 107800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +a8fcbae79f9cb191a6ec59a1c5ef9957 e5181f3ad952ff2a59a8fb57a1efef37 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +00000000000000000000000000000000 0ed285a755a38324fb8da2170ca27636 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +8fbe42787cc9a9cb07e75306104bdb3f c91124ca1ac6dcd80255573bd082f744 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +00000000000000000000000000000000 371146bb0cb218909ab14c322830ed8c ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +00000000000000000000000000000000 8fbe42787cc9a9cb07e75306104bdb3f ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +418b34e17889d9e0960d381c9c2fafb5 e778a712dd264702d943b93c00dfa766 ffffffffffffffffffffffffffffffff 1248152 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +000000004837395c000000000000f9fd 97ed352a019e7eb307af5db2313d3b96 ffffffffffffffffffffffffffffffff 9978580 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 648a2e7e4c968528920e64f89b4fc1ca ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 5fc3356be24eacde1cfecb3f9f4e5381 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +00000000000000000000000000000000 29bfc1397c9d02b8f4513573ebea3c53 ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +00000000000000000000000000000000 d0acad63de3ba60bb27c3ccf14037ca2 ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +00000000000000000000000000000000 4361824f80357621224c79328668d12e ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +00000000000000000000000000000000 3f0fbeb73572afdfb3e9305f28931754 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +00000000000000000000000000000000 b57b0b56642577a573ee0ebc4d18264e ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +00000000000000000000000000000000 1abb5348761b437e2de51f911679dc5b ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +00000000000000000000000000000000 d72089d808bc6c33554f33e5ea0c4091 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +00000000000000000000000000000000 5792d681d8f8b1edb09032465940c0f9 ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +00000000000000000000000000000000 d4181024d7e9b57cc86dc952286aaad2 ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +ffffffffffffffffffffffffffffffff d82a742f74a969d3c56e2c49abb32e43 ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +00000000000000000000000000000000 a30231cac98bc135e8ad5fe94127616a ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +00000000000000000000000000000000 59598d4d8a1d420b986426bbbb16495b ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +00000000000000000000000000000000 57f8ebde6e755030c0d927db45f2b960 ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +00000000000000000000000000000000 2aa50f4b6a585d513b8a794bb3a35c64 ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 fb76ffe06859757724e0042f205adb09 ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 9a57e0bc7a78f4fa18c5056736403c80 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +ffffffffffffffffffffffffffffffff 0a0da9e8e9d2908364525668b9b54368 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist +ffffffffffffffffffffffffffffffff 0f59b1e9cef55fc4b9b09a9e54b9f9cb ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h +000000000776121c000000000000e579 7b09425fbd720e3866d21e7f5753029a ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +3d58d07c2b841e7f2475a51c25b54e53 6f16defa9a93fab74a3078f76842c846 ffffffffffffffffffffffffffffffff 27352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +3d58d07c2b89b2e92475a51c25b5798f c789376a33d74b31c109f358f081f00c ffffffffffffffffffffffffffffffff 20220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +3d58d07c2b846b5f2475a51c25b572e1 37eb025f97b792b3c5fd42a6976f2464 ffffffffffffffffffffffffffffffff 24800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +3d58d07c2b8c93482475a51c25b56029 5cbbb9afc5933df8e3fe00cfae957b6f ffffffffffffffffffffffffffffffff 4644 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +3d58d07c2b8c92dd2475a51c25b52319 a07add3b5ca8fddf7f01eb12ef115c34 ffffffffffffffffffffffffffffffff 42740 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +3d58d07c2b8da2fe2475a51c25b5637a 6d7a10b1a20f8e8ada105e98a0a53008 ffffffffffffffffffffffffffffffff 18328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +3d58d07c2b83eecc2475a51c25b502d7 5524997a54b87b7e8e2ec41d34426544 ffffffffffffffffffffffffffffffff 52104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +3d58d07c2b80ec6a2475a51c25b54fbf 218ac08579f773fbf66f7c0fb941360a ffffffffffffffffffffffffffffffff 34100 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +3d58d07c2b8d9be12475a51c25b5669b b00f96b3d1e57c2edb95f8897fdd7259 ffffffffffffffffffffffffffffffff 18212 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +3d58d07c2b80eb8d2475a51c25b53837 ca60464e1b52fe332b9bc192bb853e1f ffffffffffffffffffffffffffffffff 40348 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +3d58d07c2b8c92d32475a51c25b56a9f bbd03ad5d90f4886fa08af3be283eaf3 ffffffffffffffffffffffffffffffff 19884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +3d58d07c2b85a8642475a51c25b57c69 5361bb5fcc169776180c35b38c4a8c0a ffffffffffffffffffffffffffffffff 24188 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +3d58d07c2b8b92df2475a51c25b550f2 048c46a1a00d4ad9ad0cc9eeb5b594dc ffffffffffffffffffffffffffffffff 37304 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +3d58d07c2305914e2475a51c25b54b12 aca21aef843ade78b6801add87935c4f ffffffffffffffffffffffffffffffff 24544 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +3d58d07c23553f9a2475a51c25b51cdd cc41a4d5d09ffbffc891383428fb8791 ffffffffffffffffffffffffffffffff 73428 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +b188bf85654b2071950829d6f6307108 717c3aa2094983d7f791e200510d5898 ffffffffffffffffffffffffffffffff 1044140 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +000000000776121c000000000000e579 3d58d07c2cfa80c82475a51c25b588bd ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +75bfc4d1f0a667ad88fc306ccd92293a aeebb105ec26b3a5eb6ed16c4999bf15 ffffffffffffffffffffffffffffffff 1221296 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +ffffffffffffffffffffffffffffffff 3e7f48f4ccc823a7a6c1c4ed8056f183 ffffffffffffffffffffffffffffffff 9956412 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +3e7f48f4c43be2dda6c1c4ed80561a74 d561662265f8e28104035a5302a00117 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +00000000000000000000000000000000 80b779573f1ad09d55281bbb3fc0b042 ffffffffffffffffffffffffffffffff 1013 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth +0000000040a8b43d000000000000fba5 0423a29a9f16bcd8725e9213ccf357aa ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +3e7f48f4c37c2a75a6c1c4ed805606af 1efba746a07fefd105886c67477cc9b3 ffffffffffffffffffffffffffffffff 18412 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +00000000000000000000000000000000 7e7978f51d62be2f302ef1bcb951d430 ffffffffffffffffffffffffffffffff 9938712 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff 09eed1489fdfceb6465e9187c6b401e6 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +00000000000000000000000000000000 dea5feeb14c8a5d3c0e5be8bcc322f9e ffffffffffffffffffffffffffffffff 1041 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +ffffffffffffffffffffffffffffffff 7d0bbb769ec08769af74fee98fc0e2b6 ffffffffffffffffffffffffffffffff 9934372 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking +000000000f84a230000000000000f598 344e22b0555e09e65eaa7db7e7413ec2 ffffffffffffffffffffffffffffffff 9932416 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +3b7002f7ae1d5db27080ce68df8a93ff 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +b502fadbe8071bec9867a7fabad552ac f49b78ae92e67fcc62b1e2cee6ba8197 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep new file mode 100644 index 00000000..b1de04a1 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep @@ -0,0 +1,101 @@ +a8fcbae79fe2b607a6ec59a1c5ef9972 e5181f3ad952ff2a59a8fb57a1efef37 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +00000000000000000000000000000000 0ed285a755a38324fb8da2170ca27636 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +8fbe42787cc9a9cb07e75306104bdb3f c91124ca1ac6dcd80255573bd082f744 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +00000000000000000000000000000000 371146bb0cb218909ab14c322830ed8c ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +418b34e178f7de76960d381c9c2faf90 e778a712dd264702d943b93c00dfa766 ffffffffffffffffffffffffffffffff 1248184 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +000000004f0a19cd0000000000000030 648a2e7e4c968528920e64f89b4fc1ca ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 5fc3356be24eacde1cfecb3f9f4e5381 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +00000000000000000000000000000000 29bfc1397c9d02b8f4513573ebea3c53 ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +00000000000000000000000000000000 d0acad63de3ba60bb27c3ccf14037ca2 ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +00000000000000000000000000000000 4361824f80357621224c79328668d12e ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +00000000000000000000000000000000 3f0fbeb73572afdfb3e9305f28931754 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +00000000000000000000000000000000 b57b0b56642577a573ee0ebc4d18264e ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +00000000000000000000000000000000 1abb5348761b437e2de51f911679dc5b ffffffffffffffffffffffffffffffff 1896 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +00000000000000000000000000000000 d72089d808bc6c33554f33e5ea0c4091 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +00000000000000000000000000000000 5792d681d8f8b1edb09032465940c0f9 ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +00000000000000000000000000000000 d4181024d7e9b57cc86dc952286aaad2 ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +00000000000000000000000000000000 d82a742f74a969d3c56e2c49abb32e43 ffffffffffffffffffffffffffffffff 2190 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +00000000000000000000000000000000 a30231cac98bc135e8ad5fe94127616a ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +00000000000000000000000000000000 59598d4d8a1d420b986426bbbb16495b ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +00000000000000000000000000000000 57f8ebde6e755030c0d927db45f2b960 ffffffffffffffffffffffffffffffff 4518 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +00000000000000000000000000000000 2aa50f4b6a585d513b8a794bb3a35c64 ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 fb76ffe06859757724e0042f205adb09 ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 9a57e0bc7a78f4fa18c5056736403c80 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +97ed352a49a58eb407af5db2313dddaa bbc74268ff442548d89937c723411285 ffffffffffffffffffffffffffffffff 31548 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +97ed352a49a0dcfc07af5db2313de58e 323d82a4a44e2a050f225a99e8ea0865 ffffffffffffffffffffffffffffffff 33788 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +97ed352a49ad706a07af5db2313dd252 06591bc0e6e2ce39cf7fe200094b6d40 ffffffffffffffffffffffffffffffff 24288 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +97ed352a49a0a9dc07af5db2313dd93c 23a5e8c8ccd6987bb670c9dd93dadb63 ffffffffffffffffffffffffffffffff 30400 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +97ed352a49ab740207af5db2313dce5a e93102bb17c12255f9bb731b021d3093 ffffffffffffffffffffffffffffffff 5924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +97ed352a49ab759707af5db2313d8d6a d27000fc8ea7e6d7a0a247e2f3f567a0 ffffffffffffffffffffffffffffffff 58808 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +97ed352a0e1f17fb07af5db2313dcfeb a3d9c51ac90ed92f195e55c260805b36 ffffffffffffffffffffffffffffffff 42908 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +97ed352a49a4098607af5db2313daca4 e91187e4bb4a0638a717eb77174b427d ffffffffffffffffffffffffffffffff 63652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +97ed352a49da718e07af5db2313dec62 e400afe900818bd5024e2910d446e062 ffffffffffffffffffffffffffffffff 49344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +97ed352a49a9596207af5db2313dcd46 91b911f6ae16d5996d2d3ca2160500cd ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +97ed352a49d8b75907af5db2313d8724 6f5109f42865bf639aca44a6d762fbb9 ffffffffffffffffffffffffffffffff 63460 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +97ed352a49ab759907af5db2313dc4ec 48cba2565dae3faf3d36ad3bd4948a1f ffffffffffffffffffffffffffffffff 22200 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +97ed352a49a16ae707af5db2313dd7b4 d9b9ecf071d61915ab2de6f3dbbf046b ffffffffffffffffffffffffffffffff 28608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +97ed352a49ac759507af5db2313dfe81 e522823ea2fc90a03f942a8b80a32b35 ffffffffffffffffffffffffffffffff 44260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +97ed352a412dc20407af5db2313de426 23c1edaccf2208ed07e8b73f3afac370 ffffffffffffffffffffffffffffffff 29792 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +97ed352a41702d1707af5db2313db505 d17dd1432f412a64842773bbeb22123d ffffffffffffffffffffffffffffffff 108652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +0000000048350b2d000000000000f821 97ed352a019e7eb307af5db2313d3b96 ffffffffffffffffffffffffffffffff 9978988 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 8fbe42787cc9a9cb07e75306104bdb3f ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +ffffffffffffffffffffffffffffffff afb097bb7357a117f28aeb84b48cd60d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +97ed352a0698dff307af5db2313dda29 904c42cca8bbacd460ce61ab74e6a316 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +97ed352a069d8dbb07af5db2313de20d 426e5970643b97eed9fbfa5874723d2d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +97ed352a0690212d07af5db2313dd5d1 9dfae2aa0f34c82bac2ce2b15be1713f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +97ed352a069df89b07af5db2313ddebf acbe091e17ac14c880f32cebc3c99c56 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +97ed352a0696254507af5db2313dc9d9 f47214968fe74fa8c4fc1b3936880f54 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +97ed352a069624d007af5db2313d8ae9 dd21d8cfe0c7619ec81a7b95328ddbfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +97ed352a412246bc07af5db2313dc868 0e7f0eef19493081ac093465e6b4eb61 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +97ed352a069958c107af5db2313dab27 cce22274caac57d80e09869951843fea ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +97ed352a06e720c907af5db2313debe1 e59155e9589dad20b83a7d8e0c6a617f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +97ed352a0694082507af5db2313dcac5 9febb4e9bab24322a7ced49c03f6cfe8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +97ed352a069624de07af5db2313dc36f 5f2085563a2275e2ea698128df9a10c5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +97ed352a069c3ba007af5db2313dd037 25f24cbb6a9974f0427d9e417f7d17e8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +97ed352a069124d207af5db2313df902 912c373dc4f733d10a4f86ad39db0bfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +97ed352a0e10934307af5db2313de3a5 733fcef9f29480f98e08536a9f396cb8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +97ed352a0e4d7c5007af5db2313db286 9c9b56d66d88e294fb3ae0556f7bb07c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +ffffffffffffffffffffffffffffffff 0a0da9e8e9d2908364525668b9b54368 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist +ffffffffffffffffffffffffffffffff 0f59b1e9cef55fc4b9b09a9e54b9f9cb ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h +000000000776121c000000000000e579 7b09425fbd720e3866d21e7f5753029a ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +3d58d07c2b841e7f2475a51c25b54e53 6f16defa9a93fab74a3078f76842c846 ffffffffffffffffffffffffffffffff 27352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +3d58d07c2b89b2e92475a51c25b5798f c789376a33d74b31c109f358f081f00c ffffffffffffffffffffffffffffffff 20220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +3d58d07c2b846b5f2475a51c25b572e1 37eb025f97b792b3c5fd42a6976f2464 ffffffffffffffffffffffffffffffff 24800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +3d58d07c2b8c93482475a51c25b56029 5cbbb9afc5933df8e3fe00cfae957b6f ffffffffffffffffffffffffffffffff 4644 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +3d58d07c2b8c92dd2475a51c25b52319 a07add3b5ca8fddf7f01eb12ef115c34 ffffffffffffffffffffffffffffffff 42740 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +3d58d07c2b8da2fe2475a51c25b5637a 6d7a10b1a20f8e8ada105e98a0a53008 ffffffffffffffffffffffffffffffff 18328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +3d58d07c2b83eecc2475a51c25b502d7 5524997a54b87b7e8e2ec41d34426544 ffffffffffffffffffffffffffffffff 52104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +3d58d07c2b80ec6a2475a51c25b54fbf 218ac08579f773fbf66f7c0fb941360a ffffffffffffffffffffffffffffffff 34100 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +3d58d07c2b8d9be12475a51c25b5669b b00f96b3d1e57c2edb95f8897fdd7259 ffffffffffffffffffffffffffffffff 18212 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +3d58d07c2b80eb8d2475a51c25b53837 ca60464e1b52fe332b9bc192bb853e1f ffffffffffffffffffffffffffffffff 40348 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +3d58d07c2b8c92d32475a51c25b56a9f bbd03ad5d90f4886fa08af3be283eaf3 ffffffffffffffffffffffffffffffff 19884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +3d58d07c2b85a8642475a51c25b57c69 5361bb5fcc169776180c35b38c4a8c0a ffffffffffffffffffffffffffffffff 24188 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +3d58d07c2b8b92df2475a51c25b550f2 048c46a1a00d4ad9ad0cc9eeb5b594dc ffffffffffffffffffffffffffffffff 37304 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +3d58d07c2305914e2475a51c25b54b12 aca21aef843ade78b6801add87935c4f ffffffffffffffffffffffffffffffff 24544 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +3d58d07c23553f9a2475a51c25b51cdd cc41a4d5d09ffbffc891383428fb8791 ffffffffffffffffffffffffffffffff 73428 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +b188bf85654b2071950829d6f6307108 717c3aa2094983d7f791e200510d5898 ffffffffffffffffffffffffffffffff 1044140 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +000000000776121c000000000000e579 3d58d07c2cfa80c82475a51c25b588bd ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +75bfc4d1f0a667ad88fc306ccd92293a aeebb105ec26b3a5eb6ed16c4999bf15 ffffffffffffffffffffffffffffffff 1221296 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +ffffffffffffffffffffffffffffffff 3e7f48f4ccc823a7a6c1c4ed8056f183 ffffffffffffffffffffffffffffffff 9956412 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +3e7f48f4c43be2dda6c1c4ed80561a74 d561662265f8e28104035a5302a00117 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +00000000000000000000000000000000 80b779573f1ad09d55281bbb3fc0b042 ffffffffffffffffffffffffffffffff 1013 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth +0000000040a8b43d000000000000fba5 0423a29a9f16bcd8725e9213ccf357aa ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +3e7f48f4c37c2a75a6c1c4ed805606af 1efba746a07fefd105886c67477cc9b3 ffffffffffffffffffffffffffffffff 18412 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +00000000000000000000000000000000 7e7978f51d62be2f302ef1bcb951d430 ffffffffffffffffffffffffffffffff 9938712 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff 09eed1489fdfceb6465e9187c6b401e6 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +00000000000000000000000000000000 dea5feeb14c8a5d3c0e5be8bcc322f9e ffffffffffffffffffffffffffffffff 1041 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +ffffffffffffffffffffffffffffffff 7d0bbb769ec08769af74fee98fc0e2b6 ffffffffffffffffffffffffffffffff 9934372 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking +000000000f84a230000000000000f598 344e22b0555e09e65eaa7db7e7413ec2 ffffffffffffffffffffffffffffffff 9932416 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +3b7002f7ae1d5db27080ce68df8a93ff 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +b502fadbe8071bec9867a7fabad552ac f49b78ae92e67fcc62b1e2cee6ba8197 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap new file mode 100644 index 00000000..607303b4 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat new file mode 100644 index 00000000..4bf22b08 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat @@ -0,0 +1,2676 @@ +TSPMySQL.framework +v7 +r0 +t351391670.553327 +cCheck dependencies +cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +cProcessInfoPlistFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h Source/SPMySQL.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +cCopyStringsFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +cTouch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h +c000000004864A1C900000000000012EE +t1214554569 +s4846 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h +c0000000047BAC506000000000000235B +t1203422470 +s9051 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration +c000000004B760CDC00000000000371FC +t1266027740 +s225788 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h +c0000000047E8839E0000000000000746 +t1206420382 +s1862 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h +c0000000047BA9932000000000000380F +t1203411250 +s14351 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib +c000000004B760D050000000000006EE8 +t1266027781 +s28392 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i +i +i +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h +c000000004F3FDF050000000000000EFA +t1329585925 +s3834 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQL.h +c000000004F40545B00000000000008AA +t1329615963 +s2218 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"SPMySQLFastStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQLConnection Private APIs.h +c000000004F3CF8880000000000000A80 +t1329395848 +s2688 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3D0465000000000000245E +t1329398885 +s9310 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +c000000004F1CBCB7000000000000041D +t1327283383 +s1053 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking +c000000004F1C42CD00000000000000BD +t1327252173 +s189 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F4184B40000000000001D1F +t1329693876 +s7455 +i"Ping & KeepAlive.h" +i"Locking.h" +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F40542D0000000000001194 +t1329615917 +s4500 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F405438000000000000554B +t1329615928 +s21835 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +c000000004F1C1C690000000000000419 +t1327242345 +s1049 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3D27C200000000000014E2 +t1329407938 +s5346 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F4184A80000000000006ED3 +t1329693864 +s28371 +i"SPMySQL Private APIs.h" +i +i +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h +c000000004F417F8900000000000006A2 +t1329692553 +s1698 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +c000000004F41837B00000000000034CA +t1329693563 +s13514 +i"SPMySQLFastStreamingResult.h" +i"SPMySQL Private APIs.h" +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m +c000000004F3FFADE0000000000003EB1 +t1329593054 +s16049 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullyStreamingResult.h +c000000004F3ED347000000000000099C +t1329517383 +s2460 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F3D044500000000000069C8 +t1329398853 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F415CF40000000000001137 +t1329683700 +s4407 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F415CEF0000000000003B6C +t1329683695 +s15212 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F401EC60000000000000796 +t1329602246 +s1942 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F415D940000000000001E81 +t1329683860 +s7809 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +t1329693883 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329613170 +s1809 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329613170 +s1406 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +t1327282092 +s1041 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329613170 +s1948 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329613170 +s1434 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329613170 +s1523 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329615931 +s4500 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +t1327593846 +s1013 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329615964 +s2218 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329613170 +s5346 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329613170 +s4161 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329613170 +s2180 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329613170 +s2349 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +t1329693475 +s1698 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329613170 +s1755 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329683868 +s4407 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329613170 +s1942 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329613170 +s1889 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329613170 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329613170 +s1144 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +t1327590974 +s18412 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +t1327590974 +s9938712 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +t1329693883 +s1248152 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +t1327194721 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +t3 +s33 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +t1327194721 +s1975 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +t1327194721 +s974 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1327194721 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +t1327194721 +s1170 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +t1327194721 +s19824 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +t1329400733 +s19884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +t1329400733 +s27352 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +t1329400733 +s20220 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +t1329400733 +s37304 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +t1329400733 +s42740 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +t1329400733 +s18212 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +t1329400733 +s24800 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +t1329400732 +s24544 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +t1329400733 +s40348 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +t1329400733 +s1044140 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +c000000004F3D0B9C00000000000007C4 +t1329400732 +s1988 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +t1329400733 +s73428 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +t1329400733 +s52104 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +t1329400733 +s34100 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +t1329400733 +s18328 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +t1329400733 +s4644 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +t1329400733 +s24188 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329693476 +s22200 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329693477 +s33788 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329693477 +s24288 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +t1327282093 +s884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329693476 +s44260 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329693476 +s58808 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329693476 +s20496 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329693477 +s30400 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329693883 +s29108 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329693476 +s63876 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +t1327974108 +s860 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +t1329400733 +s1221296 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F4049720000000000000873 +t1329613170 +s2163 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329693883 +s107800 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +t1329693571 +s42516 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +c000000004F1B6219000000000000021D +t1327194649 +s541 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329693476 +s63652 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329693476 +s49184 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329693477 +s33864 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329693476 +s5924 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329693476 +s28608 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +t1329693888 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +t1329693890 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +t1329693888 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +t1329693890 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +t1329693900 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +t1329693890 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +t1329693888 +s276 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i +i +i +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQL Private APIs.h +c000000004F3FDF050000000000000EFA +t1329585925 +s3834 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQL.h +c000000004F40545B00000000000008AA +t1329615963 +s2218 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"SPMySQLFastStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3D0465000000000000245E +t1329398885 +s9310 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F4184B40000000000001D1F +t1329693876 +s7455 +i"Ping & KeepAlive.h" +i"Locking.h" +i + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F40542D0000000000001194 +t1329615917 +s4500 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F405438000000000000554B +t1329615928 +s21835 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3D27C200000000000014E2 +t1329407938 +s5346 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F4184A80000000000006ED3 +t1329693864 +s28371 +i"SPMySQL Private APIs.h" +i +i +i + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h +c000000004F417F8900000000000006A2 +t1329692553 +s1698 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +c000000004F41837B00000000000034CA +t1329693563 +s13514 +i"SPMySQLFastStreamingResult.h" +i"SPMySQL Private APIs.h" +i + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F3D044500000000000069C8 +t1329398853 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F415CF40000000000001137 +t1329683700 +s4407 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F415CEF0000000000003B6C +t1329683695 +s15212 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F401EC60000000000000796 +t1329602246 +s1942 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F415D940000000000001E81 +t1329683860 +s7809 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework +t1329696822 +s204 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329613170 +s1809 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329613170 +s1406 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329613170 +s1948 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329613170 +s1434 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329613170 +s1523 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329615931 +s4500 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329615964 +s2218 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329613170 +s5346 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329613170 +s4161 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329613170 +s2180 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329613170 +s2349 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +t1329693475 +s1698 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329613170 +s1755 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329683868 +s4407 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329613170 +s1942 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329613170 +s1889 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329613170 +s92 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329613170 +s1144 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +t1329696682 +s1249328 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329696492 +s22568 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329696492 +s34140 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329696492 +s24624 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329696492 +s44580 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329696492 +s59112 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329696492 +s20816 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329696492 +s30768 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329696492 +s29492 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329696492 +s64388 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F418EEA0000000000000A53 +t1329696490 +s2643 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329696492 +s108200 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +t1329696492 +s42980 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329696492 +s63796 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329696492 +s49520 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329696492 +s34248 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329696492 +s6036 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329696492 +s28960 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +t1327271264 +s9934372 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth +t1329696492 +s9980224 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +t1328637468 +s9956412 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +t1327244598 +s9932416 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +t1329693476 +s9978580 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +t1329403345 +s9973036 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +t1329399762 +s10910168 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +s351386688.850748 +e351386688.992999 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386688#351386689#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4573408912#1843" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +s351386689.833013 +e351386690.064014 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386689#351386690#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4573408912#1861" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +s351386689.796900 +e351386689.974122 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386689#351386690#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4573408912#1857" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +s351386688.022835 +e351386688.850095 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386688#351386688#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4573408912#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +s351386688.993093 +e351386689.273128 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386688#351386689#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4573408912#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +s351386689.647071 +e351386689.832752 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386689#351386689#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4573408912#1855" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +s351386688.022029 +e351386689.066062 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386688#351386689#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4573408912#1857" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +s351386688.851955 +e351386689.270522 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386688#351386689#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4573408912#1869" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +s351386688.023968 +e351386688.850569 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386688#351386688#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4573408912#1847" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +s351386689.274905 +e351386689.538212 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386689#351386689#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4573408912#1855" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist" 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +s351386688.020690 +e351386689.272487 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386688#351386689#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4573408912#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +s351386689.273497 +e351386690.250458 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386689#351386690#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4573408912#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +s351386689.270618 +e351386700.298481 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386689#351386700#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4573408912#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +s351386689.066406 +e351386689.642593 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386689#351386689#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4573408912#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +s351386689.975239 +e351386690.215377 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386689#351386690#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4573408912#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +s351386689.567692 +e351386689.796498 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386689#351386689#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4573408912#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist 0# + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies351391670#351391670#0(0"0(0#1#0"4684336560#0"0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.356219 +e351093533.423922 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351093533#351093533#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.314225 +e351093533.384062 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351093533#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.241830 +e351093533.356050 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351093533#351093533#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.311400 +e351093533.389820 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351093533#351093533#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.909342 +e351093533.002616 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351093532#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.078124 +e351093533.233582 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351093533#351093533#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1845" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.002775 +e351093533.077953 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351093533#351093533#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.984549 +e351386277.234831 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386276#351386277#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4488392336#1843" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.900013 +e351389292.978357 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@129"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351389292#351389292#0(0"0(0#0#121"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4785176208#2173" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.960629 +e351386277.228729 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386276#351386277#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4488392336#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.897886 +e351389292.964686 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@127"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351389292#351389292#0(0"0(0#0#119"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4785176208#2169" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348974893.569529 +e348974893.613561 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348974893#348974893#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4617666192#1860" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.861964 +e351386276.984380 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386276#351386276#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4488392336#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.745259 +e351389292.902578 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@124"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351389292#351389292#0(0"0(0#0#116"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4785176208#2167" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.951298 +e351386277.234409 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386276#351386277#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4488392336#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.809513 +e351389292.899863 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@126"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351389292#351389292#0(0"0(0#0#118"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4785176208#2167" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386682.932966 +e351386683.257244 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386682#351386683#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4544028304#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.274660 +e351389292.466666 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@127"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351389292#351389292#0(0"0(0#0#119"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4785176208#2169" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.684238 +e351386276.833066 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386276#351386276#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4488392336#1851" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.469214 +e351389292.744815 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@133"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351389292#351389292#0(0"0(0#0#125"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4785176208#2181" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.605222 +e351386276.681439 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386276#351386276#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4488392336#1829" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.277673 +e351389292.469081 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@122"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351389292#351389292#0(0"0(0#0#114"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4785176208#2159" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# + +CCompileC build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349283773.971303 +e349283774.259882 +r1 +xCompileC +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') +o [self flushMultiResults]; +o ^~~~~~~~~~~~~~~~~~~~~~~~ +o1 warning generated. +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m349283773#349283774#0(268"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') [self flushMultiResults]; ^~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. 1(22@68"Method '-flushMultiResults' not found (return type defaults to 'id')349283774#0#178#0(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#0#0#49"method * not found (return type defaults to 'id')1(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#88#33#0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4483198608#1789" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.019170 +e351093533.085021 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351093533#351093533#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.910800 +e351093533.019019 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351093532#351093533#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1815" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.085189 +e351093533.156564 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351093533#351093533#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.907984 +e351093533.112078 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351093532#351093533#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1802" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.143594 +e351093533.371441 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351093533#351093533#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1806" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.112422 +e351093533.311221 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351093533#351093533#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1794" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.156743 +e351093533.254840 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.255195 +e351093533.314064 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.681590 +e351386276.753789 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386276#351386276#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4488392336#1825" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.466977 +e351389292.700592 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@121"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351389292#351389292#0(0"0(0#0#113"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4785176208#2155" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.603960 +e351386276.701161 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386276#351386276#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4488392336#1821" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.275944 +e351389292.477431 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@119"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351389292#351389292#0(0"0(0#0#111"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4785176208#2151" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.701316 +e351386276.770892 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386276#351386276#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4488392336#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.479437 +e351389292.698748 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@118"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351389292#351389292#0(0"0(0#0#110"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4785176208#2149" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349666908.814076 +e349666908.859934 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m349666908#349666908#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4570701456#1821" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386682.931736 +e351386683.317129 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386682#351386683#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4544028304#1808" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.273096 +e351389292.525055 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m351389292#351389292#0(0"0(0#0#91"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m4785176208#2138" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386371.600764 +e351386371.686534 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386371#351386371#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4488392336#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.700729 +e351389292.809100 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@108"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351389292#351389292#0(0"0(0#0#100"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4785176208#2156" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.771053 +e351386276.996988 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386276#351386276#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4488392336#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.699063 +e351389292.913023 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@101"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m351389292#351389292#0(0"0(0#0#93"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m4785176208#2142" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.753947 +e351386276.918993 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386276#351386276#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4488392336#1800" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.525186 +e351389292.782467 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@95"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m351389292#351389292#0(0"0(0#0#87"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m4785176208#2130" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.997144 +e351386277.272419 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386276#351386277#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4488392336#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.902706 +e351389292.982185 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@104"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m351389292#351389292#0(0"0(0#0#96"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m4785176208#2148" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.919191 +e351386276.960456 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386276#351386276#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4488392336#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.782623 +e351389292.835629 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@104"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m351389292#351389292#0(0"0(0#0#96"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m4785176208#2148" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s351305970.749404 +e351305970.858355 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4575997584#365" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj 0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s348887521.562165 +e348887521.625799 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings348887521#348887521#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4623519376#374" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj 0# + +CCopyStringsFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +r0 + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +s351305970.712961 +e351305970.732881 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +xSource/SPMySQLConnection Categories/Databases & Tables.h +lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351305970#351305970#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4575997584#403" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +s351305970.712209 +e351305970.740798 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +xSource/SPMySQLConnection Categories/Delegate & Proxy.h +lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351305970#351305970#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4575997584#401" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h" "Source/SPMySQLConnection Categories/Encoding & Conversion.h" +s348974892.484151 +e348974892.511762 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +xSource/SPMySQLConnection Categories/Encoding & Conversion.h +lSLF07#2@64"Copy Source/SPMySQLConnection Categories/Encoding & Conversion.h348974892#348974892#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h4617666192#385" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +s351305970.709841 +e351305970.724154 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +xSource/SPMySQLResult Categories/Field Definitions.h +lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351305970#351305970#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4575997584#398" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +s351305970.711449 +e351305970.733648 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +xSource/SPMySQLConnection Categories/Max Packet Size.h +lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351305970#351305970#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4575997584#400" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +s351308731.413332 +e351308731.426021 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +xSource/SPMySQLConnection Categories/Querying & Preparation.h +lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351308731#351308731#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4542955152#407" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +s351305970.686630 +e351305970.709716 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +xSource/SPMySQLConnection Categories/Server Info.h +lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351305970#351305970#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4575997584#396" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +s351305970.685850 +e351305970.709531 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +xSource/SPMySQLConnection Categories/Encoding.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351305970#351305970#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4575997584#393" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h "Source/SPMySQLConnection Categories/Querying.h" +s349286646.091209 +e349286646.124156 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +xSource/SPMySQLConnection Categories/Querying.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Querying.h349286646#349286646#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h4481736336#393" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +s351308764.599575 +e351308764.610216 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +xSPMySQL.h +lSLF07#2@14"Copy SPMySQL.h351308764#351308764#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4545101456#354" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h Source/SPMySQL.h +r0 + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s351305970.683793 +e351305970.708220 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h351305970#351305970#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4575997584#371" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +s351305970.688275 +e351305970.723280 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +xSource/SPMySQLConnectionDelegate.h +lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351305970#351305970#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4575997584#379" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +s351305970.710781 +e351305970.732411 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +xSource/SPMySQLConnectionProxy.h +lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s351305970.684483 +e351305970.708660 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h351305970#351305970#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4575997584#370" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +s351386275.402592 +e351386275.414457 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +xSource/SPMySQLFastStreamingResult.h +lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351386275#351386275#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4488392336#380" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h Source/SPMySQLFullyStreamingResult.h +r0 + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +s351305970.689810 +e351305970.732608 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +xSource/SPMySQLGeometryData.h +lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351305970#351305970#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4575997584#373" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +s351376668.973039 +e351376668.984128 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +xSource/SPMySQLResult.h +lSLF07#2@27"Copy Source/SPMySQLResult.h351376668#351376669#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4544564880#367" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +s351305970.714493 +e351305970.740982 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +xSource/SPMySQLStreamingResult.h +lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s348887521.548409 +e348887521.561731 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h348887521#348887521#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4623519376#359" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s348887521.549428 +e348887521.562097 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h348887521#348887521#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4623519376#358" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/Locking "Source/SPMySQLConnection Categories/Locking" +r0 + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +s348964064.046418 +e348964064.130069 +r1 +xCpResource +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth348964064#348964064#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth4481736336#469" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources 0# + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +s349283773.968481 +e349283774.098447 +r1 +xCpResource +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth349283773#349283774#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth4483198608#469" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources 0# + +CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +s351093598.347160 +e351093598.359672 +r1 +xCreateUniversalBinary +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 i386 +lSLF07#2@91"CreateUniversalBinary build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351093598#351093598#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864563705488#406" cd /Users/rowan/code/SPMySQLFramework /usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +s351386683.317255 +e351386683.722909 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 +lSLF07#2@88"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351386683#351386683#0(0"0(0#0#0"4544028304#821" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +s348887521.626568 +e348887521.650054 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +xnormal +xx86_64 +lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#819" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +s351093533.424011 +e351093533.536477 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +xnormal +xi386 +lSLF07#2@126"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351093533#351093533#0(0"0(0#0#0"4566089360#855" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +s351093532.906597 +e351093533.143415 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +xnormal +xx86_64 +lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351093532#351093533#0(0"0(0#0#0"4566089360#861" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL 0# + +CLd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +s351389292.982396 +e351389293.317054 +r1 +xLd +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 +lSLF07#2@118"Link /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351389292#351389293#0(0"0(0#0#0"4785176208#1001" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug "-L/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s351305970.680288 +e351305970.683712 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist351305970#351305970#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4575997696#230" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist 0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s348887521.544786 +e348887521.548292 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist348887521#348887521#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4623519488#239" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist 0# + +CProcessInfoPlistFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348964063.306931 +e348964064.045425 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348964063#348964064#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4481736336#1693" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389290.951857 +e351389292.272956 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351389290#351389292#0(0"0(0#0#99"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch17336940800#1982" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349286504.307800 +e349286505.895897 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch349286504#349286505#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4603338384#1672" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s350330267.452714 +e350330268.654275 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch350330267#350330268#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4596461200#1682" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348937397.517447 +e348937398.178688 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348937397#348937398#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4546195088#1693" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386275.414661 +e351386276.601755 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386275#351386276#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4488392336#1682" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351096144.652465 +e351096145.473201 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351096144#351096145#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4563705488#1688" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351092561.457146 +e351092562.279771 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092561#351092562#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4553227920#1678" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +s351305970.677018 +e351305970.680208 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +xVersions/Current/Headers +lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +s351305970.672373 +e351305970.677773 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +xVersions/Current/Resources +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources351305970#351305970#0(0"0(0#0#0"4575997584#160" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +s351305970.673003 +e351305970.676831 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +xVersions/Current/SPMySQL +lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +s351305970.671411 +e351305970.676692 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +xA +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current351305970#351305970#0(0"0(0#0#0"4575997584#142" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +s348887521.541748 +e348887521.544706 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +xVersions/Current/Headers +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348887521#348887521#0(0"0(0#0#0"4623519376#165" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +s348887521.536417 +e348887521.542622 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +xVersions/Current/Resources +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348887521#348887521#0(0"0(0#0#0"4623519376#169" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +s348887521.537128 +e348887521.541676 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +xVersions/Current/SPMySQLFramework +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#183" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +s348887521.535560 +e348887521.541537 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +xA +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348887521#348887521#0(0"0(0#0#0"4623519376#151" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current 0# + +CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +r0 + +CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +r0 + +CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +r0 + +CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +r0 + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +s351386683.730291 +e351386683.740855 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +lSLF07#2@70"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework351386683#351386683#0(0"0(0#0#0"4544028304#129" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework 0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +s348887521.650171 +e348887521.653602 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348887521#348887521#0(0"0(0#0#0"4623519376#138" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework 0# + +CTouch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework +s351389622.487109 +e351389622.490715 +r1 +xTouch +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework +lSLF07#2@100"Touch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework351389622#351389622#0(0"0(0#0#0"4573408912#189" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework 0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat new file mode 100644 index 00000000..7b332576 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat @@ -0,0 +1,1941 @@ +TSPMySQL.framework +v7 +r0 +t351305972.548352 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h +c000000004864A1C900000000000012EE +t1214554569 +s4846 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h +c0000000047BAC506000000000000235B +t1203422470 +s9051 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration +c000000004B760CDC00000000000371FC +t1266027740 +s225788 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h +c0000000047E8839E0000000000000746 +t1206420382 +s1862 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h +c0000000047BA9932000000000000380F +t1203411250 +s14351 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib +c000000004B760D050000000000006EE8 +t1266027781 +s28392 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i +i +i +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h +c000000004F3FDF050000000000000EFA +t1329585925 +s3834 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQL.h +c000000004F404968000000000000088E +t1329613160 +s2190 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"SPMySQLFastStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQLConnection Private APIs.h +c000000004F3CF8880000000000000A80 +t1329395848 +s2688 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3D0465000000000000245E +t1329398885 +s9310 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +c000000004F1CBCB7000000000000041D +t1327283383 +s1053 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking +c000000004F1C42CD00000000000000BD +t1327252173 +s189 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F3D27B20000000000001DBA +t1329407922 +s7610 +i"Ping & KeepAlive.h" +i"Locking.h" +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F3DACAE00000000000011A6 +t1329441966 +s4518 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F4048F50000000000005507 +t1329613045 +s21767 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +c000000004F1C1C690000000000000419 +t1327242345 +s1049 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3D27C200000000000014E2 +t1329407938 +s5346 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F3D2AD30000000000006FD6 +t1329408723 +s28630 +i"SPMySQL Private APIs.h" +i +i +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h +c000000004F401EC20000000000000768 +t1329602242 +s1896 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +c000000004F404865000000000000364D +t1329612901 +s13901 +i"SPMySQLFastStreamingResult.h" +i"SPMySQL Private APIs.h" +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m +c000000004F3FFADE0000000000003EB1 +t1329593054 +s16049 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullyStreamingResult.h +c000000004F3ED347000000000000099C +t1329517383 +s2460 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F3D044500000000000069C8 +t1329398853 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F3FEA7E0000000000001137 +t1329588862 +s4407 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F40439E0000000000003B94 +t1329611678 +s15252 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F401EC60000000000000796 +t1329602246 +s1942 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F40481C0000000000001CFD +t1329612828 +s7421 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +t1329613172 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329613170 +s1809 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329613170 +s1406 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +t1327282092 +s1041 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329613170 +s1948 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329613170 +s1434 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329613170 +s1523 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329613170 +s4518 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +t1327593846 +s1013 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329613170 +s2190 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329613170 +s5346 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329613170 +s4161 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329613170 +s2180 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329613170 +s2349 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +t1329613170 +s1896 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329613170 +s1755 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329613170 +s4407 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329613170 +s1942 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329613170 +s1889 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329613170 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329613170 +s1144 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +t1327590974 +s18412 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +t1327590974 +s9938712 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +t1329613172 +s1248184 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +t1327194721 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +t3 +s33 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +t1327194721 +s1975 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +t1327194721 +s974 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1327194721 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +t1327194721 +s1170 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +t1327194721 +s19824 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +t1329400733 +s19884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +t1329400733 +s27352 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +t1329400733 +s20220 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +t1329400733 +s37304 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +t1329400733 +s42740 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +t1329400733 +s18212 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +t1329400733 +s24800 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +t1329400732 +s24544 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +t1329400733 +s40348 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +t1329400733 +s1044140 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +c000000004F3D0B9C00000000000007C4 +t1329400732 +s1988 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +t1329400733 +s73428 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +t1329400733 +s52104 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +t1329400733 +s34100 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +t1329400733 +s18328 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +t1329400733 +s4644 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +t1329400733 +s24188 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329613171 +s22200 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329613172 +s33788 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329613172 +s24288 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +t1327282093 +s884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329613171 +s44260 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329613172 +s58808 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329613172 +s20496 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329613172 +s30400 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329613171 +s29792 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329613172 +s63460 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +t1327974108 +s860 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +t1329400733 +s1221296 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F4049720000000000000873 +t1329613170 +s2163 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329613172 +s108652 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +t1329613172 +s42908 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +c000000004F1B6219000000000000021D +t1327194649 +s541 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329613172 +s63652 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329613172 +s49344 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329613172 +s31548 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329613172 +s5924 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329613171 +s28608 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +t1329612912 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +t1329612912 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +t1329612912 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +t1329612919 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +t1329612912 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +t1329612911 +s276 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +t1327271264 +s9934372 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +t1328637468 +s9956412 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +t1327244598 +s9932416 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +t1329613171 +s9978988 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +t1329403345 +s9973036 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +t1329399762 +s10910168 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +s351305711.277860 +e351305711.493304 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351305711#351305711#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4464422544#1843" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +s351305711.947543 +e351305712.135080 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351305711#351305712#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4464422544#1861" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +s351305711.858670 +e351305712.025641 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351305711#351305712#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4464422544#1857" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +s351305711.061701 +e351305711.282266 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351305711#351305711#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4464422544#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +s351305711.282397 +e351305711.484126 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351305711#351305711#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4464422544#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +s351305711.754318 +e351305711.947225 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351305711#351305712#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4464422544#1855" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +s351305711.060565 +e351305711.277720 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351305711#351305711#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4464422544#1857" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +s351305711.280217 +e351305711.485167 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351305711#351305711#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4464422544#1869" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +s351305711.062953 +e351305711.279889 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351305711#351305711#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4464422544#1847" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +s351305711.493431 +e351305711.689714 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351305711#351305711#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4464422544#1855" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist" 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +s351305711.059194 +e351305711.491198 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351305711#351305711#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4464422544#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +s351305711.491335 +e351305712.027748 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351305711#351305712#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4464422544#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +s351305711.488955 +e351305719.862589 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351305711#351305719#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4464422544#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +s351305711.485299 +e351305711.754186 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351305711#351305711#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4464422544#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +s351305712.025774 +e351305712.190584 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351305712#351305712#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4464422544#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +s351305711.696149 +e351305711.858533 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351305711#351305712#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4464422544#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist 0# + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies351305970#351305970#0(0"0(0#1#0"4575999296#0"0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.356219 +e351093533.423922 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351093533#351093533#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.314225 +e351093533.384062 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351093533#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.241830 +e351093533.356050 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351093533#351093533#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.311400 +e351093533.389820 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351093533#351093533#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.909342 +e351093533.002616 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351093532#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.078124 +e351093533.233582 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351093533#351093533#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1845" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.002775 +e351093533.077953 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351093533#351093533#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.282641 +e351305972.369585 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351305972#351305972#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4575997584#1843" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.246504 +e351305972.327581 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351305972#351305972#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4575997584#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348974893.569529 +e348974893.613561 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348974893#348974893#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4617666192#1860" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.141402 +e351305972.282271 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351305972#351305972#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4575997584#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.209224 +e351305972.316375 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351305972#351305972#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4575997584#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.580910 +e351305971.811974 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351305971#351305972#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4575997584#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.812170 +e351305972.141213 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351305971#351305972#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4575997584#1851" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.583220 +e351305971.804314 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351305971#351305972#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4575997584#1829" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# + +CCompileC build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349283773.971303 +e349283774.259882 +r1 +xCompileC +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') +o [self flushMultiResults]; +o ^~~~~~~~~~~~~~~~~~~~~~~~ +o1 warning generated. +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m349283773#349283774#0(268"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') [self flushMultiResults]; ^~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. 1(22@68"Method '-flushMultiResults' not found (return type defaults to 'id')349283774#0#178#0(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#0#0#49"method * not found (return type defaults to 'id')1(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#88#33#0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4483198608#1789" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.019170 +e351093533.085021 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351093533#351093533#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.910800 +e351093533.019019 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351093532#351093533#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1815" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.085189 +e351093533.156564 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351093533#351093533#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.907984 +e351093533.112078 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351093532#351093533#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1802" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.143594 +e351093533.371441 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351093533#351093533#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1806" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.112422 +e351093533.311221 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351093533#351093533#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1794" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.156743 +e351093533.254840 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.255195 +e351093533.314064 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.804476 +e351305971.887131 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351305971#351305972#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4575997584#1825" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.582020 +e351305971.860284 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351305971#351305972#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4575997584#1821" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.860667 +e351305972.121638 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351305971#351305972#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4575997584#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349666908.814076 +e349666908.859934 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m349666908#349666908#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4570701456#1821" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.579872 +e351305972.157012 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351305971#351305972#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4575997584#1808" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.132173 +e351305972.246330 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351305972#351305972#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4575997584#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.121997 +e351305972.338493 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351305972#351305972#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4575997584#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.887401 +e351305972.132008 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351305971#351305972#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4575997584#1800" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.316529 +e351305972.387143 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351305972#351305972#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4575997584#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.157173 +e351305972.200172 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351305972#351305972#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4575997584#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s351305970.749404 +e351305970.858355 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4575997584#365" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj 0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s348887521.562165 +e348887521.625799 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings348887521#348887521#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4623519376#374" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +s351305970.712961 +e351305970.732881 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +xSource/SPMySQLConnection Categories/Databases & Tables.h +lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351305970#351305970#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4575997584#403" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +s351305970.712209 +e351305970.740798 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +xSource/SPMySQLConnection Categories/Delegate & Proxy.h +lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351305970#351305970#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4575997584#401" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h" "Source/SPMySQLConnection Categories/Encoding & Conversion.h" +s348974892.484151 +e348974892.511762 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +xSource/SPMySQLConnection Categories/Encoding & Conversion.h +lSLF07#2@64"Copy Source/SPMySQLConnection Categories/Encoding & Conversion.h348974892#348974892#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h4617666192#385" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +s351305970.709841 +e351305970.724154 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +xSource/SPMySQLResult Categories/Field Definitions.h +lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351305970#351305970#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4575997584#398" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +s351305970.711449 +e351305970.733648 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +xSource/SPMySQLConnection Categories/Max Packet Size.h +lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351305970#351305970#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4575997584#400" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +s351305970.685050 +e351305970.708953 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +xSource/SPMySQLConnection Categories/Querying & Preparation.h +lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351305970#351305970#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4575997584#407" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +s351305970.686630 +e351305970.709716 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +xSource/SPMySQLConnection Categories/Server Info.h +lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351305970#351305970#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4575997584#396" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +s351305970.685850 +e351305970.709531 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +xSource/SPMySQLConnection Categories/Encoding.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351305970#351305970#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4575997584#393" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h "Source/SPMySQLConnection Categories/Querying.h" +s349286646.091209 +e349286646.124156 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +xSource/SPMySQLConnection Categories/Querying.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Querying.h349286646#349286646#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h4481736336#393" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +s351305970.687482 +e351305970.714200 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +xSPMySQL.h +lSLF07#2@14"Copy SPMySQL.h351305970#351305970#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4575997584#354" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s351305970.683793 +e351305970.708220 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h351305970#351305970#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4575997584#371" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +s351305970.688275 +e351305970.723280 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +xSource/SPMySQLConnectionDelegate.h +lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351305970#351305970#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4575997584#379" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +s351305970.710781 +e351305970.732411 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +xSource/SPMySQLConnectionProxy.h +lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s351305970.684483 +e351305970.708660 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h351305970#351305970#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4575997584#370" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +s351305970.702868 +e351305970.723794 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +xSource/SPMySQLFastStreamingResult.h +lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351305970#351305970#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4575997584#380" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h Source/SPMySQLFullyStreamingResult.h +r0 + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +s351305970.689810 +e351305970.732608 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +xSource/SPMySQLGeometryData.h +lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351305970#351305970#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4575997584#373" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +s351305970.689068 +e351305970.714380 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +xSource/SPMySQLResult.h +lSLF07#2@27"Copy Source/SPMySQLResult.h351305970#351305970#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4575997584#367" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +s351305970.714493 +e351305970.740982 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +xSource/SPMySQLStreamingResult.h +lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s348887521.548409 +e348887521.561731 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h348887521#348887521#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4623519376#359" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s348887521.549428 +e348887521.562097 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h348887521#348887521#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4623519376#358" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/Locking "Source/SPMySQLConnection Categories/Locking" +r0 + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +s348964064.046418 +e348964064.130069 +r1 +xCpResource +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth348964064#348964064#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth4481736336#469" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources 0# + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +s349283773.968481 +e349283774.098447 +r1 +xCpResource +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth349283773#349283774#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth4483198608#469" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources 0# + +CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +s351093598.347160 +e351093598.359672 +r1 +xCreateUniversalBinary +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 i386 +lSLF07#2@91"CreateUniversalBinary build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351093598#351093598#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864563705488#406" cd /Users/rowan/code/SPMySQLFramework /usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +s351305972.387268 +e351305972.543329 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 +lSLF07#2@88"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351305972#351305972#0(0"0(0#0#0"4575997584#821" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +s348887521.626568 +e348887521.650054 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +xnormal +xx86_64 +lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#819" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +s351093533.424011 +e351093533.536477 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +xnormal +xi386 +lSLF07#2@126"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351093533#351093533#0(0"0(0#0#0"4566089360#855" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +s351093532.906597 +e351093533.143415 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +xnormal +xx86_64 +lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351093532#351093533#0(0"0(0#0#0"4566089360#861" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL 0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s351305970.680288 +e351305970.683712 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist351305970#351305970#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4575997696#230" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist 0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s348887521.544786 +e348887521.548292 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist348887521#348887521#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4623519488#239" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348964063.306931 +e348964064.045425 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348964063#348964064#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4481736336#1693" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349286504.307800 +e349286505.895897 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch349286504#349286505#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4603338384#1672" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s350330267.452714 +e350330268.654275 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch350330267#350330268#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4596461200#1682" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348937397.517447 +e348937398.178688 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348937397#348937398#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4546195088#1693" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305970.858533 +e351305971.579762 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351305970#351305971#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4575997584#1682" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351096144.652465 +e351096145.473201 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351096144#351096145#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4563705488#1688" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351092561.457146 +e351092562.279771 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092561#351092562#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4553227920#1678" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +s351305970.677018 +e351305970.680208 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +xVersions/Current/Headers +lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +s351305970.672373 +e351305970.677773 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +xVersions/Current/Resources +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources351305970#351305970#0(0"0(0#0#0"4575997584#160" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +s351305970.673003 +e351305970.676831 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +xVersions/Current/SPMySQL +lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +s351305970.671411 +e351305970.676692 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +xA +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current351305970#351305970#0(0"0(0#0#0"4575997584#142" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +s348887521.541748 +e348887521.544706 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +xVersions/Current/Headers +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348887521#348887521#0(0"0(0#0#0"4623519376#165" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +s348887521.536417 +e348887521.542622 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +xVersions/Current/Resources +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348887521#348887521#0(0"0(0#0#0"4623519376#169" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +s348887521.537128 +e348887521.541676 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +xVersions/Current/SPMySQLFramework +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#183" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +s348887521.535560 +e348887521.541537 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +xA +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348887521#348887521#0(0"0(0#0#0"4623519376#151" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current 0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +s351305972.543411 +e351305972.548185 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +lSLF07#2@70"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework351305972#351305972#0(0"0(0#0#0"4575997584#129" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework 0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +s348887521.650171 +e348887521.653602 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348887521#348887521#0(0"0(0#0#0"4623519376#138" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework 0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList new file mode 100644 index 00000000..ee6600fd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList @@ -0,0 +1,4 @@ +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep new file mode 100644 index 00000000..4f116615 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep @@ -0,0 +1,26 @@ +8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +6f09ddca8eca2e7ded449cf19c21fcae 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +ddaf01dd2bbce412cdb434235cc79158 c84f5c95718af3fdaaa6238e43032d32 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap new file mode 100644 index 00000000..4b4f3bae Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap new file mode 100644 index 00000000..ae239724 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap new file mode 100644 index 00000000..75089206 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep new file mode 100644 index 00000000..4f116615 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep @@ -0,0 +1,26 @@ +8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +6f09ddca8eca2e7ded449cf19c21fcae 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +ddaf01dd2bbce412cdb434235cc79158 c84f5c95718af3fdaaa6238e43032d32 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap new file mode 100644 index 00000000..61085179 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep new file mode 100644 index 00000000..d5962a30 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep @@ -0,0 +1,26 @@ +afdc31850786cd60286b633ffd235a8b 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +ddaf01dd2bbce412cdb434235cc79158 089ab0daf8c610e06f89dc4022018b17 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat new file mode 100644 index 00000000..81439798 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat @@ -0,0 +1,573 @@ +TSPMySQLFramework +v7 +r0 +t348887378.697721 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i +i +i +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient_r.a +c000000004F13085B000000000044DF24 +t1326647387 +s4513572 + +N/Users/rowan/code/SPMySQLFramework/SPMySQLFramework_Prefix.pch +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h +c000000004F12164C0000000000000435 +t1326585420 +s1077 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +c000000004F1216570000000000000439 +t1326585431 +s1081 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F12112300000000000000E9 +t1326584099 +s233 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m +c000000004F120FE000000000000000C5 +t1326583776 +s197 +i"KeepAlive.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F121662000000000000042B +t1326585442 +s1067 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F121678000000000000042A +t1326585464 +s1066 +i"Ping & KeepAlive.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying +c000000004F12107E00000000000000C0 +t1326583934 +s192 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +c000000004F12159C0000000000000410 +t1326585244 +s1040 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F121685000000000000041F +t1326585477 +s1055 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F1216920000000000000419 +t1326585490 +s1049 +i"Server Info.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m +c000000004F1211E200000000000000C8 +t1326584290 +s200 +i"ServerInfo.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F12172C00000000000007B7 +t1326585644 +s1975 +i"mysql.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F12176A00000000000006A1 +t1326585706 +s1697 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F120F3700000000000003CE +t1326583607 +s974 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F1213EF00000000000000E0 +t1326584815 +s224 +i +i"SPMySQLConnection.h" +i"SPMySQLConstants.h" + +N/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh +c000000004F1306D600000000000010CF +t1326646998 +s4303 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +t1327193631 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +t3 +s33 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +t1327192330 +s1975 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +t1327192330 +s974 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1327192330 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +t1327192330 +s1170 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +t1327191371 +s860 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +t1327191371 +s9930088 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +t1326678637 +s4303 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +t1327193631 +s19824 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +t1327192336 +s884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1327192336 +s880 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1327192336 +s30944 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +c000000004F1B590A0000000000000219 +t1327192330 +s537 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +t1327192336 +s864 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +t1326678638 +s9811836 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +t1327192335 +s9930088 + +NInfo.plist +c00000000000000000000000000000000 +t2 +s0 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies348887378#348887378#0(0"0(0#1#0"4643620160#0"0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.093542 +e348885136.470816 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348885136#348885136#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4659613328#1889" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.090667 +e348885136.473067 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m348885136#348885136#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4659613328#1879" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.095529 +e348885136.471001 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m348885136#348885136#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4659613328#1869" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" 0# + +CCompileC build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348884170.905845 +e348884171.494330 +r1 +xCompileC +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m348884170#348884171#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4623957648#1841" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.082008 +e348885136.564440 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m348885136#348885136#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4659613328#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s348885130.166805 +e348885130.255427 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings348885130#348885130#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4659613328#374" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s348885130.154011 +e348885130.166572 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h348885130#348885130#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4659613328#359" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s348885130.154877 +e348885130.166731 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h348885130#348885130#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4659613328#358" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h "MySQL Client Libraries/include/my_alloc.h" +r0 + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h "MySQL Client Libraries/include/my_list.h" +r0 + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying "Source/SPMySQLConnection Categories/Querying" +r0 + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +s348278332.380397 +e348278332.430839 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth348278332#348278332#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth4625407632#478" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +s348884170.904955 +e348884171.416232 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth348884170#348884171#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth4623957648#478" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh build-mysql-client.sh +s348371437.536314 +e348371437.545070 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +xbuild-mysql-client.sh +lSLF07#2@26"Copy build-mysql-client.sh348371437#348371437#0(0"0(0#0#56"/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh4660764304#356" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/build-mysql-client.sh /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +s348886430.929802 +e348886431.970283 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +xnormal +xx86_64 +lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348886430#348886431#0(0"0(0#0#0"4621598352#818" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework 0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Info.plist +r0 + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s348885130.149865 +e348885130.153888 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist348885130#348885130#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4659613440#239" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348371437.603436 +e348371439.026191 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348371437#348371439#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4660764304#1723" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885130.274373 +e348885136.081829 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348885130#348885136#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4659613328#1723" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +s348885130.146238 +e348885130.149731 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +xVersions/Current/Headers +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348885130#348885130#0(0"0(0#0#0"4659613328#165" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +s348885130.139953 +e348885130.145964 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +xVersions/Current/Resources +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348885130#348885130#0(0"0(0#0#0"4659613328#169" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +s348885130.140931 +e348885130.146133 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +xVersions/Current/SPMySQLFramework +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348885130#348885130#0(0"0(0#0#0"4659613328#183" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +s348885130.138172 +e348885130.145709 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +xA +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348885130#348885130#0(0"0(0#0#0"4659613328#151" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current 0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +s348886431.970369 +e348886431.981881 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348886431#348886431#0(0"0(0#0#0"4621598352#138" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework 0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat new file mode 100644 index 00000000..a792a264 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat @@ -0,0 +1,573 @@ +TSPMySQLFramework +v7 +r0 +t348885137.132500 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i +i +i +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient_r.a +c000000004F13085B000000000044DF24 +t1326647387 +s4513572 + +N/Users/rowan/code/SPMySQLFramework/SPMySQLFramework_Prefix.pch +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h +c000000004F12164C0000000000000435 +t1326585420 +s1077 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +c000000004F1216570000000000000439 +t1326585431 +s1081 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F12112300000000000000E9 +t1326584099 +s233 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m +c000000004F120FE000000000000000C5 +t1326583776 +s197 +i"KeepAlive.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F121662000000000000042B +t1326585442 +s1067 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F121678000000000000042A +t1326585464 +s1066 +i"Ping & KeepAlive.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying +c000000004F12107E00000000000000C0 +t1326583934 +s192 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +c000000004F12159C0000000000000410 +t1326585244 +s1040 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F121685000000000000041F +t1326585477 +s1055 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F1216920000000000000419 +t1326585490 +s1049 +i"Server Info.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m +c000000004F1211E200000000000000C8 +t1326584290 +s200 +i"ServerInfo.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F12172C00000000000007B7 +t1326585644 +s1975 +i"mysql.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F12176A00000000000006A1 +t1326585706 +s1697 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F120F3700000000000003CE +t1326583607 +s974 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F1213EF00000000000000E0 +t1326584815 +s224 +i +i"SPMySQLConnection.h" +i"SPMySQLConstants.h" + +N/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh +c000000004F1306D600000000000010CF +t1326646998 +s4303 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +t1327192337 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +t3 +s33 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +t1327192330 +s1975 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +t1327192330 +s974 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1327192330 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +t1327192330 +s1170 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +t1327191371 +s860 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +t1327191371 +s9930088 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +t1326678637 +s4303 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +t1327192337 +s19824 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +t1327192336 +s884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1327192336 +s880 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1327192336 +s30944 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +c000000004F1B590A0000000000000219 +t1327192330 +s537 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +t1327192336 +s864 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +t1326678638 +s9811836 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +t1327192335 +s9930088 + +NInfo.plist +c00000000000000000000000000000000 +t2 +s0 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies348885130#348885130#0(0"0(0#1#0"4659615040#0"0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.093542 +e348885136.470816 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348885136#348885136#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4659613328#1889" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.090667 +e348885136.473067 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m348885136#348885136#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4659613328#1879" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.095529 +e348885136.471001 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m348885136#348885136#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4659613328#1869" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" 0# + +CCompileC build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348884170.905845 +e348884171.494330 +r1 +xCompileC +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m348884170#348884171#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4623957648#1841" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.082008 +e348885136.564440 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m348885136#348885136#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4659613328#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s348885130.166805 +e348885130.255427 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings348885130#348885130#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4659613328#374" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s348885130.154011 +e348885130.166572 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h348885130#348885130#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4659613328#359" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s348885130.154877 +e348885130.166731 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h348885130#348885130#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4659613328#358" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h "MySQL Client Libraries/include/my_alloc.h" +r0 + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h "MySQL Client Libraries/include/my_list.h" +r0 + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying "Source/SPMySQLConnection Categories/Querying" +r0 + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +s348278332.380397 +e348278332.430839 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth348278332#348278332#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth4625407632#478" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +s348884170.904955 +e348884171.416232 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth348884170#348884171#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth4623957648#478" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh build-mysql-client.sh +s348371437.536314 +e348371437.545070 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +xbuild-mysql-client.sh +lSLF07#2@26"Copy build-mysql-client.sh348371437#348371437#0(0"0(0#0#56"/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh4660764304#356" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/build-mysql-client.sh /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +s348885136.569985 +e348885137.125091 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +xnormal +xx86_64 +lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348885136#348885137#0(0"0(0#0#0"4659613328#819" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name /Users/rowan/Library/Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework 0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Info.plist +r0 + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s348885130.149865 +e348885130.153888 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist348885130#348885130#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4659613440#239" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348371437.603436 +e348371439.026191 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348371437#348371439#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4660764304#1723" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885130.274373 +e348885136.081829 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348885130#348885136#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4659613328#1723" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +s348885130.146238 +e348885130.149731 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +xVersions/Current/Headers +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348885130#348885130#0(0"0(0#0#0"4659613328#165" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +s348885130.139953 +e348885130.145964 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +xVersions/Current/Resources +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348885130#348885130#0(0"0(0#0#0"4659613328#169" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +s348885130.140931 +e348885130.146133 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +xVersions/Current/SPMySQLFramework +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348885130#348885130#0(0"0(0#0#0"4659613328#183" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +s348885130.138172 +e348885130.145709 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +xA +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348885130#348885130#0(0"0(0#0#0"4659613328#151" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current 0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +s348885137.125179 +e348885137.132458 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348885137#348885137#0(0"0(0#0#0"4659613328#138" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework 0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL new file mode 100755 index 00000000..8fe29d67 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList new file mode 100644 index 00000000..9fdfe40b --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList @@ -0,0 +1,16 @@ +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL new file mode 100755 index 00000000..ec8eb40c Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList new file mode 100644 index 00000000..7e49b0b0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList @@ -0,0 +1,16 @@ +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap new file mode 100644 index 00000000..f8ade402 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap new file mode 100644 index 00000000..98d0d0e0 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap new file mode 100644 index 00000000..6bf5b59c Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep new file mode 100644 index 00000000..4de35ccd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep @@ -0,0 +1,95 @@ +439b6b267f8209890f723d28a23d486a 4b20757cc119b568f6a44f68071b314e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +439b6b267f8209890f723d28a23d486a 56aa669f6e2725c20e38e7e7b100d905 ffffffffffffffffffffffffffffffff 27688 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +a283a4cd629af2b1a1e0556e1d620019 962fbc27accfda8ad3442750db82c64e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +a283a4cd629af2b1a1e0556e1d620019 9cf255ba5845a6c4b9aed1b7dfb7db8e ffffffffffffffffffffffffffffffff 35972 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +439b6b267f864e490f723d28a23d7232 860f100d264dcdc43237af622e039801 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +439b6b267f864e490f723d28a23d7232 d78ca805184db49027f9b825e97a6a73 ffffffffffffffffffffffffffffffff 26136 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +a283a4cd629eb571a1e0556e1d623a41 38b57965a87836baa1b85daf14eadc93 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +a283a4cd629eb571a1e0556e1d623a41 a9cbc4f7c6077ff53bd1fb128b2ab06e ffffffffffffffffffffffffffffffff 33948 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +439b6b267f8be2df0f723d28a23d45ee a03c16154169482a8070ae62c60edf99 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +439b6b267f8be2df0f723d28a23d45ee 9a70daac11d7e18e79bb71dea27f6399 ffffffffffffffffffffffffffffffff 20004 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +a283a4cd629319e7a1e0556e1d620d9d 9fe528a40af0f8ad7b06f6e81b69a93b ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +a283a4cd629319e7a1e0556e1d620d9d 6ae02c5d02e7f9b53b82c61113f8d492 ffffffffffffffffffffffffffffffff 24696 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +439b6b267f863b690f723d28a23d4e80 d48a27074632e1bf02be79dbd5f789b5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +439b6b267f863b690f723d28a23d4e80 f071e4c0016f18ad0ad39ddf9d594b22 ffffffffffffffffffffffffffffffff 23584 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +a283a4cd629ec051a1e0556e1d6206f3 75ce23c53f49731160d25dfa18d5b9c1 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +a283a4cd629ec051a1e0556e1d6206f3 00456ad484a527f49fcd5669eca79ed1 ffffffffffffffffffffffffffffffff 30528 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +439b6b267f8de6b70f723d28a23d59e6 2b30677c783716e865e04413bd92e5df ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +439b6b267f8de6b70f723d28a23d59e6 c89c72d32dd6b6409906c0016fe0d3e5 ffffffffffffffffffffffffffffffff 4668 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +a283a4cd62951d8fa1e0556e1d621195 2d4ac9478dfe4f5aee1937c1c0748e17 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +a283a4cd62951d8fa1e0556e1d621195 3e0d8d0ef435ec6d557aa0535fa1b127 ffffffffffffffffffffffffffffffff 6260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +439b6b267f8de7220f723d28a23d1ad6 b733e7c40a52dd8505c5b2796dd75995 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +439b6b267f8de7220f723d28a23d1ad6 bd2b26673348000092076c5dfb198548 ffffffffffffffffffffffffffffffff 37748 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +a283a4cd62951c1aa1e0556e1d6252a5 b72e02bb369b9740087560158afdcbbe ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +a283a4cd62951c1aa1e0556e1d6252a5 c33e65fd13a1e9c83ee5cf892da06e29 ffffffffffffffffffffffffffffffff 53824 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +439b6b2638392f1b0f723d28a23d5b1a 6318869f850d1695b0897111ec27b043 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist +439b6b2638392f1b0f723d28a23d5b1a 19394613896458b55a7cb73ebe96a3aa ffffffffffffffffffffffffffffffff 33152 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o +a283a4cd2521d423a1e0556e1d621369 5a6c32955c5f6ee8f99965bfdb353af0 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +a283a4cd2521d423a1e0556e1d621369 cea9069e532073dec4f18e3317c0cb62 ffffffffffffffffffffffffffffffff 43620 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +439b6b267f829b330f723d28a23d3b18 2313008c5b9c03d401c9200b0824194f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +439b6b267f829b330f723d28a23d3b18 a1d1ad47944de4c7d717352d8ee41cd1 ffffffffffffffffffffffffffffffff 39272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +a283a4cd629a600ba1e0556e1d62736b 72b23f7e4acf0d7cd43a861ccf0979cd ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +a283a4cd629a600ba1e0556e1d62736b 72726ca4dbc16482d490c705a0cca6eb ffffffffffffffffffffffffffffffff 56344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +439b6b267f834ac00f723d28a23d7b26 00f8cb4f8c118a32b280cac4a7f5f912 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +439b6b267f834ac00f723d28a23d7b26 698278bb1fb6b76e379a1715d197a6f3 ffffffffffffffffffffffffffffffff 37432 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +a283a4cd629bb1f8a1e0556e1d623355 d6f8f7bdc05588075959b7665d85a148 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +a283a4cd629bb1f8a1e0556e1d623355 dbf1bd1373cd904a7bc89413ba8f685e ffffffffffffffffffffffffffffffff 53480 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +439b6b267f8fcbd70f723d28a23d5afa 840cceea34958ae026e1a6a7422abd43 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +439b6b267f8fcbd70f723d28a23d5afa 026eecc232d0a3cc30ec10b820229a83 ffffffffffffffffffffffffffffffff 17924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +a283a4cd629730efa1e0556e1d621289 1a45cf0583c2f6d0c5ef28b71b13311e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +a283a4cd629730efa1e0556e1d621289 576e17676492de51f3b4ff0355c67670 ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +439b6b267ffe39210f723d28a23d10d4 6ab23e50abec661b85533f0373ed7b82 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +439b6b267ffe39210f723d28a23d10d4 3537e45f298051f10c9cb0f8059bfb6d ffffffffffffffffffffffffffffffff 47608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +a283a4cd62e6c219a1e0556e1d6258a7 01d3ff94adff5e01011ea1f1d6547ef8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +a283a4cd62e6c219a1e0556e1d6258a7 af763682c5b7d0774fb8b7aa04f2a761 ffffffffffffffffffffffffffffffff 64748 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +439b6b267f8de72c0f723d28a23d5350 61f6f624efbd36964f75b1903bffc793 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +439b6b267f8de72c0f723d28a23d5350 0fdb9d4912994edd9ad8f08d6c6bb16a ffffffffffffffffffffffffffffffff 19480 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +a283a4cd62951c14a1e0556e1d621b23 ebca9afd47eb3bb14921cd73b821c6ec ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +a283a4cd62951c14a1e0556e1d621b23 f005b2a61e638034ee424c772fbbb71e ffffffffffffffffffffffffffffffff 22616 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +439b6b267f87f8520f723d28a23d4008 42ed164e55c029a7b4c4b38a89ac7033 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +439b6b267f87f8520f723d28a23d4008 0cc9e2965afd9cf9f9980f3664b38fd0 ffffffffffffffffffffffffffffffff 23220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +a283a4cd629f036aa1e0556e1d62087b fb5259f4e02966ca8ec03cb13496b9c3 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +a283a4cd629f036aa1e0556e1d62087b c3c0c59f2f26e7e8ea47c8c2355245dd ffffffffffffffffffffffffffffffff 29120 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +439b6b267f8ae7200f723d28a23d693d 0c2a29e0435cbde181b7313d2138d245 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +439b6b267f8ae7200f723d28a23d693d 3858879310d58b585d5eee50c003cf6d ffffffffffffffffffffffffffffffff 34248 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +a283a4cd62921c18a1e0556e1d62214e 7a8e1b1af2d39f0b365f53558db34df2 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +a283a4cd62921c18a1e0556e1d62214e 4778e2aa93a1b99465a467babc349ef4 ffffffffffffffffffffffffffffffff 41604 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +439b6b267777f3b70f723d28a23d733f 278ccff559d0d339b5427b3e97227c34 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +439b6b267777f3b70f723d28a23d733f e753b39a97d70a07b0f80b34cf1d60ba ffffffffffffffffffffffffffffffff 24244 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +a283a4cd6a6f088fa1e0556e1d623b4c 17de75738a31ebffc30e0d9acec20b8c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +a283a4cd6a6f088fa1e0556e1d623b4c cf3e366704e9a0b53da7724ae9747498 ffffffffffffffffffffffffffffffff 29960 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +439b6b26772a11d90f723d28a23d23bc 06eaa9bfed37b1fe189ac69681e6e0b7 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +439b6b26772a11d90f723d28a23d23bc 411099d8b5db1a72b3ac71a9f314206d ffffffffffffffffffffffffffffffff 69624 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +a283a4cd6a32eae1a1e0556e1d626bcf 156b5116b4235d7104ef5d5aed6dc8d6 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +a283a4cd6a32eae1a1e0556e1d626bcf 2dab2056bb915b94e447ff6b6b6b7302 ffffffffffffffffffffffffffffffff 112588 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +c856b48c8c664baa5057d348c4c12159 93dc7b9384746b90a1a5a00a2d2c267a ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +00000000000000000000000000000000 490a066f32c11330b9dc183e5feaa0a5 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +64c2c8162f7ac160810601d8bbef13d3 bef62aa282175619fd7c9f84c4926565 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +00000000000000000000000000000000 b09b03c37c09d48ba9ff8655d655a691 ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +00000000000000000000000000000000 64c2c8162f7ac160810601d8bbef13d3 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +8564e689a9e9e989c135fe5a12c2d3dc 328c313a68ff27be285bf9eaa64e9603 ffffffffffffffffffffffffffffffff 2249976 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +e5aaed3e11be80dfea6341afc36c2612 938b3fdf7cc1a7b83e998c2df5062f73 ffffffffffffffffffffffffffffffff 1033464 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +000000004837395c000000000000f9fd 439b6b2637bade770f723d28a23dadf6 ffffffffffffffffffffffffffffffff 10915724 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth +abb54a59b281404a224b2ea5a1f163d2 58f07e3176178ea437841d7d8559b96f ffffffffffffffffffffffffffffffff 1209176 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +000000004837395c000000000000f9fd a283a4cd2aa2254fa1e0556e1d62e585 ffffffffffffffffffffffffffffffff 9978580 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 32d2cc5a41e00bf1c7b68229426811c5 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 4f9a17073f384a631a0b57331f5e11b3 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +00000000000000000000000000000000 2766745cb0b35c12ee92c246c863d42c ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +00000000000000000000000000000000 434b9e8908293ad5d73477ca173077ba ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +00000000000000000000000000000000 135056b04bbacc11ca8a8649aeeb2877 ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +00000000000000000000000000000000 a689c4d14a4cf06c58da73cf86203088 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +00000000000000000000000000000000 c7fea678f5ad55770a22fa3082f7e22c ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +00000000000000000000000000000000 92cbef9cd1417f6bd89044bcaa311e1f ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +00000000000000000000000000000000 53af4c31e414b382e748c352ca106010 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +00000000000000000000000000000000 d69623b42586a0e7a77bdc6b3db9a25b ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +00000000000000000000000000000000 0eb2245fae48e46f7fc23da0fe3c1ddb ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +ffffffffffffffffffffffffffffffff 69d459ff0fce61e08b901a4581295b87 ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +00000000000000000000000000000000 d019504419571a24515d592e5f08f04b ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +00000000000000000000000000000000 ae2101d928981cd4ebf971f2479d87cb ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +00000000000000000000000000000000 84d197301f6feaa3a9bc5988c3ad37c3 ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +00000000000000000000000000000000 78d0797c1e982629b44e2630b827a16e ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 67c2f60da643366245a35771986df9fe ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 0a0b806b8f45060393d0573e7f081622 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +000000000776121c000000000000e579 41f49ec3b5bf2eaf6c43a4003fca1b9b ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +000000000776121c000000000000e579 cfc4e04ca720d02330be85b813cfcf1c ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ad07be3761cbe476b57ac6ed1e8255a9 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep new file mode 100644 index 00000000..cfa1c0eb --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep @@ -0,0 +1,88 @@ +6308d6751e7867dc73b4d04343f2be5d 58f07e3176178ea437841d7d8559b96f ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +41f49ec3b2c04d306c43a4003fcadd6c 03507d629f5e29f63af0ac7ba6dc00b6 ffffffffffffffffffffffffffffffff 42192 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +cfc4e04ca05fb3bc30be85b813cf09eb 31b776da13e8248a547c63a11275cfde ffffffffffffffffffffffffffffffff 42336 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +41f49ec3b2cc1f266c43a4003fcaeaa8 9606c190f572973e1850112a08da3ac1 ffffffffffffffffffffffffffffffff 34272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +cfc4e04ca053e1aa30be85b813cf3e2f 6988d13cca45afb73fc7490cce2343e2 ffffffffffffffffffffffffffffffff 34592 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +41f49ec3b2c1c6906c43a4003fcae1c6 ecf94c388c9ca9e23c9d988666a40c1c ffffffffffffffffffffffffffffffff 39328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +cfc4e04ca05e381c30be85b813cf3541 39637492f961863a0427cc0a0eb65d1c ffffffffffffffffffffffffffffffff 39696 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +41f49ec3b2c93e876c43a4003fcaf30e edf336df89ff7744506cddbd9592aac9 ffffffffffffffffffffffffffffffff 5184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +cfc4e04ca056c00b30be85b813cf2789 fb1ea18eee145eadc5c662a4440d9002 ffffffffffffffffffffffffffffffff 4752 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +41f49ec3b2c93f126c43a4003fcab03e c8dfc9a120b7e843c07b7c00b7ea7692 ffffffffffffffffffffffffffffffff 49184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +cfc4e04ca056c19e30be85b813cf64b9 4b222ae690ea81517cacc4256c91ad1f ffffffffffffffffffffffffffffffff 49888 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +41f49ec3b2c93ed16c43a4003fcaf0dd b2e82e54cfd1482362d0f12c64527d2f ffffffffffffffffffffffffffffffff 31104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +cfc4e04ca056c05d30be85b813cf245a 134a551d0403213199e53d87b1c1cedf ffffffffffffffffffffffffffffffff 31472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +41f49ec3b2cb3ce26c43a4003fca91f0 ef6db5c5b3ebc6a9b45b9090e2f97468 ffffffffffffffffffffffffffffffff 44352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +cfc4e04ca054c26e30be85b813cf4577 ce9bfc808078fad5023b745a48fe80d4 ffffffffffffffffffffffffffffffff 47472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +41f49ec3b2c4b8d26c43a4003fcadca9 cc92ff84816ced60c6684dc17ebd8217 ffffffffffffffffffffffffffffffff 51056 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +cfc4e04ca05b465e30be85b813cf082e f3168ca9e236427bdc0dcc8e47d7d822 ffffffffffffffffffffffffffffffff 51472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +41f49ec3b2c8362e6c43a4003fcaf5bc b15a41b72af520c5cd69add5eda2fefd ffffffffffffffffffffffffffffffff 32128 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +cfc4e04ca057c8a230be85b813cf213b efa1c2aaf4b3ad44d38b92be58c25643 ffffffffffffffffffffffffffffffff 32080 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +41f49ec3b2c547fe6c43a4003fcaab0b fae5aebfc2fab07080989804e77863de ffffffffffffffffffffffffffffffff 60496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +cfc4e04ca05ab97230be85b813cf7f8c c2644e4f3db1faab7fd253d476ea8e3b ffffffffffffffffffffffffffffffff 62272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +41f49ec3b2c93f1c6c43a4003fcaf9b8 f21c7d60b301067dedd50f66022803d8 ffffffffffffffffffffffffffffffff 33872 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +cfc4e04ca056c19030be85b813cf2d3f e6f6e288356bd1d16212e885b0fee75f ffffffffffffffffffffffffffffffff 33488 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +41f49ec3b2c005ab6c43a4003fcaef4e 03175b9fa2b06f05fa23fd7faa9b9218 ffffffffffffffffffffffffffffffff 39472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +cfc4e04ca05ffb2730be85b813cf3bc9 5711492da652a4637f6c9781ecb4b386 ffffffffffffffffffffffffffffffff 39584 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +41f49ec3b2ce3f106c43a4003fcac3d5 a934077ed139414bb8d812ee84d117ac ffffffffffffffffffffffffffffffff 51968 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +cfc4e04ca051c19c30be85b813cf1752 a49b1d0858f0c3df4366fd814f84826d ffffffffffffffffffffffffffffffff 52336 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +41f49ec3ba403c816c43a4003fcad835 99512503d4688aac9ac694b8ea58d557 ffffffffffffffffffffffffffffffff 39568 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +cfc4e04ca8dfc20d30be85b813cf0cb2 e1cd3dcc8ad611b1343d9f5df8574cae ffffffffffffffffffffffffffffffff 40032 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +41f49ec3ba1092556c43a4003fca8ffa 1d9b45c10b50d3efe24967cf1ea784e3 ffffffffffffffffffffffffffffffff 99344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +cfc4e04ca88f6cd930be85b813cf5b7d 8a1f4c954309b05d14534c3cd15f8dbf ffffffffffffffffffffffffffffffff 105824 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +1b2a5b29ba9d985868da2a46ff06f488 938b3fdf7cc1a7b83e998c2df5062f73 ffffffffffffffffffffffffffffffff 1015004 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +00000000077611b4000000000000e578 41f49ec3b5bf2eaf6c43a4003fca1b9b ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +00000000077611b4000000000000e578 cfc4e04ca720d02330be85b813cfcf1c ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 32d2cc5a41e00bf1c7b68229426811c5 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 434b9e8908293ad5d73477ca173077ba ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +00000000000000000000000000000000 135056b04bbacc11ca8a8649aeeb2877 ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +00000000000000000000000000000000 2766745cb0b35c12ee92c246c863d42c ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +00000000000000000000000000000000 a689c4d14a4cf06c58da73cf86203088 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +00000000000000000000000000000000 c7fea678f5ad55770a22fa3082f7e22c ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +00000000000000000000000000000000 4f9a17073f384a631a0b57331f5e11b3 ffffffffffffffffffffffffffffffff 1601 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +00000000000000000000000000000000 53af4c31e414b382e748c352ca106010 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +00000000000000000000000000000000 0eb2245fae48e46f7fc23da0fe3c1ddb ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +00000000000000000000000000000000 d69623b42586a0e7a77bdc6b3db9a25b ffffffffffffffffffffffffffffffff 4174 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +00000000000000000000000000000000 69d459ff0fce61e08b901a4581295b87 ffffffffffffffffffffffffffffffff 2149 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +00000000000000000000000000000000 ae2101d928981cd4ebf971f2479d87cb ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +00000000000000000000000000000000 84d197301f6feaa3a9bc5988c3ad37c3 ffffffffffffffffffffffffffffffff 3024 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +00000000000000000000000000000000 78d0797c1e982629b44e2630b827a16e ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 d019504419571a24515d592e5f08f04b ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +00000000000000000000000000000000 67c2f60da643366245a35771986df9fe ffffffffffffffffffffffffffffffff 5344 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 0a0b806b8f45060393d0573e7f081622 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +64c2c8162f7ac160810601d8bbef13d3 bef62aa282175619fd7c9f84c4926565 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +00000000000000000000000000000000 64c2c8162f7ac160810601d8bbef13d3 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +00000000000000000000000000000000 490a066f32c11330b9dc183e5feaa0a5 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +00000000000000000000000000000000 b09b03c37c09d48ba9ff8655d655a691 ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap new file mode 100644 index 00000000..406d3bca Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist @@ -0,0 +1,12 @@ + + + + + files + + + diagnostics + + + + \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat new file mode 100644 index 00000000..bd54a9b3 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat @@ -0,0 +1,1690 @@ +TSPMySQL.framework +v7 +r0 +t351386739.899509 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +cCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +cTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h +c0000000047BAC506000000000000235B +t1203422470 +s9051 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration +c000000004B760CDC00000000000371FC +t1266027740 +s225788 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h +c0000000047E8839E0000000000000746 +t1206420382 +s1862 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h +c0000000047BA9932000000000000380F +t1203411250 +s14351 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib +c000000004B760D050000000000006EE8 +t1266027781 +s28392 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i +i +i +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h +c000000004F3FDF050000000000000EFA +t1329585925 +s3834 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQL.h +c000000004F40545B00000000000008AA +t1329615963 +s2218 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"SPMySQLFastStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3D0465000000000000245E +t1329398885 +s9310 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F4184B40000000000001D1F +t1329693876 +s7455 +i"Ping & KeepAlive.h" +i"Locking.h" +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F40542D0000000000001194 +t1329615917 +s4500 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F405438000000000000554B +t1329615928 +s21835 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3D27C200000000000014E2 +t1329407938 +s5346 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F4184A80000000000006ED3 +t1329693864 +s28371 +i"SPMySQL Private APIs.h" +i +i +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h +c000000004F417F8900000000000006A2 +t1329692553 +s1698 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +c000000004F41837B00000000000034CA +t1329693563 +s13514 +i"SPMySQLFastStreamingResult.h" +i"SPMySQL Private APIs.h" +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F3D044500000000000069C8 +t1329398853 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F415CF40000000000001137 +t1329683700 +s4407 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F415CEF0000000000003B6C +t1329683695 +s15212 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F401EC60000000000000796 +t1329602246 +s1942 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F415D940000000000001E81 +t1329683860 +s7809 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +t1329693917 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329398513 +s1809 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329398513 +s1406 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329398513 +s1948 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329398513 +s1434 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329398513 +s1523 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329685305 +s4500 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329685305 +s2218 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329613179 +s5346 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329398513 +s4161 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329398513 +s2180 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329398513 +s2349 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +t1329693268 +s1698 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329398513 +s1755 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329685305 +s4407 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329613179 +s1942 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329398513 +s1889 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329398513 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329398513 +s1144 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +t1329693917 +s2249976 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +t1329693271 +s19480 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +t1329693271 +s26136 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +t1329693271 +s20004 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +t1329693270 +s34248 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +t1329693271 +s37748 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +t1329693271 +s17924 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +t1329693271 +s23584 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +t1329693917 +s24244 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +t1329693271 +s47608 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +t1329693917 +s1033464 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +c000000004F40497B0000000000000873 +t1329613179 +s2163 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +t1329693917 +s69624 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o +t1329693917 +s33152 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +t1329693271 +s39272 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +t1329693271 +s37432 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +t1329693271 +s27688 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +t1329693271 +s4668 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +t1329693270 +s23220 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329693270 +s22616 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329693270 +s33948 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329693270 +s24696 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329693270 +s41604 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329693270 +s53824 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329693270 +s20496 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329693270 +s30528 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329693917 +s29960 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329693270 +s64748 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +t1329693917 +s1209176 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F40497B0000000000000893 +t1329613179 +s2195 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329693917 +s112588 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +t1329693917 +s43620 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329693270 +s56344 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329693270 +s53480 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329693270 +s35972 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329693270 +s6260 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329693269 +s29120 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +t1329693939 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +t1329693939 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +t1329693925 +s276 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +t1329399806 +s10910168 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth +t1329693269 +s9978580 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth +t1329693269 +s10915724 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +t1329399805 +s9973036 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +s351386726.931095 +e351386727.138087 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386726#351386727#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4456279696#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +s351386728.125354 +e351386728.328516 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386728#351386728#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4456279696#1854" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +s351386728.009400 +e351386728.206574 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386728#351386728#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4456279696#1850" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +s351386726.732878 +e351386726.930918 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386726#351386726#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4456279696#1832" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +s351386727.098607 +e351386727.324678 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386727#351386727#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4456279696#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +s351386727.826828 +e351386728.009261 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386727#351386728#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4456279696#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +s351386726.677071 +e351386726.890868 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386726#351386726#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4456279696#1850" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +s351386727.095184 +e351386727.316856 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386727#351386727#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4456279696#1862" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +s351386726.891006 +e351386727.095043 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386726#351386727#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4456279696#1840" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist" 0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +s351386727.441710 +e351386727.644236 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386727#351386727#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4456279696#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist" 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +s351386726.540458 +e351386727.098463 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386726#351386727#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4456279696#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +s351386727.325094 +e351386728.125033 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386727#351386728#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4456279696#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +s351386727.317021 +e351386739.899284 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386727#351386739#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4456279696#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +s351386727.138427 +e351386727.441566 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386727#351386727#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4456279696#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +s351386728.206708 +e351386728.399588 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386728#351386728#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4456279696#1829" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist 0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +s351386727.644367 +e351386727.826673 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386727#351386727#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4456279696#1829" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist 0# + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies351386724#351386725#0(0"0(0#1#0"4456281408#0"0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.565348 +e351386071.886597 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386071#351386071#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.478164 +e351386071.590044 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386071#351386071#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4551671440#1832" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.379642 +e351386071.590384 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386071#351386071#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4551671440#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.461965 +e351386071.565181 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386071#351386071#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4551671440#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.310522 +e351386717.459785 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386717#351386717#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4554342032#1832" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.984552 +e351386071.267628 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386070#351386071#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4551671440#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.872194 +e351386070.984379 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386070#351386070#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4551671440#1822" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.555052 +e351386070.698435 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386070#351386070#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4551671440#1842" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.506238 +e351386070.611349 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386070#351386070#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4551671440#1838" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.319561 +e351386070.557323 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386070#351386070#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.435380 +e351386070.554868 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386070#351386070#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.012572 +e351386717.310364 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386717#351386717#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4554342032#1838" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386069.976557 +e351386070.262717 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386069#351386070#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4551671440#1850" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386069.859589 +e351386069.966150 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386069#351386069#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4551671440#1828" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.923556 +e351386071.031146 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386070#351386071#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4551671440#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.698596 +e351386070.902717 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386070#351386070#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4551671440#1814" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.031939 +e351386071.108496 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386071#351386071#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4551671440#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.018001 +e351386717.514378 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386717#351386717#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4554342032#1801" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.361867 +e351386717.525838 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386717#351386717#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4554342032#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.205736 +e351386071.887209 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386071#351386071#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4551671440#1805" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.108629 +e351386071.423703 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386071#351386071#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4551671440#1793" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.590640 +e351386071.886979 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386071#351386071#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.423866 +e351386071.477982 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386071#351386071#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386069.966522 +e351386070.087669 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386069#351386070#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4551671440#1824" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386069.858167 +e351386070.028025 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386069#351386070#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4551671440#1820" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.031108 +e351386070.115713 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386070#351386070#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4551671440#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.010711 +e351386717.532164 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386717#351386717#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4554342032#1807" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.015019 +e351386717.356926 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386717#351386717#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4554342032#1825" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.115858 +e351386070.798434 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386070#351386070#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.088098 +e351386070.319385 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386070#351386070#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4551671440#1799" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.557464 +e351386070.688127 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386070#351386070#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4551671440#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.378888 +e351386070.435210 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386070#351386070#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4551671440#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s351091313.342511 +e351091313.395429 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4566089360#367" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +s351091313.320298 +e351091313.333153 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +xSource/SPMySQLConnection Categories/Databases & Tables.h +lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351091313#351091313#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4566089360#405" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +s351091313.319420 +e351091313.342371 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +xSource/SPMySQLConnection Categories/Delegate & Proxy.h +lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351091313#351091313#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4566089360#403" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +s351091313.310565 +e351091313.325376 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +xSource/SPMySQLResult Categories/Field Definitions.h +lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351091313#351091313#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4566089360#400" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +s351091313.318441 +e351091313.333420 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +xSource/SPMySQLConnection Categories/Max Packet Size.h +lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351091313#351091313#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4566089360#402" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +s351378105.959192 +e351378105.972769 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +xSource/SPMySQLConnection Categories/Querying & Preparation.h +lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351378105#351378105#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4544564880#409" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +s351091313.289711 +e351091313.310342 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +xSource/SPMySQLConnection Categories/Server Info.h +lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351091313#351091313#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4566089360#398" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +s351091313.288896 +e351091313.317405 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +xSource/SPMySQLConnection Categories/Encoding.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351091313#351091313#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4566089360#395" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +s351378105.960224 +e351378105.973137 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +xSPMySQL.h +lSLF07#2@14"Copy SPMySQL.h351378105#351378105#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4544564880#356" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s351305979.657134 +e351305979.678654 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h351305979#351305979#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4456279696#373" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +s351091313.291285 +e351091313.321567 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +xSource/SPMySQLConnectionDelegate.h +lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351091313#351091313#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4566089360#381" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +s351091313.313233 +e351091313.331649 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +xSource/SPMySQLConnectionProxy.h +lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s351091313.287583 +e351091313.316981 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h351091313#351091313#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4566089360#372" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +s351386068.547227 +e351386068.558500 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +xSource/SPMySQLFastStreamingResult.h +lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351386068#351386068#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4551671440#382" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +s351091313.292835 +e351091313.321741 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +xSource/SPMySQLGeometryData.h +lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351091313#351091313#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4566089360#375" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +s351378105.961194 +e351378105.973440 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +xSource/SPMySQLResult.h +lSLF07#2@27"Copy Source/SPMySQLResult.h351378105#351378105#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4544564880#369" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +s351305979.661983 +e351305979.680356 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +xSource/SPMySQLStreamingResult.h +lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305979#351305979#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4456279696#378" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +s351386717.931058 +e351386717.962365 +r1 +xCreateUniversalBinary +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 i386 +lSLF07#2@93"CreateUniversalBinary build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351386717#351386717#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864554342032#412" cd /Users/rowan/code/SPMySQLFramework /usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL 0# + +CGenerateDSYMFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +r0 + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +s351386717.526013 +e351386717.881233 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +xnormal +xi386 +lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351386717#351386717#0(0"0(0#0#0"4554342032#863" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +s351386717.532291 +e351386717.930955 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +xnormal +xx86_64 +lSLF07#2@130"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351386717#351386717#0(0"0(0#0#0"4554342032#869" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL 0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s351091313.283593 +e351091313.286836 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist351091313#351091313#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4566089472#232" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351092604.819745 +e351092606.154963 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092604#351092606#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4634766992#1681" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386068.558766 +e351386069.716248 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386068#351386069#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4551671440#1679" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386068.559718 +e351386069.854468 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386068#351386069#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4551671440#1675" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351092604.818783 +e351092605.903013 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092604#351092605#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4634766992#1685" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers +s351091313.281056 +e351091313.283506 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +xVersions/Current/Headers +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources +s351091313.276568 +e351091313.280820 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +xVersions/Current/Resources +lSLF07#2@84"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources351091313#351091313#0(0"0(0#0#0"4566089360#162" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +s351091313.277533 +e351091313.281810 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +xVersions/Current/SPMySQL +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A +s351091313.274448 +e351091313.280642 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +xA +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current351091313#351091313#0(0"0(0#0#0"4566089360#144" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current 0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +s351386717.962479 +e351386717.967053 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +lSLF07#2@72"Touch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework351386717#351386717#0(0"0(0#0#0"4554342032#131" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework 0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat new file mode 100644 index 00000000..95153397 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat @@ -0,0 +1,1498 @@ +TSPMySQL.framework +v7 +r0 +t351091318.239430 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h +c0000000047BAC506000000000000235B +t1203422470 +s9051 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration +c000000004B760CDC00000000000371FC +t1266027740 +s225788 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h +c0000000047E8839E0000000000000746 +t1206420382 +s1862 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h +c0000000047BA9932000000000000380F +t1203411250 +s14351 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib +c000000004B760D050000000000006EE8 +t1266027781 +s28392 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i +i +i +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h +c000000004F3CFACC0000000000000B54 +t1329396428 +s2900 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQL.h +c000000004F3D02A50000000000000865 +t1329398437 +s2149 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3CFAE50000000000002446 +t1329396453 +s9286 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F3293B20000000000001CFD +t1328714674 +s7421 +i"Ping & KeepAlive.h" +i"Locking.h" +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F3D01090000000000000BD0 +t1329398025 +s3024 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F3D02C600000000000041D0 +t1329398470 +s16848 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3CF21A00000000000014E0 +t1329394202 +s5344 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F3CFADD0000000000006DD3 +t1329396445 +s28115 +i"SPMySQL Private APIs.h" +i +i +i + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F307BA400000000000069C8 +t1328577444 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F3CF545000000000000104E +t1329395013 +s4174 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F3CFAB500000000000032DC +t1329396405 +s13020 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F3C36140000000000000641 +t1329346068 +s1601 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F3C37DE000000000000087F +t1329346526 +s2175 +i"SPMySQLStreamingResult.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329398513 +s1809 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329398513 +s1406 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329398513 +s1948 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329398513 +s1434 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329398513 +s1523 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329398513 +s3024 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329398513 +s2149 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329398513 +s5344 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329398513 +s4161 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329398513 +s2180 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329398513 +s2349 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329398513 +s1755 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329398513 +s4174 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329398513 +s1601 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329398513 +s1889 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329398513 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329398513 +s1144 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +t1329398515 +s33872 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +t1329398515 +s42192 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +t1329398515 +s34272 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +t1329398515 +s51968 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +t1329398515 +s49184 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +t1329398515 +s32128 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +t1329398515 +s39328 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +t1329398515 +s39568 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +t1329398515 +s60496 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +t1329398517 +s1015004 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +c000000004F3D02F100000000000007E2 +t1329398513 +s2018 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +t1329398515 +s99344 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +t1329398515 +s44352 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +t1329398515 +s51056 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +t1329398515 +s31104 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +t1329398515 +s5184 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +t1329398515 +s39472 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329398515 +s33488 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329398515 +s42336 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329398515 +s34592 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329398514 +s52336 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329398515 +s49888 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329398515 +s32080 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329398515 +s39696 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329398514 +s40032 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329398515 +s62272 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F3D02F10000000000000800 +t1329398513 +s2048 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329398515 +s105824 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329398515 +s47472 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329398515 +s51472 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329398515 +s31472 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329398515 +s4752 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329398514 +s39584 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +t1329398514 +s10910168 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +t1329398514 +s9973036 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +r0 + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies351091313#351091313#0(0"0(0#1#0"4566091072#0"0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.877088 +e351091315.939689 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:129:52:{129:52-129:81}{129:18-129:19}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] +o databaseList = [NSMutableArray arrayWithCapacity:[databaseResult numberOfRows]]; +o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:219:49:{219:49-219:75}{219:15-219:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] +o tableList = [NSMutableArray arrayWithCapacity:[tableResult numberOfRows]]; +o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~ +o2 warnings generated. +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351091315#351091316#0(926"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:129:52:{129:52-129:81}{129:18-129:19}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] databaseList = [NSMutableArray arrayWithCapacity:[databaseResult numberOfRows]]; ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:219:49:{219:49-219:75}{219:15-219:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] tableList = [NSMutableArray arrayWithCapacity:[tableResult numberOfRows]]; ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. 2(22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#0#264#0(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#52#0#0#0"2(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#52#129#81#6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#18#129#19#22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#458#264#0(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#49#0#0#0"2(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#49#219#75#6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#15#219#16#0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.845386 +e351091315.898295 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351091315#351091316#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1838" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.743682 +e351091315.845212 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351091315#351091315#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.802289 +e351091315.876908 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351091315#351091315#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.420747 +e351091315.517376 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351091315#351091315#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1838" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.595894 +e351091315.715091 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:115:88:{115:88-115:107}: warning: incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') +o const char *cQueryString = _cStringForStringWithEncoding(theQueryString, theEncoding, &cQueryStringLength); +o ^~~~~~~~~~~~~~~~~~~ +oIn file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: +oIn file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:49:117: note: passing argument to parameter 'cStringLengthPointer' here +o static inline const char* _cStringForStringWithEncoding(NSString* aString, NSStringEncoding anEncoding, NSUInteger *cStringLengthPointer) +o ^ +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:153:78:{153:78-153:106}{153:34-153:35}: warning: implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int') [-Wconversion] +o if (lastQueryWasCancelled && ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) { +o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:343:129:{343:129-343:152}: warning: incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') +o const char *killQueryCString = [SPMySQLConnection _cStringForString:killQuery usingEncoding:aStringEncoding returningLengthAs:&killQueryCStringLength]; +o ^~~~~~~~~~~~~~~~~~~~~~~ +oIn file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: +oIn file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:38:130: note: passing argument to parameter 'cStringLengthPointer' here +o + (const char *)_cStringForString:(NSString *)aString usingEncoding:(NSStringEncoding)anEncoding returningLengthAs:(NSUInteger *)cStringLengthPointer; +o ^ +o3 warnings generated. +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091315#351091315#0(2845"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:115:88:{115:88-115:107}: warning: incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') const char *cQueryString = _cStringForStringWithEncoding(theQueryString, theEncoding, &cQueryStringLength); ^~~~~~~~~~~~~~~~~~~ In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:49:117: note: passing argument to parameter 'cStringLengthPointer' here static inline const char* _cStringForStringWithEncoding(NSString* aString, NSStringEncoding anEncoding, NSUInteger *cStringLengthPointer) ^ /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:153:78:{153:78-153:106}{153:34-153:35}: warning: implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int') [-Wconversion] if (lastQueryWasCancelled && ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) { ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:343:129:{343:129-343:152}: warning: incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') const char *killQueryCString = [SPMySQLConnection _cStringForString:killQuery usingEncoding:aStringEncoding returningLengthAs:&killQueryCStringLength]; ^~~~~~~~~~~~~~~~~~~~~~~ In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:38:130: note: passing argument to parameter 'cStringLengthPointer' here + (const char *)_cStringForString:(NSString *)aString usingEncoding:(NSStringEncoding)anEncoding returningLengthAs:(NSUInteger *)cStringLengthPointer; ^ 3 warnings generated. 5(22@111"Incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *')351091315#0#242#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#115#88#0#0#28"incompatible pointer types *1(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#115#88#115#107#13@57"Passing argument to parameter 'cStringLengthPointer' here351091315#680#156#3(7@83"In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40:351091315#596#84#0(6@57"/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h351089228#40#0#40#0#0"0(7@121"In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35:351091315#474#122#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#35#0#35#0#0"0(13@144"Passing argument to parameter 'cStringLengthPointer' here in /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h351091315#18446744073709551615#0#0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#49#117#0#0#0"0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#49#117#0#0#0"0(22@81"Implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int')351091315#1095#242#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#78#0#0#0"2(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#78#153#106#6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#34#153#35#22@111"Incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *')351091315#1597#244#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#343#129#0#0#28"incompatible pointer types *1(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#343#129#343#152#13@57"Passing argument to parameter 'cStringLengthPointer' here351091315#2383#156#3(7@83"In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40:351091315#18446744073709551615#0#0(6@57"/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h351089228#40#0#40#0#0"0(7@121"In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35:351091315#18446744073709551615#0#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#35#0#35#0#0"0(13@144"Passing argument to parameter 'cStringLengthPointer' here in /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h351091315#18446744073709551615#0#0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#38#130#0#0#0"0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#38#130#0#0#0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1850" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.519976 +e351091315.589298 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351091315#351091315#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1828" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.376687 +e351091315.460709 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351091315#351091315#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.347177 +e351091315.420334 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351091315#351091315#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.263236 +e351091315.376520 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351091315#351091315#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.320220 +e351091315.389086 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351091315#351091315#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.746206 +e351091314.990027 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351091314#351091314#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.987517 +e351091315.263012 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091314#351091315#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1856" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.748573 +e351091314.984806 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351091314#351091314#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1834" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.587346 +e351091315.642216 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351091315#351091315#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1824" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.460885 +e351091315.587192 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351091315#351091315#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1820" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.601304 +e351091315.659779 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351091315#351091315#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.389247 +e351091315.601015 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351091315#351091315#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1807" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.659964 +e351091315.878948 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m:767:10:{767:10-767:17}{767:3-767:9}: warning: implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int') [-Wconversion] +o return geoType; +o ~~~~~~ ^~~~~~~ +o1 warning generated. +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351091315#351091315#0(309"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m:767:10:{767:10-767:17}{767:3-767:9}: warning: implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int') [-Wconversion] return geoType; ~~~~~~ ^~~~~~~ 1 warning generated. 1(22@97"Implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int')351091315#0#223#0(6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#10#0#0#0"2(6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#10#767#17#6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#3#767#9#0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.642626 +e351091315.743521 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m:353:19:{353:19-353:46}{353:3-353:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] +o itemsToReturn = numberOfRows - state->state; +o ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +o1 warning generated. +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351091315#351091315#0(373"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m:353:19:{353:19-353:46}{353:3-353:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] itemsToReturn = numberOfRows - state->state; ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. 1(22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#0#229#0(6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#19#0#0#0"2(6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#19#353#46#6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#3#353#16#0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1799" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.715443 +e351091315.763302 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] +o } +o ^ +o1 warning generated. +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351091315#351091315#0(166"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ 1 warning generated. 1(22@40"Control reaches end of non-void function351091315#0#139#0(6@66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351039326#55#1#0#0#40"control reaches end of non-void function0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.763478 +e351091315.802101 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351091315#351091315#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.985444 +e351091315.239722 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351091314#351091315#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.747075 +e351091314.987361 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351091314#351091314#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.990338 +e351091315.259622 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351091314#351091315#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1824" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.745139 +e351091315.104285 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351091314#351091315#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.239879 +e351091315.589604 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351091315#351091315#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.104440 +e351091315.319957 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351091315#351091315#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1805" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.259780 +e351091315.304425 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] +o } +o ^ +o1 warning generated. +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351091315#351091315#0(166"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ 1 warning generated. 1(22@40"Control reaches end of non-void function351091315#0#139#0(6@66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351039326#55#1#0#0#40"control reaches end of non-void function0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.304845 +e351091315.346992 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351091315#351091315#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s351091313.342511 +e351091313.395429 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4566089360#367" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +s351091313.320298 +e351091313.333153 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +xSource/SPMySQLConnection Categories/Databases & Tables.h +lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351091313#351091313#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4566089360#405" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +s351091313.319420 +e351091313.342371 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +xSource/SPMySQLConnection Categories/Delegate & Proxy.h +lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351091313#351091313#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4566089360#403" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +s351091313.310565 +e351091313.325376 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +xSource/SPMySQLResult Categories/Field Definitions.h +lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351091313#351091313#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4566089360#400" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +s351091313.318441 +e351091313.333420 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +xSource/SPMySQLConnection Categories/Max Packet Size.h +lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351091313#351091313#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4566089360#402" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +s351091313.288166 +e351091313.317229 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +xSource/SPMySQLConnection Categories/Querying & Preparation.h +lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351091313#351091313#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4566089360#409" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +s351091313.289711 +e351091313.310342 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +xSource/SPMySQLConnection Categories/Server Info.h +lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351091313#351091313#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4566089360#398" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +s351091313.288896 +e351091313.317405 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +xSource/SPMySQLConnection Categories/Encoding.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351091313#351091313#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4566089360#395" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +s351091313.290545 +e351091313.317984 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +xSPMySQL.h +lSLF07#2@14"Copy SPMySQL.h351091313#351091313#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4566089360#356" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s351091313.286917 +e351091313.310077 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h351091313#351091313#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4566089360#373" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +s351091313.291285 +e351091313.321567 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +xSource/SPMySQLConnectionDelegate.h +lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351091313#351091313#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4566089360#381" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +s351091313.313233 +e351091313.331649 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +xSource/SPMySQLConnectionProxy.h +lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s351091313.287583 +e351091313.316981 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h351091313#351091313#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4566089360#372" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +s351091313.292835 +e351091313.321741 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +xSource/SPMySQLGeometryData.h +lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351091313#351091313#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4566089360#375" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +s351091313.292092 +e351091313.318145 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +xSource/SPMySQLResult.h +lSLF07#2@27"Copy Source/SPMySQLResult.h351091313#351091313#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4566089360#369" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +s351091313.293654 +e351091313.321896 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +xSource/SPMySQLStreamingResult.h +lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# + +CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +r0 + +CGenerateDSYMFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +r0 + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +s351091315.939785 +e351091317.535719 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +xnormal +xi386 +lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351091315#351091317#0(0"0(0#0#0"4566089360#863" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL 0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +s351091315.589725 +e351091318.239354 +r0 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +xnormal +xx86_64 +oclang: error: linker command failed due to signal 11 (use -v to see invocation) +lSLF07#2@130"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351091315#351091318#0(139"clang: error: linker command failed due to signal 11 (use -v to see invocation) Command /Developer/usr/bin/clang failed with exit code 245 1(4@58"Command /Developer/usr/bin/clang failed with exit code 245351091318#18446744073709551615#0#0(1@0"0(0#0#0"4566089360#869" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL 245# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s351091313.283593 +e351091313.286836 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist351091313#351091313#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4566089472#232" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091313.396535 +e351091314.745028 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351091313#351091314#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4566089360#1681" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth 0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091313.395598 +e351091314.653079 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351091313#351091314#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4566089360#1685" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers +s351091313.281056 +e351091313.283506 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +xVersions/Current/Headers +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources +s351091313.276568 +e351091313.280820 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +xVersions/Current/Resources +lSLF07#2@84"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources351091313#351091313#0(0"0(0#0#0"4566089360#162" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +s351091313.277533 +e351091313.281810 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +xVersions/Current/SPMySQL +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL 0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A +s351091313.274448 +e351091313.280642 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +xA +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current351091313#351091313#0(0"0(0#0#0"4566089360#144" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current 0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +r0 + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree new file mode 100644 index 00000000..b4877a47 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree new file mode 100644 index 00000000..91a20ee0 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree new file mode 100644 index 00000000..2c7cd864 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree new file mode 100644 index 00000000..6f89e86f Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree new file mode 100644 index 00000000..1458d578 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header new file mode 100644 index 00000000..ca471eb9 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree new file mode 100644 index 00000000..594062a4 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree new file mode 100644 index 00000000..21992b05 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control new file mode 100644 index 00000000..b173c993 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings new file mode 100644 index 00000000..e4f988c0 Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree new file mode 100644 index 00000000..d2a453bd Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols new file mode 100644 index 00000000..24afea1c Binary files /dev/null and b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols differ -- cgit v1.2.3 From 0c21651ce30a7af4fa7e9eeb6ce295c93d7ee966 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Mon, 20 Feb 2012 21:57:14 +0000 Subject: - Fix incorrect conversion via a CFStringEncoding for eucjpms - Delete incorrectly committed build and pref files --- .../SPMySQLFramework.xcodeproj/rowan.mode1v3 | 1435 ------ .../SPMySQLFramework.xcodeproj/rowan.pbxuser | 5058 -------------------- .../Source/SPMySQLConnection Categories/Encoding.m | 2 +- .../build/Debug/SPMySQL.framework/Headers | 1 - .../build/Debug/SPMySQL.framework/Resources | 1 - .../build/Debug/SPMySQL.framework/SPMySQL | 1 - .../Versions/A/Headers/Databases & Tables.h | 49 - .../Versions/A/Headers/Delegate & Proxy.h | 36 - .../Versions/A/Headers/Encoding.h | 53 - .../Versions/A/Headers/Field Definitions.h | 38 - .../Versions/A/Headers/Max Packet Size.h | 40 - .../Versions/A/Headers/Querying & Preparation.h | 103 - .../SPMySQL.framework/Versions/A/Headers/SPMySQL.h | 62 - .../Versions/A/Headers/SPMySQLConnection.h | 177 - .../Versions/A/Headers/SPMySQLConnectionDelegate.h | 106 - .../Versions/A/Headers/SPMySQLConnectionProxy.h | 77 - .../Versions/A/Headers/SPMySQLConstants.h | 76 - .../A/Headers/SPMySQLFastStreamingResult.h | 47 - .../Versions/A/Headers/SPMySQLGeometryData.h | 53 - .../Versions/A/Headers/SPMySQLResult.h | 120 - .../Versions/A/Headers/SPMySQLStreamingResult.h | 54 - .../Versions/A/Headers/Server Info.h | 50 - .../A/Resources/English.lproj/InfoPlist.strings | Bin 92 -> 0 bytes .../Versions/A/Resources/Info.plist | 40 - .../Debug/SPMySQL.framework/Versions/A/SPMySQL | Bin 1249328 -> 0 bytes .../build/Debug/SPMySQL.framework/Versions/Current | 1 - .../build/Release/SPMySQL.framework/Headers | 1 - .../build/Release/SPMySQL.framework/Resources | 1 - .../build/Release/SPMySQL.framework/SPMySQL | 1 - .../Versions/A/Headers/Databases & Tables.h | 49 - .../Versions/A/Headers/Delegate & Proxy.h | 36 - .../Versions/A/Headers/Encoding.h | 53 - .../Versions/A/Headers/Field Definitions.h | 38 - .../Versions/A/Headers/Max Packet Size.h | 40 - .../Versions/A/Headers/Querying & Preparation.h | 103 - .../SPMySQL.framework/Versions/A/Headers/SPMySQL.h | 62 - .../Versions/A/Headers/SPMySQLConnection.h | 177 - .../Versions/A/Headers/SPMySQLConnectionDelegate.h | 106 - .../Versions/A/Headers/SPMySQLConnectionProxy.h | 77 - .../Versions/A/Headers/SPMySQLConstants.h | 76 - .../A/Headers/SPMySQLFastStreamingResult.h | 47 - .../Versions/A/Headers/SPMySQLGeometryData.h | 53 - .../Versions/A/Headers/SPMySQLResult.h | 120 - .../Versions/A/Headers/SPMySQLStreamingResult.h | 54 - .../Versions/A/Headers/Server Info.h | 50 - .../A/Resources/English.lproj/InfoPlist.strings | Bin 92 -> 0 bytes .../Versions/A/Resources/Info.plist | 40 - .../Release/SPMySQL.framework/Versions/A/SPMySQL | Bin 2249976 -> 0 bytes .../Release/SPMySQL.framework/Versions/Current | 1 - .../Objects-normal/x86_64/SPMySQL.LinkFileList | 16 - .../SPMySQL-all-target-headers.hmap | Bin 2453 -> 0 bytes .../SPMySQL-generated-files.hmap | Bin 121 -> 0 bytes .../SPMySQL-own-target-headers.hmap | Bin 3221 -> 0 bytes .../SPMySQL-project-headers.hmap | Bin 1716 -> 0 bytes .../SPMySQL.framework.build/SPMySQL.framework.dep | 142 - .../SPMySQL.framework.build/SPMySQL.framework~.dep | 101 - .../Debug/SPMySQL.framework.build/SPMySQL.hmap | Bin 3249 -> 0 bytes .../StaticAnalyzer/normal/x86_64/Conversion.plist | 12 - .../normal/x86_64/Databases & Tables.plist | 12 - .../normal/x86_64/Delegate & Proxy.plist | 12 - .../StaticAnalyzer/normal/x86_64/Encoding.plist | 12 - .../normal/x86_64/Field Definitions.plist | 12 - .../StaticAnalyzer/normal/x86_64/Locking.plist | 12 - .../normal/x86_64/Max Packet Size.plist | 12 - .../normal/x86_64/Ping & KeepAlive.plist | 12 - .../normal/x86_64/Querying & Preparation.plist | 12 - .../normal/x86_64/SPMySQLConnection.plist | 12 - .../normal/x86_64/SPMySQLFastStreamingResult.plist | 12 - .../normal/x86_64/SPMySQLGeometryData.plist | 12 - .../normal/x86_64/SPMySQLResult.plist | 12 - .../normal/x86_64/SPMySQLStreamingResult.plist | 12 - .../normal/x86_64/SPMySQLStringAdditions.plist | 12 - .../StaticAnalyzer/normal/x86_64/Server Info.plist | 12 - .../Debug/SPMySQL.framework.build/build-state.dat | 2676 ----------- .../Debug/SPMySQL.framework.build/build-state~.dat | 1941 -------- .../x86_64/SPMySQLFramework.LinkFileList | 4 - .../SPMySQLFramework.build/SPMySQL.framework.dep | 26 - .../SPMySQLFramework-all-target-headers.hmap | Bin 1615 -> 0 bytes .../SPMySQLFramework-generated-files.hmap | Bin 121 -> 0 bytes .../SPMySQLFramework-own-target-headers.hmap | Bin 1615 -> 0 bytes .../SPMySQLFramework-project-headers.hmap | Bin 1204 -> 0 bytes .../SPMySQLFramework.build/SPMySQLFramework.dep | 26 - .../SPMySQLFramework.build/SPMySQLFramework.hmap | Bin 2411 -> 0 bytes .../SPMySQLFramework.build/SPMySQLFramework~.dep | 26 - .../Debug/SPMySQLFramework.build/build-state.dat | 573 --- .../Debug/SPMySQLFramework.build/build-state~.dat | 573 --- .../Objects-normal/i386/SPMySQL | Bin 1033464 -> 0 bytes .../Objects-normal/i386/SPMySQL.LinkFileList | 16 - .../Objects-normal/x86_64/SPMySQL | Bin 1209176 -> 0 bytes .../Objects-normal/x86_64/SPMySQL.LinkFileList | 16 - .../SPMySQL-all-target-headers.hmap | Bin 2369 -> 0 bytes .../SPMySQL-generated-files.hmap | Bin 121 -> 0 bytes .../SPMySQL-own-target-headers.hmap | Bin 3137 -> 0 bytes .../SPMySQL-project-headers.hmap | Bin 1632 -> 0 bytes .../SPMySQL.framework.build/SPMySQL.framework.dep | 95 - .../SPMySQL.framework.build/SPMySQL.framework~.dep | 88 - .../Release/SPMySQL.framework.build/SPMySQL.hmap | Bin 3165 -> 0 bytes .../StaticAnalyzer/normal/i386/Conversion.plist | 12 - .../normal/i386/Databases & Tables.plist | 12 - .../normal/i386/Delegate & Proxy.plist | 12 - .../StaticAnalyzer/normal/i386/Encoding.plist | 12 - .../normal/i386/Field Definitions.plist | 12 - .../StaticAnalyzer/normal/i386/Locking.plist | 12 - .../normal/i386/Max Packet Size.plist | 12 - .../normal/i386/Ping & KeepAlive.plist | 12 - .../normal/i386/Querying & Preparation.plist | 12 - .../normal/i386/SPMySQLConnection.plist | 12 - .../normal/i386/SPMySQLFastStreamingResult.plist | 12 - .../normal/i386/SPMySQLGeometryData.plist | 12 - .../StaticAnalyzer/normal/i386/SPMySQLResult.plist | 12 - .../normal/i386/SPMySQLStreamingResult.plist | 12 - .../normal/i386/SPMySQLStringAdditions.plist | 12 - .../StaticAnalyzer/normal/i386/Server Info.plist | 12 - .../StaticAnalyzer/normal/x86_64/Conversion.plist | 12 - .../normal/x86_64/Databases & Tables.plist | 12 - .../normal/x86_64/Delegate & Proxy.plist | 12 - .../StaticAnalyzer/normal/x86_64/Encoding.plist | 12 - .../normal/x86_64/Field Definitions.plist | 12 - .../StaticAnalyzer/normal/x86_64/Locking.plist | 12 - .../normal/x86_64/Max Packet Size.plist | 12 - .../normal/x86_64/Ping & KeepAlive.plist | 12 - .../normal/x86_64/Querying & Preparation.plist | 12 - .../normal/x86_64/SPMySQLConnection.plist | 12 - .../normal/x86_64/SPMySQLFastStreamingResult.plist | 12 - .../normal/x86_64/SPMySQLGeometryData.plist | 12 - .../normal/x86_64/SPMySQLResult.plist | 12 - .../normal/x86_64/SPMySQLStreamingResult.plist | 12 - .../normal/x86_64/SPMySQLStringAdditions.plist | 12 - .../StaticAnalyzer/normal/x86_64/Server Info.plist | 12 - .../SPMySQL.framework.build/build-state.dat | 1690 ------- .../SPMySQL.framework.build/build-state~.dat | 1498 ------ .../SPMySQLFramework.pbxindex/categories.pbxbtree | Bin 3076 -> 0 bytes .../SPMySQLFramework.pbxindex/cdecls.pbxbtree | Bin 544304 -> 0 bytes .../SPMySQLFramework.pbxindex/decls.pbxbtree | Bin 541600 -> 0 bytes .../SPMySQLFramework.pbxindex/files.pbxbtree | Bin 7140 -> 0 bytes .../SPMySQLFramework.pbxindex/imports.pbxbtree | Bin 20476 -> 0 bytes .../SPMySQLFramework.pbxindex/pbxindex.header | Bin 24 -> 0 bytes .../SPMySQLFramework.pbxindex/protocols.pbxbtree | Bin 2412 -> 0 bytes .../SPMySQLFramework.pbxindex/refs.pbxbtree | Bin 415996 -> 0 bytes .../strings.pbxstrings/control | Bin 1048596 -> 0 bytes .../strings.pbxstrings/strings | Bin 1189076 -> 0 bytes .../SPMySQLFramework.pbxindex/subclasses.pbxbtree | Bin 3044 -> 0 bytes .../SPMySQLFramework.pbxindex/symbols0.pbxsymbols | Bin 2066312 -> 0 bytes 143 files changed, 1 insertion(+), 18947 deletions(-) delete mode 100644 Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.mode1v3 delete mode 100644 Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.pbxuser delete mode 120000 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers delete mode 120000 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources delete mode 120000 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings delete mode 100644 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist delete mode 100755 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL delete mode 120000 Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current delete mode 120000 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers delete mode 120000 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources delete mode 120000 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings delete mode 100644 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist delete mode 100755 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL delete mode 120000 Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat delete mode 100755 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList delete mode 100755 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree delete mode 100644 Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols (limited to 'Frameworks') diff --git a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.mode1v3 b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.mode1v3 deleted file mode 100644 index e865e35a..00000000 --- a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.mode1v3 +++ /dev/null @@ -1,1435 +0,0 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCProjectFormatConflictsModule - Name - Project Format Conflicts List - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - BundleLoadPath - - MaxInstances - n - Module - XCSnapshotModule - Name - Snapshots Tool - - - BundlePath - /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources - Description - DefaultDescriptionKey - DockingSystemVisible - - Extension - mode1v3 - FavBarConfig - - PBXProjectModuleGUID - 58428DCD14BA5397000F8438 - XCBarModuleItemNames - - XCBarModuleItems - - - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.mode1v3 - MajorVersion - 33 - MinorVersion - 0 - Name - Default - Notifications - - OpenEditors - - PerspectiveWidths - - -1 - -1 - - Perspectives - - - ChosenToolbarItems - - active-combo-popup - action - NSToolbarFlexibleSpaceItem - debugger-enable-breakpoints - build-and-go - com.apple.ide.PBXToolbarStopButton - get-info - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProjectWithEditor - Identifier - perspective.project - IsVertical - - Layout - - - BecomeActive - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 0867D691FE84028FC02AAC07 - 58C0077714E1DFFF00AC489A - 08FB77AEFE84172EC02AAC07 - 584294EB14CB8002000F8438 - 5884142414CCF4E60078027F - 58C7C1E114DB6E3000436315 - 580A331B14D75CCF000D6933 - 58C009D214E31D1300AC489A - 32C88DFF0371C24200C91783 - 089C1665FE841158C02AAC07 - 58428DF514BA5A03000F8438 - 1C37FBAC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 6 - 5 - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 787}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 805}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 257 32 1183 846 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 203pt - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20306471E060097A5F4 - PBXProjectModuleLabel - SPMySQLConnectionProxy.h - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CE0B20406471E060097A5F4 - PBXProjectModuleLabel - SPMySQLConnectionProxy.h - _historyCapacity - 0 - bookmark - 586AA0E314F1CEBE007F82BF - history - - 58428E0814BA5FEE000F8438 - 5842959F14CB9440000F8438 - 58C7C2E914DD96BA00436315 - 58F2538314DF16C6003C2AB8 - 58C0071C14E0B5F000AC489A - 58C0091014E2B28600AC489A - 58C009F414E341A300AC489A - 58C009F614E341A300AC489A - 58C009F914E341A300AC489A - 58C00A4914E443EF00AC489A - 58C00AE114E495D000AC489A - 58C00AE214E495D000AC489A - 58C00AE814E495D000AC489A - 58C00B1914E59D4500AC489A - 58C00BDA14E7465700AC489A - 58C00CE314E8738600AC489A - 58C00CE414E8738600AC489A - 58C00CE614E8738600AC489A - 58C00CE914E8738600AC489A - 58C00CEB14E8738600AC489A - 58C00F0914ED327D00AC489A - 586A990A14EE81C3007F82BF - 586A990B14EE81C3007F82BF - 586A990C14EE81C3007F82BF - 586A990D14EE81C3007F82BF - 586A990E14EE81C3007F82BF - 586A990F14EE81C3007F82BF - 586A991014EE81C3007F82BF - 586A991114EE81C3007F82BF - 586A991314EE81C3007F82BF - 586A991414EE81C3007F82BF - 586A992A14EEA225007F82BF - 586A99AD14EFFB2A007F82BF - 586A9A7D14F081A3007F82BF - 586A9A7E14F081A3007F82BF - 586A9A7F14F081A3007F82BF - 586A9A8014F081A3007F82BF - 586A9A8114F081A3007F82BF - 586A9A8214F081A3007F82BF - 586A9A8314F081A3007F82BF - 586A9D5914F1BE95007F82BF - - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {975, 548}} - RubberWindowFrame - 257 32 1183 846 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 548pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20506471E060097A5F4 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{0, 553}, {975, 252}} - RubberWindowFrame - 257 32 1183 846 0 0 1440 878 - - Module - XCDetailModule - Proportion - 252pt - - - Proportion - 975pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDetailModule - - TableOfContents - - 586AA0E414F1CEBE007F82BF - 1CE0B1FE06471DED0097A5F4 - 586AA0E514F1CEBE007F82BF - 1CE0B20306471E060097A5F4 - 1CE0B20506471E060097A5F4 - - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarConfiguration - xcode.toolbar.config.defaultV3 - - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.morph - IsVertical - 0 - Layout - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 11E0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 29B97314FDCFA39411CA2CEA - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 337}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 1 - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 355}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 373 269 690 397 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 100% - - - Name - Morph - PreferredWidth - 300 - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - - TableOfContents - - 11E0B1FE06471DED0097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default.shortV3 - - - PerspectivesBarVisible - - ShelfIsVisible - - SourceDescription - file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec' - StatusbarIsVisible - - TimeStamp - 0.0 - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarDisplayMode - 2 - ToolbarIsVisible - - ToolbarSizeMode - 2 - Type - Perspectives - UpdateMessage - The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? - WindowJustification - 5 - WindowOrderList - - 58428DCE14BA5397000F8438 - /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj - - WindowString - 257 32 1183 846 0 0 1440 878 - WindowToolsV3 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.build - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {704, 494}} - RubberWindowFrame - 616 102 704 776 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 494pt - - - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build Results - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1011 - - GeometryConfiguration - - Frame - {{0, 499}, {704, 236}} - RubberWindowFrame - 616 102 704 776 0 0 1440 878 - - Module - PBXBuildResultsModule - Proportion - 236pt - - - Proportion - 735pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - - TableOfContents - - 58428DCE14BA5397000F8438 - 586AA0E614F1CEBE007F82BF - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.buildV3 - WindowContentMinSize - 486 300 - WindowString - 616 102 704 776 0 0 1440 878 - WindowToolGUID - 58428DCE14BA5397000F8438 - WindowToolIsVisible - - - - Identifier - windowTool.debugger - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {317, 164}} - {{317, 0}, {377, 164}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 164}} - {{0, 164}, {694, 216}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleDrawerSize - {100, 120} - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 380}} - RubberWindowFrame - 321 238 694 422 0 0 1440 878 - - Module - PBXDebugSessionModule - Proportion - 100% - - - Proportion - 100% - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CD10A99069EF8BA00B06720 - 1C0AD2AB069F1E9B00FABCE6 - 1C162984064C10D400B95A72 - 1C0AD2AC069F1E9B00FABCE6 - - ToolbarConfiguration - xcode.toolbar.config.debugV3 - WindowString - 321 238 694 422 0 0 1440 878 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - 0 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.find - IsVertical - - Layout - - - Dock - - - Dock - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - Ping & KeepAlive.m - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {781, 265}} - RubberWindowFrame - 632 182 781 580 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 265pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{0, 270}, {781, 269}} - RubberWindowFrame - 632 182 781 580 0 0 1440 878 - - Module - PBXProjectFindModule - Proportion - 269pt - - - Proportion - 539pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - - TableOfContents - - 1C530D57069F1CE1000CFCEE - 586A98E714EE7A42007F82BF - 586A98E814EE7A42007F82BF - 1CDD528C0622207200134675 - 1CD0528E0623707200166675 - - WindowString - 632 182 781 580 0 0 1440 878 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - - - - Identifier - MENUSEPARATOR - - - Identifier - windowTool.debuggerConsole - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {650, 250}} - RubberWindowFrame - 516 632 650 250 0 0 1680 1027 - - Module - PBXDebugCLIModule - Proportion - 209pt - - - Proportion - 209pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAAD065D492600B07095 - 1C78EAAE065D492600B07095 - 1C78EAAC065D492600B07095 - - ToolbarConfiguration - xcode.toolbar.config.consoleV3 - WindowString - 650 41 650 250 0 0 1280 1002 - WindowToolGUID - 1C78EAAD065D492600B07095 - WindowToolIsVisible - 0 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.snapshots - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 586A9C6014F172AE007F82BF - PBXProjectModuleLabel - Snapshots - - GeometryConfiguration - - Frame - {{0, 0}, {300, 509}} - RubberWindowFrame - 278 305 300 550 0 0 1440 878 - - Module - XCSnapshotModule - Proportion - 509pt - - - Proportion - 509pt - - - Name - Snapshots - ServiceClasses - - XCSnapshotModule - - StatusbarIsVisible - - TableOfContents - - 586A9C6114F172AE007F82BF - 586A9C6214F172AE007F82BF - 586A9C6014F172AE007F82BF - - ToolbarConfiguration - xcode.toolbar.config.snapshots - WindowString - 278 305 300 550 0 0 1440 878 - WindowToolGUID - 586A9C6114F172AE007F82BF - WindowToolIsVisible - - - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.0950012207031 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 262pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - ToolbarConfiguration - xcode.toolbar.config.scm - WindowString - 743 379 452 308 0 0 1280 1002 - - - Identifier - windowTool.breakpoints - IsVertical - 0 - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - no - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 168 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 1C77FABC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {168, 350}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 0 - - GeometryConfiguration - - Frame - {{0, 0}, {185, 368}} - GroupTreeTableConfiguration - - MainColumn - 168 - - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 185pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA1AED706398EBD00589147 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{190, 0}, {554, 368}} - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - XCDetailModule - Proportion - 554pt - - - Proportion - 368pt - - - MajorVersion - 3 - MinorVersion - 0 - Name - Breakpoints - ServiceClasses - - PBXSmartGroupTreeModule - XCDetailModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CDDB66807F98D9800BB5817 - 1CDDB66907F98D9800BB5817 - 1CE0B1FE06471DED0097A5F4 - 1CA1AED706398EBD00589147 - - ToolbarConfiguration - xcode.toolbar.config.breakpointsV3 - WindowString - 315 424 744 409 0 0 1440 878 - WindowToolGUID - 1CDDB66807F98D9800BB5817 - WindowToolIsVisible - 1 - - - Identifier - windowTool.debugAnimator - Layout - - - Dock - - - Module - PBXNavigatorGroup - Proportion - 100% - - - Proportion - 100% - - - Name - Debug Visualizer - ServiceClasses - - PBXNavigatorGroup - - StatusbarIsVisible - 1 - ToolbarConfiguration - xcode.toolbar.config.debugAnimatorV3 - WindowString - 100 100 700 500 0 0 1280 1002 - - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 100% - - - Proportion - 100% - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - 0 - WindowString - 538 42 401 187 0 0 1280 1002 - - - Identifier - windowTool.projectFormatConflicts - Layout - - - Dock - - - Module - XCProjectFormatConflictsModule - Proportion - 100% - - - Proportion - 100% - - - Name - Project Format Conflicts - ServiceClasses - - XCProjectFormatConflictsModule - - StatusbarIsVisible - 0 - WindowContentMinSize - 450 300 - WindowString - 50 850 472 307 0 0 1440 877 - - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {374, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {630, 331}} - MembersFrame - {{0, 105}, {374, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 97 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - 1 - RubberWindowFrame - 385 179 630 352 0 0 1440 878 - - Module - PBXClassBrowserModule - Proportion - 332pt - - - Proportion - 332pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - 0 - TableOfContents - - 1C0AD2AF069F1E9B00FABCE6 - 1C0AD2B0069F1E9B00FABCE6 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 385 179 630 352 0 0 1440 878 - WindowToolGUID - 1C0AD2AF069F1E9B00FABCE6 - WindowToolIsVisible - 0 - - - Identifier - windowTool.refactoring - IncludeInToolsMenu - 0 - Layout - - - Dock - - - BecomeActive - 1 - GeometryConfiguration - - Frame - {0, 0}, {500, 335} - RubberWindowFrame - {0, 0}, {500, 335} - - Module - XCRefactoringModule - Proportion - 100% - - - Proportion - 100% - - - Name - Refactoring - ServiceClasses - - XCRefactoringModule - - WindowString - 200 200 500 356 0 0 1920 1200 - - - - diff --git a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.pbxuser b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.pbxuser deleted file mode 100644 index 694e0810..00000000 --- a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/rowan.pbxuser +++ /dev/null @@ -1,5058 +0,0 @@ -// !$*UTF8*$! -{ - 0867D690FE84028FC02AAC07 /* Project object */ = { - activeBuildConfigurationName = Debug; - activeTarget = 8DC2EF4F0486A6940098B216 /* SPMySQL.framework */; - addToTargets = ( - ); - breakpoints = ( - ); - codeSenseManager = 58428DC414BA516B000F8438 /* Code sense */; - perUserDictionary = { - PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { - PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; - PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; - PBXFileTableDataSourceColumnWidthsKey = ( - 20, - 751, - 20, - 48, - 43, - 43, - 20, - ); - PBXFileTableDataSourceColumnsKey = ( - PBXFileDataSource_FiletypeID, - PBXFileDataSource_Filename_ColumnID, - PBXFileDataSource_Built_ColumnID, - PBXFileDataSource_ObjectSize_ColumnID, - PBXFileDataSource_Errors_ColumnID, - PBXFileDataSource_Warnings_ColumnID, - PBXFileDataSource_Target_ColumnID, - ); - }; - PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = { - PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; - PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; - PBXFileTableDataSourceColumnWidthsKey = ( - 20, - 711, - 60, - 20, - 48, - 43, - 43, - ); - PBXFileTableDataSourceColumnsKey = ( - PBXFileDataSource_FiletypeID, - PBXFileDataSource_Filename_ColumnID, - PBXTargetDataSource_PrimaryAttribute, - PBXFileDataSource_Built_ColumnID, - PBXFileDataSource_ObjectSize_ColumnID, - PBXFileDataSource_Errors_ColumnID, - PBXFileDataSource_Warnings_ColumnID, - ); - }; - PBXPerProjectTemplateStateSaveDate = 351391398; - PBXWorkspaceStateSaveDate = 351391398; - }; - perUserProjectItems = { - 58428E0814BA5FEE000F8438 = 58428E0814BA5FEE000F8438 /* PBXTextBookmark */; - 5842959F14CB9440000F8438 = 5842959F14CB9440000F8438 /* PBXTextBookmark */; - 586A985014ED8BA5007F82BF = 586A985014ED8BA5007F82BF /* PBXTextBookmark */; - 586A985314ED8BA5007F82BF = 586A985314ED8BA5007F82BF /* PBXTextBookmark */; - 586A985414ED8BA5007F82BF = 586A985414ED8BA5007F82BF /* PBXTextBookmark */; - 586A985514ED8BA5007F82BF = 586A985514ED8BA5007F82BF /* PBXTextBookmark */; - 586A985614ED8BA5007F82BF = 586A985614ED8BA5007F82BF /* PBXTextBookmark */; - 586A985714ED8BA5007F82BF = 586A985714ED8BA5007F82BF /* PBXTextBookmark */; - 586A985814ED8BA5007F82BF = 586A985814ED8BA5007F82BF /* PBXTextBookmark */; - 586A985914ED8BA5007F82BF = 586A985914ED8BA5007F82BF /* PBXTextBookmark */; - 586A985A14ED8BA5007F82BF = 586A985A14ED8BA5007F82BF /* PBXTextBookmark */; - 586A985B14ED8BA5007F82BF = 586A985B14ED8BA5007F82BF /* PBXTextBookmark */; - 586A987B14ED8D6C007F82BF = 586A987B14ED8D6C007F82BF /* PBXTextBookmark */; - 586A987C14ED8D6C007F82BF = 586A987C14ED8D6C007F82BF /* PBXTextBookmark */; - 586A987D14ED8D6C007F82BF = 586A987D14ED8D6C007F82BF /* PBXTextBookmark */; - 586A987E14ED8D6C007F82BF = 586A987E14ED8D6C007F82BF /* PBXTextBookmark */; - 586A987F14ED8D6C007F82BF = 586A987F14ED8D6C007F82BF /* PBXTextBookmark */; - 586A988014ED8D6C007F82BF = 586A988014ED8D6C007F82BF /* PBXTextBookmark */; - 586A988114ED8D6C007F82BF = 586A988114ED8D6C007F82BF /* PBXTextBookmark */; - 586A988214ED8D6C007F82BF = 586A988214ED8D6C007F82BF /* PBXTextBookmark */; - 586A988314ED8D6C007F82BF = 586A988314ED8D6C007F82BF /* PBXTextBookmark */; - 586A989814ED8F37007F82BF = 586A989814ED8F37007F82BF /* PBXTextBookmark */; - 586A989914ED8F37007F82BF = 586A989914ED8F37007F82BF /* PBXTextBookmark */; - 586A989A14ED8F37007F82BF = 586A989A14ED8F37007F82BF /* PBXTextBookmark */; - 586A989B14ED8F37007F82BF = 586A989B14ED8F37007F82BF /* PBXTextBookmark */; - 586A989C14ED8F37007F82BF = 586A989C14ED8F37007F82BF /* PBXTextBookmark */; - 586A989D14ED8F37007F82BF = 586A989D14ED8F37007F82BF /* PBXTextBookmark */; - 586A989E14ED8F37007F82BF = 586A989E14ED8F37007F82BF /* PBXTextBookmark */; - 586A989F14ED8F37007F82BF = 586A989F14ED8F37007F82BF /* PBXTextBookmark */; - 586A98CA14EDE440007F82BF = 586A98CA14EDE440007F82BF /* PBXTextBookmark */; - 586A98CB14EDE440007F82BF = 586A98CB14EDE440007F82BF /* PBXTextBookmark */; - 586A98CC14EDE440007F82BF = 586A98CC14EDE440007F82BF /* PBXTextBookmark */; - 586A98CD14EDE440007F82BF = 586A98CD14EDE440007F82BF /* PBXTextBookmark */; - 586A98CE14EDE440007F82BF = 586A98CE14EDE440007F82BF /* PBXTextBookmark */; - 586A98CF14EDE440007F82BF = 586A98CF14EDE440007F82BF /* PBXTextBookmark */; - 586A98D014EDE440007F82BF = 586A98D014EDE440007F82BF /* PBXTextBookmark */; - 586A98E014EE75EB007F82BF = 586A98E014EE75EB007F82BF /* PBXBookmark */; - 586A990914EE81C3007F82BF = 586A990914EE81C3007F82BF /* PBXTextBookmark */; - 586A990A14EE81C3007F82BF = 586A990A14EE81C3007F82BF /* PBXTextBookmark */; - 586A990B14EE81C3007F82BF = 586A990B14EE81C3007F82BF /* PBXTextBookmark */; - 586A990C14EE81C3007F82BF = 586A990C14EE81C3007F82BF /* PBXTextBookmark */; - 586A990D14EE81C3007F82BF = 586A990D14EE81C3007F82BF /* PBXTextBookmark */; - 586A990E14EE81C3007F82BF = 586A990E14EE81C3007F82BF /* PBXTextBookmark */; - 586A990F14EE81C3007F82BF = 586A990F14EE81C3007F82BF /* PBXTextBookmark */; - 586A991014EE81C3007F82BF = 586A991014EE81C3007F82BF /* PBXTextBookmark */; - 586A991114EE81C3007F82BF = 586A991114EE81C3007F82BF /* PBXTextBookmark */; - 586A991214EE81C3007F82BF = 586A991214EE81C3007F82BF /* PBXTextBookmark */; - 586A991314EE81C3007F82BF = 586A991314EE81C3007F82BF /* PBXTextBookmark */; - 586A991414EE81C3007F82BF = 586A991414EE81C3007F82BF /* PBXTextBookmark */; - 586A991514EE81C3007F82BF = 586A991514EE81C3007F82BF /* PBXTextBookmark */; - 586A991614EE81C3007F82BF = 586A991614EE81C3007F82BF /* PBXTextBookmark */; - 586A991714EE81C3007F82BF = 586A991714EE81C3007F82BF /* PBXTextBookmark */; - 586A991814EE81C3007F82BF = 586A991814EE81C3007F82BF /* PBXTextBookmark */; - 586A991914EE81C3007F82BF = 586A991914EE81C3007F82BF /* PBXTextBookmark */; - 586A991A14EE81C3007F82BF = 586A991A14EE81C3007F82BF /* PBXTextBookmark */; - 586A991B14EE81C3007F82BF = 586A991B14EE81C3007F82BF /* PBXTextBookmark */; - 586A991C14EE81C3007F82BF = 586A991C14EE81C3007F82BF /* PBXTextBookmark */; - 586A991F14EE81C3007F82BF = 586A991F14EE81C3007F82BF /* PBXTextBookmark */; - 586A992814EEA221007F82BF = 586A992814EEA221007F82BF /* PBXTextBookmark */; - 586A992914EEA221007F82BF = 586A992914EEA221007F82BF /* PBXTextBookmark */; - 586A992A14EEA225007F82BF = 586A992A14EEA225007F82BF /* PBXTextBookmark */; - 586A992B14EEA225007F82BF = 586A992B14EEA225007F82BF /* PBXTextBookmark */; - 586A992C14EEA225007F82BF = 586A992C14EEA225007F82BF /* PBXTextBookmark */; - 586A992D14EEA225007F82BF = 586A992D14EEA225007F82BF /* PBXTextBookmark */; - 586A992E14EEA225007F82BF = 586A992E14EEA225007F82BF /* PBXTextBookmark */; - 586A992F14EEA225007F82BF = 586A992F14EEA225007F82BF /* PBXTextBookmark */; - 586A993014EEA225007F82BF = 586A993014EEA225007F82BF /* PBXTextBookmark */; - 586A993114EEA225007F82BF = 586A993114EEA225007F82BF /* PBXTextBookmark */; - 586A993214EEA225007F82BF = 586A993214EEA225007F82BF /* PBXTextBookmark */; - 586A993314EEA225007F82BF = 586A993314EEA225007F82BF /* PBXTextBookmark */; - 586A993614EEA225007F82BF = 586A993614EEA225007F82BF /* PBXTextBookmark */; - 586A993714EEA225007F82BF = 586A993714EEA225007F82BF /* PBXTextBookmark */; - 586A994414EECED8007F82BF = 586A994414EECED8007F82BF /* PBXTextBookmark */; - 586A994714EECED8007F82BF = 586A994714EECED8007F82BF /* PBXBookmark */; - 586A994814EECED8007F82BF = 586A994814EECED8007F82BF /* PBXTextBookmark */; - 586A994B14EECED8007F82BF = 586A994B14EECED8007F82BF /* PBXTextBookmark */; - 586A994C14EECED8007F82BF = 586A994C14EECED8007F82BF /* PBXTextBookmark */; - 586A994D14EECED8007F82BF = 586A994D14EECED8007F82BF /* PBXTextBookmark */; - 586A994E14EECED8007F82BF = 586A994E14EECED8007F82BF /* PBXTextBookmark */; - 586A994F14EECED8007F82BF = 586A994F14EECED8007F82BF /* PBXTextBookmark */; - 586A995014EECED8007F82BF = 586A995014EECED8007F82BF /* PBXTextBookmark */; - 586A995114EECED8007F82BF = 586A995114EECED8007F82BF /* PBXTextBookmark */; - 586A995214EECED8007F82BF = 586A995214EECED8007F82BF /* PBXTextBookmark */; - 586A995314EECED8007F82BF = 586A995314EECED8007F82BF /* PBXTextBookmark */; - 586A995414EECED8007F82BF = 586A995414EECED8007F82BF /* PBXTextBookmark */; - 586A995514EECED8007F82BF = 586A995514EECED8007F82BF /* PBXTextBookmark */; - 586A996C14EED74A007F82BF = 586A996C14EED74A007F82BF /* PBXTextBookmark */; - 586A996D14EED74A007F82BF = 586A996D14EED74A007F82BF /* PBXTextBookmark */; - 586A996E14EED74A007F82BF = 586A996E14EED74A007F82BF /* PBXTextBookmark */; - 586A996F14EED74A007F82BF = 586A996F14EED74A007F82BF /* PBXTextBookmark */; - 586A997014EED74A007F82BF = 586A997014EED74A007F82BF /* PBXTextBookmark */; - 586A997114EED74A007F82BF = 586A997114EED74A007F82BF /* PBXTextBookmark */; - 586A997214EED74A007F82BF = 586A997214EED74A007F82BF /* PBXTextBookmark */; - 586A997314EED74A007F82BF = 586A997314EED74A007F82BF /* PBXTextBookmark */; - 586A997414EED74A007F82BF = 586A997414EED74A007F82BF /* PBXTextBookmark */; - 586A997514EED74A007F82BF = 586A997514EED74A007F82BF /* PBXTextBookmark */; - 586A999014EEE281007F82BF = 586A999014EEE281007F82BF /* PBXBookmark */; - 586A99AD14EFFB2A007F82BF = 586A99AD14EFFB2A007F82BF /* PBXTextBookmark */; - 586A99AE14EFFB2A007F82BF = 586A99AE14EFFB2A007F82BF /* PBXTextBookmark */; - 586A99AF14EFFB2A007F82BF = 586A99AF14EFFB2A007F82BF /* PBXTextBookmark */; - 586A99B014EFFB2A007F82BF = 586A99B014EFFB2A007F82BF /* PBXTextBookmark */; - 586A99B314EFFB2A007F82BF = 586A99B314EFFB2A007F82BF /* PBXTextBookmark */; - 586A99B414EFFB2A007F82BF = 586A99B414EFFB2A007F82BF /* PBXTextBookmark */; - 586A99B514EFFB2A007F82BF = 586A99B514EFFB2A007F82BF /* PBXTextBookmark */; - 586A99B814EFFB2A007F82BF = 586A99B814EFFB2A007F82BF /* PBXTextBookmark */; - 586A99B914EFFB2A007F82BF = 586A99B914EFFB2A007F82BF /* PBXTextBookmark */; - 586A99BC14EFFB2A007F82BF = 586A99BC14EFFB2A007F82BF /* PBXTextBookmark */; - 586A99BD14EFFB2A007F82BF = 586A99BD14EFFB2A007F82BF /* PBXTextBookmark */; - 586A99C014EFFB2A007F82BF = 586A99C014EFFB2A007F82BF /* PBXTextBookmark */; - 586A99C114EFFB2A007F82BF = 586A99C114EFFB2A007F82BF /* PBXTextBookmark */; - 586A99C214EFFB2A007F82BF = 586A99C214EFFB2A007F82BF /* PBXTextBookmark */; - 586A99C314EFFB2A007F82BF = 586A99C314EFFB2A007F82BF /* PBXTextBookmark */; - 586A99C414EFFB2A007F82BF = 586A99C414EFFB2A007F82BF /* PBXTextBookmark */; - 586A99C514EFFB2A007F82BF = 586A99C514EFFB2A007F82BF /* PBXTextBookmark */; - 586A99C614EFFB2A007F82BF = 586A99C614EFFB2A007F82BF /* PBXTextBookmark */; - 586A99CD14F00C55007F82BF = 586A99CD14F00C55007F82BF /* PBXTextBookmark */; - 586A99CE14F00C55007F82BF = 586A99CE14F00C55007F82BF /* PBXTextBookmark */; - 586A99CF14F00C55007F82BF = 586A99CF14F00C55007F82BF /* PBXTextBookmark */; - 586A99D014F00C55007F82BF = 586A99D014F00C55007F82BF /* PBXTextBookmark */; - 586A99D114F00C55007F82BF = 586A99D114F00C55007F82BF /* PBXTextBookmark */; - 586A99D214F00C55007F82BF = 586A99D214F00C55007F82BF /* PBXTextBookmark */; - 586A99D314F00C55007F82BF = 586A99D314F00C55007F82BF /* PBXTextBookmark */; - 586A99D614F01759007F82BF = 586A99D614F01759007F82BF /* PBXTextBookmark */; - 586A99D714F01759007F82BF = 586A99D714F01759007F82BF /* PBXTextBookmark */; - 586A99D814F01759007F82BF = 586A99D814F01759007F82BF /* PBXTextBookmark */; - 586A99D914F01759007F82BF = 586A99D914F01759007F82BF /* PBXTextBookmark */; - 586A99DA14F01759007F82BF = 586A99DA14F01759007F82BF /* PBXTextBookmark */; - 586A99DB14F01759007F82BF = 586A99DB14F01759007F82BF /* PBXTextBookmark */; - 586A99DC14F01759007F82BF = 586A99DC14F01759007F82BF /* PBXTextBookmark */; - 586A99DD14F01759007F82BF = 586A99DD14F01759007F82BF /* PBXTextBookmark */; - 586A99DE14F01759007F82BF = 586A99DE14F01759007F82BF /* PBXTextBookmark */; - 586A99DF14F01759007F82BF = 586A99DF14F01759007F82BF /* PBXTextBookmark */; - 586A99E014F01759007F82BF = 586A99E014F01759007F82BF /* PBXTextBookmark */; - 586A99E114F01759007F82BF = 586A99E114F01759007F82BF /* PBXTextBookmark */; - 586A9A1614F05216007F82BF = 586A9A1614F05216007F82BF /* PBXTextBookmark */; - 586A9A1714F05216007F82BF = 586A9A1714F05216007F82BF /* PBXTextBookmark */; - 586A9A1814F05216007F82BF = 586A9A1814F05216007F82BF /* PBXTextBookmark */; - 586A9A1914F05216007F82BF = 586A9A1914F05216007F82BF /* PBXTextBookmark */; - 586A9A1A14F0527D007F82BF = 586A9A1A14F0527D007F82BF /* PBXBookmark */; - 586A9A2C14F05659007F82BF = 586A9A2C14F05659007F82BF /* PBXTextBookmark */; - 586A9A2D14F05659007F82BF = 586A9A2D14F05659007F82BF /* PBXTextBookmark */; - 586A9A2E14F05659007F82BF = 586A9A2E14F05659007F82BF /* PBXTextBookmark */; - 586A9A2F14F05659007F82BF = 586A9A2F14F05659007F82BF /* PBXTextBookmark */; - 586A9A7D14F081A3007F82BF = 586A9A7D14F081A3007F82BF /* PBXTextBookmark */; - 586A9A7E14F081A3007F82BF = 586A9A7E14F081A3007F82BF /* PBXTextBookmark */; - 586A9A7F14F081A3007F82BF = 586A9A7F14F081A3007F82BF /* PBXTextBookmark */; - 586A9A8014F081A3007F82BF = 586A9A8014F081A3007F82BF /* PBXTextBookmark */; - 586A9A8114F081A3007F82BF = 586A9A8114F081A3007F82BF /* PBXTextBookmark */; - 586A9A8214F081A3007F82BF = 586A9A8214F081A3007F82BF /* PBXTextBookmark */; - 586A9A8314F081A3007F82BF = 586A9A8314F081A3007F82BF /* PBXTextBookmark */; - 586A9A8414F081A3007F82BF = 586A9A8414F081A3007F82BF /* PBXTextBookmark */; - 586A9A8514F081A3007F82BF = 586A9A8514F081A3007F82BF /* PBXTextBookmark */; - 586A9A8614F081A3007F82BF = 586A9A8614F081A3007F82BF /* PBXTextBookmark */; - 586A9A8714F081A3007F82BF = 586A9A8714F081A3007F82BF /* PBXTextBookmark */; - 586A9A8A14F081A3007F82BF = 586A9A8A14F081A3007F82BF /* PBXTextBookmark */; - 586A9A8B14F081A3007F82BF = 586A9A8B14F081A3007F82BF /* PBXTextBookmark */; - 586A9A8E14F081A3007F82BF = 586A9A8E14F081A3007F82BF /* PBXTextBookmark */; - 586A9A8F14F081A3007F82BF = 586A9A8F14F081A3007F82BF /* PBXTextBookmark */; - 586A9A9214F081A3007F82BF = 586A9A9214F081A3007F82BF /* PBXTextBookmark */; - 586A9A9314F081A3007F82BF = 586A9A9314F081A3007F82BF /* PBXTextBookmark */; - 586A9A9614F081A3007F82BF = 586A9A9614F081A3007F82BF /* PBXTextBookmark */; - 586A9A9714F081A3007F82BF = 586A9A9714F081A3007F82BF /* PBXTextBookmark */; - 586A9A9814F081A3007F82BF = 586A9A9814F081A3007F82BF /* PBXTextBookmark */; - 586A9A9914F081A3007F82BF = 586A9A9914F081A3007F82BF /* PBXTextBookmark */; - 586A9A9A14F081A3007F82BF = 586A9A9A14F081A3007F82BF /* PBXTextBookmark */; - 586A9A9B14F081A3007F82BF = 586A9A9B14F081A3007F82BF /* PBXTextBookmark */; - 586A9A9C14F081A3007F82BF = 586A9A9C14F081A3007F82BF /* PBXTextBookmark */; - 586A9A9D14F081A3007F82BF = 586A9A9D14F081A3007F82BF /* PBXTextBookmark */; - 586A9AAC14F08A0C007F82BF = 586A9AAC14F08A0C007F82BF /* PBXTextBookmark */; - 586A9AAD14F08A0C007F82BF = 586A9AAD14F08A0C007F82BF /* PBXTextBookmark */; - 586A9AAE14F08A0C007F82BF = 586A9AAE14F08A0C007F82BF /* PBXTextBookmark */; - 586A9AAF14F08A0C007F82BF = 586A9AAF14F08A0C007F82BF /* PBXTextBookmark */; - 586A9AB014F08A0C007F82BF = 586A9AB014F08A0C007F82BF /* PBXTextBookmark */; - 586A9AB114F08A0C007F82BF = 586A9AB114F08A0C007F82BF /* PBXTextBookmark */; - 586A9AB214F08A0C007F82BF = 586A9AB214F08A0C007F82BF /* PBXTextBookmark */; - 586A9AB314F08A0C007F82BF = 586A9AB314F08A0C007F82BF /* PBXTextBookmark */; - 586A9AB414F08A0C007F82BF = 586A9AB414F08A0C007F82BF /* PBXTextBookmark */; - 586A9AB514F08A0C007F82BF = 586A9AB514F08A0C007F82BF /* PBXTextBookmark */; - 586A9AB614F08A0C007F82BF = 586A9AB614F08A0C007F82BF /* PBXTextBookmark */; - 586A9AB714F08A0C007F82BF = 586A9AB714F08A0C007F82BF /* PBXTextBookmark */; - 586A9B4714F08BEB007F82BF = 586A9B4714F08BEB007F82BF /* PBXTextBookmark */; - 586A9B4814F08BEB007F82BF = 586A9B4814F08BEB007F82BF /* PBXTextBookmark */; - 586A9B4914F08BEB007F82BF = 586A9B4914F08BEB007F82BF /* PBXTextBookmark */; - 586A9B4A14F08BEB007F82BF = 586A9B4A14F08BEB007F82BF /* PBXTextBookmark */; - 586A9B4B14F08BEB007F82BF = 586A9B4B14F08BEB007F82BF /* PBXTextBookmark */; - 586A9B4C14F08BEB007F82BF = 586A9B4C14F08BEB007F82BF /* PBXTextBookmark */; - 586A9B4D14F08BEB007F82BF = 586A9B4D14F08BEB007F82BF /* PBXTextBookmark */; - 586A9B4E14F08BEB007F82BF = 586A9B4E14F08BEB007F82BF /* PBXTextBookmark */; - 586A9B4F14F08BEB007F82BF = 586A9B4F14F08BEB007F82BF /* PBXTextBookmark */; - 586A9B5014F08BEB007F82BF = 586A9B5014F08BEB007F82BF /* PBXTextBookmark */; - 586A9B5114F08BEB007F82BF = 586A9B5114F08BEB007F82BF /* PBXTextBookmark */; - 586A9B5214F08BEB007F82BF = 586A9B5214F08BEB007F82BF /* PBXTextBookmark */; - 586A9B8114F08D11007F82BF = 586A9B8114F08D11007F82BF /* PBXTextBookmark */; - 586A9B8214F08D11007F82BF = 586A9B8214F08D11007F82BF /* PBXTextBookmark */; - 586A9B8314F08D11007F82BF = 586A9B8314F08D11007F82BF /* PBXTextBookmark */; - 586A9B8414F08D11007F82BF = 586A9B8414F08D11007F82BF /* PBXTextBookmark */; - 586A9B8514F08D11007F82BF = 586A9B8514F08D11007F82BF /* PBXTextBookmark */; - 586A9B8614F08D11007F82BF = 586A9B8614F08D11007F82BF /* PBXTextBookmark */; - 586A9B8714F08D11007F82BF = 586A9B8714F08D11007F82BF /* PBXTextBookmark */; - 586A9B8814F08D11007F82BF = 586A9B8814F08D11007F82BF /* PBXTextBookmark */; - 586A9B8914F08D11007F82BF = 586A9B8914F08D11007F82BF /* PBXTextBookmark */; - 586A9B8A14F08D11007F82BF = 586A9B8A14F08D11007F82BF /* PBXTextBookmark */; - 586A9B8B14F08D11007F82BF = 586A9B8B14F08D11007F82BF /* PBXTextBookmark */; - 586A9B8C14F08D11007F82BF = 586A9B8C14F08D11007F82BF /* PBXTextBookmark */; - 586A9BE814F090AB007F82BF = 586A9BE814F090AB007F82BF /* PBXTextBookmark */; - 586A9BE914F090AB007F82BF = 586A9BE914F090AB007F82BF /* PBXTextBookmark */; - 586A9BEA14F090AB007F82BF = 586A9BEA14F090AB007F82BF /* PBXTextBookmark */; - 586A9BEB14F090AB007F82BF = 586A9BEB14F090AB007F82BF /* PBXTextBookmark */; - 586A9BEC14F090AB007F82BF = 586A9BEC14F090AB007F82BF /* PBXTextBookmark */; - 586A9BED14F090AB007F82BF = 586A9BED14F090AB007F82BF /* PBXTextBookmark */; - 586A9BEE14F090AB007F82BF = 586A9BEE14F090AB007F82BF /* PBXTextBookmark */; - 586A9BEF14F090AB007F82BF = 586A9BEF14F090AB007F82BF /* PBXTextBookmark */; - 586A9BF014F090AB007F82BF = 586A9BF014F090AB007F82BF /* PBXTextBookmark */; - 586A9BF114F090AB007F82BF = 586A9BF114F090AB007F82BF /* PBXTextBookmark */; - 586A9BF214F090AB007F82BF = 586A9BF214F090AB007F82BF /* PBXTextBookmark */; - 586A9BF314F090AB007F82BF = 586A9BF314F090AB007F82BF /* PBXTextBookmark */; - 586A9BF714F090E4007F82BF = 586A9BF714F090E4007F82BF /* PBXTextBookmark */; - 586A9BF814F090E4007F82BF = 586A9BF814F090E4007F82BF /* PBXTextBookmark */; - 586A9BF914F090E4007F82BF = 586A9BF914F090E4007F82BF /* PBXTextBookmark */; - 586A9BFA14F090E4007F82BF = 586A9BFA14F090E4007F82BF /* PBXTextBookmark */; - 586A9BFB14F090E4007F82BF = 586A9BFB14F090E4007F82BF /* PBXTextBookmark */; - 586A9BFC14F090E4007F82BF = 586A9BFC14F090E4007F82BF /* PBXTextBookmark */; - 586A9BFD14F090E4007F82BF = 586A9BFD14F090E4007F82BF /* PBXTextBookmark */; - 586A9BFE14F090E4007F82BF = 586A9BFE14F090E4007F82BF /* PBXTextBookmark */; - 586A9BFF14F090E4007F82BF = 586A9BFF14F090E4007F82BF /* PBXTextBookmark */; - 586A9C0014F090E4007F82BF = 586A9C0014F090E4007F82BF /* PBXTextBookmark */; - 586A9C0114F090E4007F82BF = 586A9C0114F090E4007F82BF /* PBXTextBookmark */; - 586A9C0214F090E4007F82BF = 586A9C0214F090E4007F82BF /* PBXTextBookmark */; - 586A9C0914F0914D007F82BF = 586A9C0914F0914D007F82BF /* PBXTextBookmark */; - 586A9C0A14F0914D007F82BF = 586A9C0A14F0914D007F82BF /* PBXTextBookmark */; - 586A9C0B14F0914D007F82BF = 586A9C0B14F0914D007F82BF /* PBXTextBookmark */; - 586A9C0C14F0914D007F82BF = 586A9C0C14F0914D007F82BF /* PBXTextBookmark */; - 586A9C0D14F0914D007F82BF = 586A9C0D14F0914D007F82BF /* PBXTextBookmark */; - 586A9C0E14F0914D007F82BF = 586A9C0E14F0914D007F82BF /* PBXTextBookmark */; - 586A9C0F14F0914D007F82BF = 586A9C0F14F0914D007F82BF /* PBXTextBookmark */; - 586A9C1014F0914D007F82BF = 586A9C1014F0914D007F82BF /* PBXTextBookmark */; - 586A9C1114F0914D007F82BF = 586A9C1114F0914D007F82BF /* PBXTextBookmark */; - 586A9C1214F0914D007F82BF = 586A9C1214F0914D007F82BF /* PBXTextBookmark */; - 586A9C1314F0914D007F82BF = 586A9C1314F0914D007F82BF /* PBXTextBookmark */; - 586A9C1414F0914D007F82BF = 586A9C1414F0914D007F82BF /* PBXTextBookmark */; - 586A9C3C14F169D9007F82BF = 586A9C3C14F169D9007F82BF /* PBXTextBookmark */; - 586A9C3D14F169D9007F82BF = 586A9C3D14F169D9007F82BF /* PBXTextBookmark */; - 586A9C3E14F169D9007F82BF = 586A9C3E14F169D9007F82BF /* PBXTextBookmark */; - 586A9C3F14F169D9007F82BF = 586A9C3F14F169D9007F82BF /* PBXTextBookmark */; - 586A9C4014F169D9007F82BF = 586A9C4014F169D9007F82BF /* PBXTextBookmark */; - 586A9C4114F169D9007F82BF = 586A9C4114F169D9007F82BF /* PBXTextBookmark */; - 586A9C4214F169D9007F82BF = 586A9C4214F169D9007F82BF /* PBXTextBookmark */; - 586A9C4314F169D9007F82BF = 586A9C4314F169D9007F82BF /* PBXTextBookmark */; - 586A9C4414F169D9007F82BF = 586A9C4414F169D9007F82BF /* PBXTextBookmark */; - 586A9C4514F169D9007F82BF = 586A9C4514F169D9007F82BF /* PBXTextBookmark */; - 586A9C4614F169D9007F82BF = 586A9C4614F169D9007F82BF /* PBXTextBookmark */; - 586A9C4714F169D9007F82BF = 586A9C4714F169D9007F82BF /* PBXTextBookmark */; - 586A9C5D14F172AE007F82BF = 586A9C5D14F172AE007F82BF /* PBXTextBookmark */; - 586A9C5E14F172AE007F82BF = 586A9C5E14F172AE007F82BF /* PBXTextBookmark */; - 586A9C5F14F172AE007F82BF = 586A9C5F14F172AE007F82BF /* PBXTextBookmark */; - 586A9C7714F17FC1007F82BF = 586A9C7714F17FC1007F82BF /* PBXTextBookmark */; - 586A9C7814F17FC1007F82BF = 586A9C7814F17FC1007F82BF /* PBXTextBookmark */; - 586A9C7914F17FC1007F82BF = 586A9C7914F17FC1007F82BF /* PBXTextBookmark */; - 586A9C7A14F17FC1007F82BF = 586A9C7A14F17FC1007F82BF /* PBXTextBookmark */; - 586A9C7B14F17FC1007F82BF = 586A9C7B14F17FC1007F82BF /* PBXTextBookmark */; - 586A9C7C14F17FC1007F82BF = 586A9C7C14F17FC1007F82BF /* PBXTextBookmark */; - 586A9C7D14F17FC1007F82BF = 586A9C7D14F17FC1007F82BF /* PBXTextBookmark */; - 586A9C7E14F17FC1007F82BF = 586A9C7E14F17FC1007F82BF /* PBXTextBookmark */; - 586A9C7F14F17FC1007F82BF = 586A9C7F14F17FC1007F82BF /* PBXTextBookmark */; - 586A9C8014F17FC1007F82BF = 586A9C8014F17FC1007F82BF /* PBXTextBookmark */; - 586A9C8114F17FC1007F82BF = 586A9C8114F17FC1007F82BF /* PBXTextBookmark */; - 586A9C8214F17FC1007F82BF = 586A9C8214F17FC1007F82BF /* PBXTextBookmark */; - 586A9C9014F18474007F82BF = 586A9C9014F18474007F82BF /* PBXTextBookmark */; - 586A9C9114F18474007F82BF = 586A9C9114F18474007F82BF /* PBXTextBookmark */; - 586A9C9214F18474007F82BF = 586A9C9214F18474007F82BF /* PBXTextBookmark */; - 586A9C9314F18474007F82BF = 586A9C9314F18474007F82BF /* PBXTextBookmark */; - 586A9C9414F18474007F82BF = 586A9C9414F18474007F82BF /* PBXTextBookmark */; - 586A9C9514F18474007F82BF = 586A9C9514F18474007F82BF /* PBXTextBookmark */; - 586A9C9614F18474007F82BF = 586A9C9614F18474007F82BF /* PBXTextBookmark */; - 586A9C9714F18474007F82BF = 586A9C9714F18474007F82BF /* PBXTextBookmark */; - 586A9C9814F18474007F82BF = 586A9C9814F18474007F82BF /* PBXTextBookmark */; - 586A9C9914F18474007F82BF = 586A9C9914F18474007F82BF /* PBXTextBookmark */; - 586A9C9A14F18474007F82BF = 586A9C9A14F18474007F82BF /* PBXTextBookmark */; - 586A9C9B14F18474007F82BF = 586A9C9B14F18474007F82BF /* PBXTextBookmark */; - 586A9CAE14F19529007F82BF = 586A9CAE14F19529007F82BF /* PBXTextBookmark */; - 586A9CAF14F19529007F82BF = 586A9CAF14F19529007F82BF /* PBXTextBookmark */; - 586A9CB014F19529007F82BF = 586A9CB014F19529007F82BF /* PBXTextBookmark */; - 586A9CB114F19529007F82BF = 586A9CB114F19529007F82BF /* PBXTextBookmark */; - 586A9CB214F19529007F82BF = 586A9CB214F19529007F82BF /* PBXTextBookmark */; - 586A9CB314F19529007F82BF = 586A9CB314F19529007F82BF /* PBXTextBookmark */; - 586A9CB414F19529007F82BF = 586A9CB414F19529007F82BF /* PBXTextBookmark */; - 586A9CB514F19529007F82BF = 586A9CB514F19529007F82BF /* PBXTextBookmark */; - 586A9CB614F19529007F82BF = 586A9CB614F19529007F82BF /* PBXTextBookmark */; - 586A9CB714F19529007F82BF = 586A9CB714F19529007F82BF /* PBXTextBookmark */; - 586A9CB814F19529007F82BF = 586A9CB814F19529007F82BF /* PBXTextBookmark */; - 586A9CB914F19529007F82BF = 586A9CB914F19529007F82BF /* PBXTextBookmark */; - 586A9CC214F19AC4007F82BF = 586A9CC214F19AC4007F82BF /* PBXTextBookmark */; - 586A9CC314F19AC4007F82BF = 586A9CC314F19AC4007F82BF /* PBXTextBookmark */; - 586A9CC414F19AC4007F82BF = 586A9CC414F19AC4007F82BF /* PBXTextBookmark */; - 586A9CC514F19AC4007F82BF = 586A9CC514F19AC4007F82BF /* PBXTextBookmark */; - 586A9CC614F19AC4007F82BF = 586A9CC614F19AC4007F82BF /* PBXTextBookmark */; - 586A9CC714F19AC4007F82BF = 586A9CC714F19AC4007F82BF /* PBXTextBookmark */; - 586A9CC814F19AC4007F82BF = 586A9CC814F19AC4007F82BF /* PBXTextBookmark */; - 586A9CC914F19AC4007F82BF = 586A9CC914F19AC4007F82BF /* PBXTextBookmark */; - 586A9CCA14F19AC4007F82BF = 586A9CCA14F19AC4007F82BF /* PBXTextBookmark */; - 586A9CCB14F19AC4007F82BF = 586A9CCB14F19AC4007F82BF /* PBXTextBookmark */; - 586A9CCC14F19AC4007F82BF = 586A9CCC14F19AC4007F82BF /* PBXTextBookmark */; - 586A9CCD14F19AC4007F82BF = 586A9CCD14F19AC4007F82BF /* PBXTextBookmark */; - 586A9CF014F19E61007F82BF = 586A9CF014F19E61007F82BF /* PBXTextBookmark */; - 586A9CF114F19E61007F82BF = 586A9CF114F19E61007F82BF /* PBXTextBookmark */; - 586A9CF314F19E61007F82BF = 586A9CF314F19E61007F82BF /* PBXTextBookmark */; - 586A9CF414F19E61007F82BF = 586A9CF414F19E61007F82BF /* PBXTextBookmark */; - 586A9CF514F19E61007F82BF = 586A9CF514F19E61007F82BF /* PBXTextBookmark */; - 586A9CF614F19E61007F82BF = 586A9CF614F19E61007F82BF /* PBXTextBookmark */; - 586A9CF714F19E61007F82BF = 586A9CF714F19E61007F82BF /* PBXTextBookmark */; - 586A9CF814F19E61007F82BF = 586A9CF814F19E61007F82BF /* PBXTextBookmark */; - 586A9CF914F19E61007F82BF = 586A9CF914F19E61007F82BF /* PBXTextBookmark */; - 586A9CFA14F19E61007F82BF = 586A9CFA14F19E61007F82BF /* PBXTextBookmark */; - 586A9CFB14F19E61007F82BF = 586A9CFB14F19E61007F82BF /* PBXTextBookmark */; - 586A9CFC14F19E61007F82BF = 586A9CFC14F19E61007F82BF /* PBXTextBookmark */; - 586A9CFD14F19E61007F82BF = 586A9CFD14F19E61007F82BF /* PBXTextBookmark */; - 586A9CFE14F19E61007F82BF = 586A9CFE14F19E61007F82BF /* PBXTextBookmark */; - 586A9D1D14F1BAA7007F82BF = 586A9D1D14F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D1E14F1BAA7007F82BF = 586A9D1E14F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D1F14F1BAA7007F82BF = 586A9D1F14F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2014F1BAA7007F82BF = 586A9D2014F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2114F1BAA7007F82BF = 586A9D2114F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2214F1BAA7007F82BF = 586A9D2214F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2314F1BAA7007F82BF = 586A9D2314F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2414F1BAA7007F82BF = 586A9D2414F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2514F1BAA7007F82BF = 586A9D2514F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2614F1BAA7007F82BF = 586A9D2614F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2714F1BAA7007F82BF = 586A9D2714F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D2814F1BAA7007F82BF = 586A9D2814F1BAA7007F82BF /* PBXTextBookmark */; - 586A9D3014F1BB04007F82BF = 586A9D3014F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3114F1BB04007F82BF = 586A9D3114F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3214F1BB04007F82BF = 586A9D3214F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3314F1BB04007F82BF = 586A9D3314F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3414F1BB04007F82BF = 586A9D3414F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3514F1BB04007F82BF = 586A9D3514F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3614F1BB04007F82BF = 586A9D3614F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3714F1BB04007F82BF = 586A9D3714F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3814F1BB04007F82BF = 586A9D3814F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3914F1BB04007F82BF = 586A9D3914F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3A14F1BB04007F82BF = 586A9D3A14F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3B14F1BB04007F82BF = 586A9D3B14F1BB04007F82BF /* PBXTextBookmark */; - 586A9D3D14F1BC39007F82BF = 586A9D3D14F1BC39007F82BF /* PBXTextBookmark */; - 586A9D3E14F1BC39007F82BF = 586A9D3E14F1BC39007F82BF /* PBXTextBookmark */; - 586A9D3F14F1BC39007F82BF = 586A9D3F14F1BC39007F82BF /* PBXTextBookmark */; - 586A9D4014F1BC39007F82BF = 586A9D4014F1BC39007F82BF /* PBXTextBookmark */; - 586A9D4D14F1BC84007F82BF = 586A9D4D14F1BC84007F82BF /* PBXTextBookmark */; - 586A9D4E14F1BC84007F82BF = 586A9D4E14F1BC84007F82BF /* PBXTextBookmark */; - 586A9D4F14F1BC84007F82BF = 586A9D4F14F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5014F1BC84007F82BF = 586A9D5014F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5114F1BC84007F82BF = 586A9D5114F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5214F1BC84007F82BF = 586A9D5214F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5314F1BC84007F82BF = 586A9D5314F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5414F1BC84007F82BF = 586A9D5414F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5514F1BC84007F82BF = 586A9D5514F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5614F1BC84007F82BF = 586A9D5614F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5714F1BC84007F82BF = 586A9D5714F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5814F1BC84007F82BF = 586A9D5814F1BC84007F82BF /* PBXTextBookmark */; - 586A9D5914F1BE95007F82BF = 586A9D5914F1BE95007F82BF /* PBXTextBookmark */; - 586A9D5A14F1BE95007F82BF = 586A9D5A14F1BE95007F82BF /* PBXTextBookmark */; - 586A9D5B14F1BE95007F82BF = 586A9D5B14F1BE95007F82BF /* PBXTextBookmark */; - 586A9D5C14F1BE95007F82BF = 586A9D5C14F1BE95007F82BF /* PBXTextBookmark */; - 586A9D5D14F1BE95007F82BF = 586A9D5D14F1BE95007F82BF /* PBXTextBookmark */; - 586A9D5E14F1BE95007F82BF = 586A9D5E14F1BE95007F82BF /* PBXTextBookmark */; - 586A9D5F14F1BE95007F82BF = 586A9D5F14F1BE95007F82BF /* PBXTextBookmark */; - 586A9D6014F1BE95007F82BF = 586A9D6014F1BE95007F82BF /* PBXTextBookmark */; - 586A9D6114F1BE95007F82BF = 586A9D6114F1BE95007F82BF /* PBXTextBookmark */; - 586A9D6214F1BE95007F82BF = 586A9D6214F1BE95007F82BF /* PBXTextBookmark */; - 586A9D6314F1BE95007F82BF = 586A9D6314F1BE95007F82BF /* PBXTextBookmark */; - 586AA0E314F1CEBE007F82BF /* PBXTextBookmark */ = 586AA0E314F1CEBE007F82BF /* PBXTextBookmark */; - 58C0070614E0B5F000AC489A = 58C0070614E0B5F000AC489A /* PBXTextBookmark */; - 58C0071B14E0B5F000AC489A = 58C0071B14E0B5F000AC489A /* PBXTextBookmark */; - 58C0071C14E0B5F000AC489A = 58C0071C14E0B5F000AC489A /* PBXTextBookmark */; - 58C0071D14E0B5F000AC489A = 58C0071D14E0B5F000AC489A /* PBXTextBookmark */; - 58C0091014E2B28600AC489A = 58C0091014E2B28600AC489A /* PBXTextBookmark */; - 58C0091114E2B28600AC489A = 58C0091114E2B28600AC489A /* PBXTextBookmark */; - 58C009F214E341A300AC489A = 58C009F214E341A300AC489A /* PBXTextBookmark */; - 58C009F414E341A300AC489A = 58C009F414E341A300AC489A /* PBXTextBookmark */; - 58C009F614E341A300AC489A = 58C009F614E341A300AC489A /* PBXTextBookmark */; - 58C009F914E341A300AC489A = 58C009F914E341A300AC489A /* PBXTextBookmark */; - 58C00A4914E443EF00AC489A = 58C00A4914E443EF00AC489A /* PBXTextBookmark */; - 58C00AE114E495D000AC489A = 58C00AE114E495D000AC489A /* PBXTextBookmark */; - 58C00AE214E495D000AC489A = 58C00AE214E495D000AC489A /* PBXTextBookmark */; - 58C00AE614E495D000AC489A = 58C00AE614E495D000AC489A /* PBXTextBookmark */; - 58C00AE714E495D000AC489A = 58C00AE714E495D000AC489A /* PBXTextBookmark */; - 58C00AE814E495D000AC489A = 58C00AE814E495D000AC489A /* PBXTextBookmark */; - 58C00B1914E59D4500AC489A = 58C00B1914E59D4500AC489A /* PBXTextBookmark */; - 58C00BDA14E7465700AC489A = 58C00BDA14E7465700AC489A /* PBXTextBookmark */; - 58C00CCC14E86EE000AC489A = 58C00CCC14E86EE000AC489A /* PBXBookmark */; - 58C00CE314E8738600AC489A = 58C00CE314E8738600AC489A /* PBXTextBookmark */; - 58C00CE414E8738600AC489A = 58C00CE414E8738600AC489A /* PBXTextBookmark */; - 58C00CE514E8738600AC489A = 58C00CE514E8738600AC489A /* PBXTextBookmark */; - 58C00CE614E8738600AC489A = 58C00CE614E8738600AC489A /* PBXTextBookmark */; - 58C00CE814E8738600AC489A = 58C00CE814E8738600AC489A /* PBXTextBookmark */; - 58C00CE914E8738600AC489A = 58C00CE914E8738600AC489A /* PBXTextBookmark */; - 58C00CEA14E8738600AC489A = 58C00CEA14E8738600AC489A /* PBXTextBookmark */; - 58C00CEB14E8738600AC489A = 58C00CEB14E8738600AC489A /* PBXTextBookmark */; - 58C00CEC14E8738600AC489A = 58C00CEC14E8738600AC489A /* PBXTextBookmark */; - 58C00D1914E87E2900AC489A = 58C00D1914E87E2900AC489A /* PBXTextBookmark */; - 58C00DBD14E9442500AC489A = 58C00DBD14E9442500AC489A /* PBXTextBookmark */; - 58C00EA214ED2AC600AC489A = 58C00EA214ED2AC600AC489A /* PBXBookmark */; - 58C00EA414ED2B7E00AC489A = 58C00EA414ED2B7E00AC489A /* PBXTextBookmark */; - 58C00EA614ED2B7E00AC489A = 58C00EA614ED2B7E00AC489A /* PBXTextBookmark */; - 58C00EB714ED2B7E00AC489A = 58C00EB714ED2B7E00AC489A /* PBXBookmark */; - 58C00F0814ED327D00AC489A = 58C00F0814ED327D00AC489A /* PBXTextBookmark */; - 58C00F0914ED327D00AC489A = 58C00F0914ED327D00AC489A /* PBXTextBookmark */; - 58C00F0A14ED327D00AC489A = 58C00F0A14ED327D00AC489A /* PBXTextBookmark */; - 58C0102414ED514600AC489A = 58C0102414ED514600AC489A /* PBXTextBookmark */; - 58C0104014ED56EE00AC489A = 58C0104014ED56EE00AC489A /* PBXTextBookmark */; - 58C0109714ED5F5300AC489A = 58C0109714ED5F5300AC489A /* PBXTextBookmark */; - 58C010C814ED77AF00AC489A = 58C010C814ED77AF00AC489A /* PBXBookmark */; - 58C010D014ED8A2D00AC489A = 58C010D014ED8A2D00AC489A /* PBXTextBookmark */; - 58C010D414ED8A2D00AC489A = 58C010D414ED8A2D00AC489A /* PBXTextBookmark */; - 58C010E614ED8AA800AC489A = 58C010E614ED8AA800AC489A /* PBXTextBookmark */; - 58C010F614ED8B8700AC489A = 58C010F614ED8B8700AC489A /* PBXTextBookmark */; - 58C010F714ED8B8700AC489A = 58C010F714ED8B8700AC489A /* PBXTextBookmark */; - 58C010F814ED8B8700AC489A = 58C010F814ED8B8700AC489A /* PBXTextBookmark */; - 58C010F914ED8B8700AC489A = 58C010F914ED8B8700AC489A /* PBXTextBookmark */; - 58C010FA14ED8B8700AC489A = 58C010FA14ED8B8700AC489A /* PBXTextBookmark */; - 58C010FB14ED8B8700AC489A = 58C010FB14ED8B8700AC489A /* PBXTextBookmark */; - 58C010FC14ED8B8700AC489A = 58C010FC14ED8B8700AC489A /* PBXTextBookmark */; - 58C010FD14ED8B8700AC489A = 58C010FD14ED8B8700AC489A /* PBXTextBookmark */; - 58C010FE14ED8B8700AC489A = 58C010FE14ED8B8700AC489A /* PBXTextBookmark */; - 58C010FF14ED8B8700AC489A = 58C010FF14ED8B8700AC489A /* PBXTextBookmark */; - 58C0110014ED8B8700AC489A = 58C0110014ED8B8700AC489A /* PBXTextBookmark */; - 58C7C2E914DD96BA00436315 = 58C7C2E914DD96BA00436315 /* PBXTextBookmark */; - 58F2538314DF16C6003C2AB8 = 58F2538314DF16C6003C2AB8 /* PBXTextBookmark */; - 58F254A714E087D1003C2AB8 = 58F254A714E087D1003C2AB8 /* PBXTextBookmark */; - }; - sourceControlManager = 58428DC314BA516B000F8438 /* Source Control */; - userBuildSettings = { - }; - }; - 089C1667FE841158C02AAC07 /* English */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 783}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 45}"; - }; - }; - 32DBCF5E0370ADEE00C91783 /* SPMySQLFramework_Prefix.pch */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {643, 477}}"; - sepNavSelRange = "{183, 20}"; - sepNavVisRange = "{0, 231}"; - sepNavWindowFrame = "{{595, 0}, {806, 878}}"; - }; - }; - 580A331C14D75CF7000D6933 /* SPMySQLGeometryData.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 789}}"; - sepNavSelRange = "{1365, 18}"; - sepNavVisRange = "{0, 1754}"; - sepNavWindowFrame = "{{19, 0}, {806, 878}}"; - }; - }; - 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 11037}}"; - sepNavSelRange = "{1213, 0}"; - sepNavVisRange = "{788, 1045}"; - }; - }; - 58428DC314BA516B000F8438 /* Source Control */ = { - isa = PBXSourceControlManager; - fallbackIsa = XCSourceControlManager; - isSCMEnabled = 0; - scmConfiguration = { - repositoryNamesForRoots = { - "" = ""; - }; - }; - }; - 58428DC414BA516B000F8438 /* Code sense */ = { - isa = PBXCodeSenseManager; - indexTemplatePath = ""; - }; - 58428DF614BA5A13000F8438 /* build-mysql-client.sh */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 1846}}"; - sepNavSelRange = "{24, 0}"; - sepNavVisRange = "{0, 2272}"; - }; - }; - 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 2223}}"; - sepNavSelRange = "{1930, 8}"; - sepNavVisRange = "{1057, 1752}"; - sepNavWindowFrame = "{{4, 0}, {806, 878}}"; - }; - }; - 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 10764}}"; - sepNavSelRange = "{6983, 7}"; - sepNavVisRange = "{0, 2361}"; - sepNavWindowFrame = "{{634, 0}, {806, 878}}"; - }; - }; - 58428E0814BA5FEE000F8438 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 089C1667FE841158C02AAC07 /* English */; - name = "InfoPlist.strings: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 45; - vrLoc = 0; - }; - 5842929414C34B36000F8438 /* my_alloc.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 789}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1804}"; - sepNavWindowFrame = "{{19, 0}, {806, 878}}"; - }; - }; - 5842929614C34B36000F8438 /* mysql.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 11674}}"; - sepNavSelRange = "{3724, 1}"; - sepNavVisRange = "{2446, 2296}"; - sepNavWindowFrame = "{{120, 0}, {806, 878}}"; - }; - }; - 5842929714C34B36000F8438 /* mysql_com.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {666, 6864}}"; - sepNavSelRange = "{12376, 16}"; - sepNavVisRange = "{11191, 1990}"; - sepNavWindowFrame = "{{19, 0}, {725, 878}}"; - }; - }; - 5842929B14C34B36000F8438 /* typelib.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 789}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1501}"; - sepNavWindowFrame = "{{19, 0}, {806, 878}}"; - }; - }; - 584294E314CB8002000F8438 /* SPMySQLConstants.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 988}}"; - sepNavSelRange = "{2213, 32}"; - sepNavVisRange = "{578, 1771}"; - sepNavWindowFrame = "{{334, 0}, {806, 878}}"; - }; - }; - 584294EE14CB8002000F8438 /* Ping & KeepAlive.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 715}}"; - sepNavSelRange = "{1289, 0}"; - sepNavVisRange = "{0, 1542}"; - sepNavWindowFrame = "{{19, 0}, {725, 878}}"; - }; - }; - 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {666, 2912}}"; - sepNavSelRange = "{2950, 17}"; - sepNavVisRange = "{1292, 1795}"; - sepNavWindowFrame = "{{682, 0}, {725, 878}}"; - }; - }; - 584294F414CB8002000F8438 /* Querying & Preparation.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 1469}}"; - sepNavSelRange = "{1629, 0}"; - sepNavVisRange = "{1298, 2305}"; - sepNavWindowFrame = "{{18, 0}, {806, 878}}"; - }; - }; - 584294F514CB8002000F8438 /* Querying & Preparation.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {643, 8060}}"; - sepNavSelRange = "{7810, 0}"; - sepNavVisRange = "{6556, 1535}"; - sepNavWindowFrame = "{{696, 0}, {725, 878}}"; - }; - }; - 584294F814CB8002000F8438 /* Encoding.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {666, 789}}"; - sepNavSelRange = "{1941, 0}"; - sepNavVisRange = "{0, 1948}"; - sepNavWindowFrame = "{{19, 0}, {725, 878}}"; - }; - }; - 584294F914CB8002000F8438 /* Encoding.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 4992}}"; - sepNavSelRange = "{1281, 0}"; - sepNavVisRange = "{0, 1584}"; - sepNavWindowFrame = "{{673, 0}, {725, 878}}"; - }; - }; - 584294FC14CB8002000F8438 /* Server Info.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {666, 789}}"; - sepNavSelRange = "{1882, 0}"; - sepNavVisRange = "{0, 1889}"; - sepNavWindowFrame = "{{19, 0}, {725, 878}}"; - }; - }; - 584294FD14CB8002000F8438 /* Server Info.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 2366}}"; - sepNavSelRange = "{5255, 248}"; - sepNavVisRange = "{3560, 2087}"; - sepNavWindowFrame = "{{594, 0}, {806, 878}}"; - }; - }; - 5842959F14CB9440000F8438 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DF614BA5A13000F8438 /* build-mysql-client.sh */; - name = "build-mysql-client.sh: 5"; - rLen = 0; - rLoc = 24; - rType = 0; - vrLen = 1454; - vrLoc = 0; - }; - 586A985014ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 69"; - rLen = 0; - rLoc = 2114; - rType = 0; - vrLen = 1577; - vrLoc = 2047; - }; - 586A985314ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 34"; - rLen = 28; - rLoc = 1382; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A985414ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 47"; - rLen = 57; - rLoc = 1995; - rType = 0; - vrLen = 2223; - vrLoc = 1532; - }; - 586A985514ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; - name = "Querying & Preparation.h: 37"; - rLen = 0; - rLoc = 1490; - rType = 0; - vrLen = 2390; - vrLoc = 0; - }; - 586A985614ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A985714ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A985814ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A985914ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 43"; - rLen = 0; - rLoc = 2248; - rType = 0; - vrLen = 2275; - vrLoc = 0; - }; - 586A985A14ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; - name = "Field Definitions.m: 42"; - rLen = 0; - rLoc = 1937; - rType = 0; - vrLen = 2440; - vrLoc = 994; - }; - 586A985B14ED8BA5007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A987B14ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 69"; - rLen = 0; - rLoc = 2114; - rType = 0; - vrLen = 1577; - vrLoc = 2047; - }; - 586A987C14ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 116"; - rLen = 0; - rLoc = 3985; - rType = 0; - vrLen = 2273; - vrLoc = 2562; - }; - 586A987D14ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; - name = "Querying & Preparation.h: 37"; - rLen = 0; - rLoc = 1490; - rType = 0; - vrLen = 2390; - vrLoc = 0; - }; - 586A987E14ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A987F14ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A988014ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A988114ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 43"; - rLen = 0; - rLoc = 2248; - rType = 0; - vrLen = 2275; - vrLoc = 0; - }; - 586A988214ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; - name = "Field Definitions.m: 42"; - rLen = 0; - rLoc = 1937; - rType = 0; - vrLen = 2440; - vrLoc = 994; - }; - 586A988314ED8D6C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A989814ED8F37007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 57"; - rLen = 0; - rLoc = 2115; - rType = 0; - vrLen = 1576; - vrLoc = 1771; - }; - 586A989914ED8F37007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; - name = "Field Definitions.m: 42"; - rLen = 0; - rLoc = 1937; - rType = 0; - vrLen = 2440; - vrLoc = 994; - }; - 586A989A14ED8F37007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 45"; - rLen = 0; - rLoc = 1770; - rType = 0; - vrLen = 2327; - vrLoc = 1420; - }; - 586A989B14ED8F37007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A989C14ED8F37007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A989D14ED8F37007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A989E14ED8F37007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 43"; - rLen = 0; - rLoc = 2248; - rType = 0; - vrLen = 2275; - vrLoc = 0; - }; - 586A989F14ED8F37007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A98CA14EDE440007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 57"; - rLen = 0; - rLoc = 2115; - rType = 0; - vrLen = 1685; - vrLoc = 1771; - }; - 586A98CB14EDE440007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 122"; - rLen = 51; - rLoc = 4696; - rType = 0; - vrLen = 2004; - vrLoc = 5018; - }; - 586A98CC14EDE440007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A98CD14EDE440007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A98CE14EDE440007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A98CF14EDE440007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 43"; - rLen = 0; - rLoc = 2248; - rType = 0; - vrLen = 2275; - vrLoc = 0; - }; - 586A98D014EDE440007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A98E014EE75EB007F82BF /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - }; - 586A990914EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 472"; - rLen = 0; - rLoc = 15496; - rType = 0; - vrLen = 1047; - vrLoc = 2424; - }; - 586A990A14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 34"; - rLen = 0; - rLoc = 1388; - rType = 0; - vrLen = 1576; - vrLoc = 790; - }; - 586A990B14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; - name = "Field Definitions.m: 30"; - rLen = 0; - rLoc = 1290; - rType = 0; - vrLen = 1497; - vrLoc = 1937; - }; - 586A990C14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */; - name = "SPMySQLGeometryData.m: 29"; - rLen = 0; - rLoc = 1213; - rType = 0; - vrLen = 1045; - vrLoc = 788; - }; - 586A990D14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 30"; - rLen = 0; - rLoc = 1281; - rType = 0; - vrLen = 1698; - vrLoc = 0; - }; - 586A990E14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 588412A714CC7A4D0078027F /* Locking.m */; - name = "Locking.m: 30"; - rLen = 0; - rLoc = 1280; - rType = 0; - vrLen = 1673; - vrLoc = 119; - }; - 586A990F14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 72"; - rLen = 0; - rLoc = 2630; - rType = 0; - vrLen = 1339; - vrLoc = 578; - }; - 586A991014EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 166"; - rLen = 0; - rLoc = 5483; - rType = 0; - vrLen = 1512; - vrLoc = 0; - }; - 586A991114EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F914CB8002000F8438 /* Encoding.m */; - name = "Encoding.m: 30"; - rLen = 0; - rLoc = 1281; - rType = 0; - vrLen = 1584; - vrLoc = 0; - }; - 586A991214EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 57"; - rLen = 0; - rLoc = 2115; - rType = 0; - vrLen = 1732; - vrLoc = 134; - }; - 586A991314EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00BD014E7459600AC489A /* Databases & Tables.m */; - name = "Databases & Tables.m: 142"; - rLen = 0; - rLoc = 5045; - rType = 0; - vrLen = 1681; - vrLoc = 449; - }; - 586A991414EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */; - name = "Delegate & Proxy.m: 72"; - rLen = 0; - rLoc = 2412; - rType = 0; - vrLen = 1601; - vrLoc = 0; - }; - 586A991514EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 126"; - rLen = 31; - rLoc = 3851; - rType = 0; - vrLen = 1399; - vrLoc = 3665; - }; - 586A991614EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A991714EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 43"; - rLen = 0; - rLoc = 2248; - rType = 0; - vrLen = 2275; - vrLoc = 0; - }; - 586A991814EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 86"; - rLen = 0; - rLoc = 2883; - rType = 0; - vrLen = 1750; - vrLoc = 1977; - }; - 586A991914EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A991A14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A991B14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A991C14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 122"; - rLen = 51; - rLoc = 4696; - rType = 0; - vrLen = 2004; - vrLoc = 5018; - }; - 586A991F14EE81C3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A992814EEA221007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - rLen = 7; - rLoc = 6983; - rType = 0; - }; - 586A992914EEA221007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 126; - rLoc = 6980; - rType = 0; - vrLen = 566; - vrLoc = 6645; - }; - 586A992A14EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 126"; - rLen = 31; - rLoc = 3851; - rType = 0; - vrLen = 1376; - vrLoc = 3902; - }; - 586A992B14EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 1242; - vrLoc = 6246; - }; - 586A992C14EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A992D14EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 36"; - rLen = 0; - rLoc = 2134; - rType = 0; - vrLen = 2107; - vrLoc = 0; - }; - 586A992E14EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 161"; - rLen = 0; - rLoc = 3744; - rType = 0; - vrLen = 1563; - vrLoc = 4601; - }; - 586A992F14EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A993014EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A993114EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A993214EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 122"; - rLen = 51; - rLoc = 4696; - rType = 0; - vrLen = 2004; - vrLoc = 5018; - }; - 586A993314EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A993614EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - rLen = 0; - rLoc = 9223372036854775808; - rType = 0; - }; - 586A993714EEA225007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 95"; - rLen = 0; - rLoc = 3834; - rType = 0; - vrLen = 1797; - vrLoc = 738; - }; - 586A994414EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 1242; - vrLoc = 6246; - }; - 586A994714EECED8007F82BF /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - }; - 586A994814EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 398"; - rLen = 0; - rLoc = 11431; - rType = 0; - vrLen = 1745; - vrLoc = 11598; - }; - 586A994B14EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; - rLen = 0; - rLoc = 9223372036854775808; - rType = 0; - }; - 586A994C14EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; - name = "SPMySQLResult.h: 86"; - rLen = 114; - rLoc = 3095; - rType = 0; - vrLen = 2138; - vrLoc = 1496; - }; - 586A994D14EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 170"; - rLen = 0; - rLoc = 3744; - rType = 0; - vrLen = 1550; - vrLoc = 4693; - }; - 586A994E14EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 401"; - rLen = 0; - rLoc = 12123; - rType = 0; - vrLen = 0; - vrLoc = 13514; - }; - 586A994F14EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 95"; - rLen = 0; - rLoc = 3834; - rType = 0; - vrLen = 1797; - vrLoc = 738; - }; - 586A995014EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A995114EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 122"; - rLen = 51; - rLoc = 4696; - rType = 0; - vrLen = 2004; - vrLoc = 5018; - }; - 586A995214EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A995314EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A995414EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A995514EECED8007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A996C14EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 1242; - vrLoc = 6246; - }; - 586A996D14EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A996E14EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 448"; - rLen = 0; - rLoc = 13503; - rType = 0; - vrLen = 0; - vrLoc = 13514; - }; - 586A996F14EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A997014EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A997114EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A997214EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 122"; - rLen = 51; - rLoc = 4696; - rType = 0; - vrLen = 2004; - vrLoc = 5018; - }; - 586A997314EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A997414EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 95"; - rLen = 0; - rLoc = 3834; - rType = 0; - vrLen = 1797; - vrLoc = 738; - }; - 586A997514EED74A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 36"; - rLen = 0; - rLoc = 1466; - rType = 0; - vrLen = 2610; - vrLoc = 1286; - }; - 586A999014EEE281007F82BF /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - }; - 586A99AD14EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 1242; - vrLoc = 6246; - }; - 586A99AE14EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 65"; - rLen = 0; - rLoc = 2189; - rType = 0; - vrLen = 1685; - vrLoc = 1467; - }; - 586A99AF14EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; - name = "SPMySQLFullyStreamingResult.h: 35"; - rLen = 0; - rLoc = 1422; - rType = 0; - vrLen = 1636; - vrLoc = 0; - }; - 586A99B014EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; - name = "SPMySQLStreamingResult.h: 41"; - rLen = 0; - rLoc = 1425; - rType = 0; - vrLen = 1441; - vrLoc = 645; - }; - 586A99B314EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - rLen = 0; - rLoc = 9223372036854775808; - rType = 0; - }; - 586A99B414EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 42"; - rLen = 0; - rLoc = 1553; - rType = 0; - vrLen = 1557; - vrLoc = 1439; - }; - 586A99B514EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 117"; - rLen = 0; - rLoc = 4962; - rType = 0; - vrLen = 1670; - vrLoc = 3935; - }; - 586A99B814EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; - rLen = 0; - rLoc = 9223372036854775808; - rType = 0; - }; - 586A99B914EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; - name = "SPMySQLResult.h: 52"; - rLen = 0; - rLoc = 1998; - rType = 0; - vrLen = 2126; - vrLoc = 2207; - }; - 586A99BC14EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - rLen = 0; - rLoc = 5346; - rType = 0; - }; - 586A99BD14EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A99C014EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A99C114EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A99C214EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 122"; - rLen = 51; - rLoc = 4696; - rType = 0; - vrLen = 2004; - vrLoc = 5018; - }; - 586A99C314EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A99C414EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A99C514EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A99C614EFFB2A007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A99CD14F00C55007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 57"; - rLen = 74; - rLoc = 2059; - rType = 0; - vrLen = 1307; - vrLoc = 787; - }; - 586A99CE14F00C55007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 32DBCF5E0370ADEE00C91783 /* SPMySQLFramework_Prefix.pch */; - name = "SPMySQLFramework_Prefix.pch: 10"; - rLen = 20; - rLoc = 183; - rType = 0; - vrLen = 231; - vrLoc = 0; - }; - 586A99CF14F00C55007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 430"; - rLen = 0; - rLoc = 12936; - rType = 0; - vrLen = 0; - vrLoc = 13514; - }; - 586A99D014F00C55007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; - name = "SPMySQLStreamingResult.h: 47"; - rLen = 0; - rLoc = 1448; - rType = 0; - vrLen = 1072; - vrLoc = 1128; - }; - 586A99D114F00C55007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - comments = "Use of undeclared identifier 'fieldflags'; did you mean 'fieldFlags'?"; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - rLen = 1; - rLoc = 119; - rType = 1; - }; - 586A99D214F00C55007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 120"; - rLen = 0; - rLoc = 4983; - rType = 0; - vrLen = 1281; - vrLoc = 4074; - }; - 586A99D314F00C55007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 126; - rLoc = 6980; - rType = 0; - vrLen = 566; - vrLoc = 6645; - }; - 586A99D614F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; - name = "SPMySQLStreamingResult.h: 41"; - rLen = 0; - rLoc = 1425; - rType = 0; - vrLen = 1441; - vrLoc = 645; - }; - 586A99D714F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 487"; - rLen = 0; - rLoc = 15207; - rType = 0; - vrLen = 849; - vrLoc = 14363; - }; - 586A99D814F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 93"; - rLen = 147; - rLoc = 2894; - rType = 0; - vrLen = 1720; - vrLoc = 1702; - }; - 586A99D914F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A99DA14F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A99DB14F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A99DC14F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A99DD14F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 122"; - rLen = 51; - rLoc = 4696; - rType = 0; - vrLen = 2004; - vrLoc = 5018; - }; - 586A99DE14F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A99DF14F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A99E014F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A99E114F01759007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {764, 789}}"; - sepNavSelRange = "{1491, 16}"; - sepNavVisRange = "{0, 1942}"; - sepNavWindowFrame = "{{4, 0}, {823, 878}}"; - }; - }; - 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {764, 3380}}"; - sepNavSelRange = "{4467, 0}"; - sepNavVisRange = "{4570, 1630}"; - sepNavWindowFrame = "{{5, 0}, {823, 878}}"; - }; - }; - 586A9A1614F05216007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 120"; - rLen = 0; - rLoc = 4983; - rType = 0; - vrLen = 1382; - vrLoc = 3125; - }; - 586A9A1714F05216007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - comments = "Use of undeclared identifier 'fullyStreaming'"; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - rLen = 0; - rLoc = 76; - rType = 1; - }; - 586A9A1814F05216007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 99"; - rLen = 0; - rLoc = 2883; - rType = 0; - vrLen = 1461; - vrLoc = 3253; - }; - 586A9A1914F05216007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 126; - rLoc = 6980; - rType = 0; - vrLen = 566; - vrLoc = 6645; - }; - 586A9A1A14F0527D007F82BF /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; - }; - 586A9A2C14F05659007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 99"; - rLen = 0; - rLoc = 2883; - rType = 0; - vrLen = 1461; - vrLoc = 3212; - }; - 586A9A2D14F05659007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - comments = "Method '-initWithMySQLResult:stringEncoding:connection:withFullStreaming:' not found (return type defaults to 'id')"; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - rLen = 1; - rLoc = 323; - rType = 1; - }; - 586A9A2E14F05659007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 321"; - rLen = 0; - rLoc = 12544; - rType = 0; - vrLen = 1487; - vrLoc = 11757; - }; - 586A9A2F14F05659007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 126; - rLoc = 6980; - rType = 0; - vrLen = 566; - vrLoc = 6645; - }; - 586A9A7D14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; - name = "SPMySQLStreamingResult.h: 4"; - rLen = 0; - rLoc = 26; - rType = 0; - vrLen = 1637; - vrLoc = 0; - }; - 586A9A7E14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 190"; - rLen = 0; - rLoc = 5538; - rType = 0; - vrLen = 1297; - vrLoc = 5831; - }; - 586A9A7F14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 4"; - rLen = 0; - rLoc = 30; - rType = 0; - vrLen = 1719; - vrLoc = 0; - }; - 586A9A8014F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 324"; - rLen = 0; - rLoc = 12722; - rType = 0; - vrLen = 1719; - vrLoc = 11547; - }; - 586A9A8114F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; - name = "SPMySQLFastStreamingResult.h: 9"; - rLen = 0; - rLoc = 199; - rType = 0; - vrLen = 1691; - vrLoc = 197; - }; - 586A9A8214F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 30"; - rLen = 0; - rLoc = 1289; - rType = 0; - vrLen = 1597; - vrLoc = 12; - }; - 586A9A8314F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */; - name = "SPMySQLUtilities.h: 39"; - rLen = 32; - rLoc = 1509; - rType = 0; - vrLen = 1768; - vrLoc = 15; - }; - 586A9A8414F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; - name = "SPMySQLConnectionProxy.h: 32"; - rLen = 0; - rLoc = 1356; - rType = 0; - vrLen = 1304; - vrLoc = 454; - }; - 586A9A8514F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 50"; - rLen = 0; - rLoc = 1874; - rType = 0; - vrLen = 1607; - vrLoc = 0; - }; - 586A9A8614F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1443; - vrLoc = 716; - }; - 586A9A8714F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9A8A14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - rLen = 1; - rLoc = 47; - rType = 1; - }; - 586A9A8B14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 302"; - rLen = 0; - rLoc = 10978; - rType = 0; - vrLen = 1821; - vrLoc = 8234; - }; - 586A9A8E14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 190"; - rLen = 0; - rLoc = 5538; - rType = 0; - vrLen = 1813; - vrLoc = 5515; - }; - 586A9A8F14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 217"; - rLen = 0; - rLoc = 7575; - rType = 0; - vrLen = 1724; - vrLoc = 5697; - }; - 586A9A9214F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 386"; - rLen = 0; - rLoc = 12494; - rType = 0; - vrLen = 2837; - vrLoc = 1670; - }; - 586A9A9314F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 114"; - rLen = 15; - rLoc = 4700; - rType = 0; - vrLen = 2162; - vrLoc = 8198; - }; - 586A9A9614F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; - name = "SPMySQLStreamingResult.h: 32"; - rLen = 0; - rLoc = 1355; - rType = 0; - vrLen = 1942; - vrLoc = 0; - }; - 586A9A9714F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9A9814F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9A9914F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9A9A14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9A9B14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9A9C14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9A9D14F081A3007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9AAC14F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1443; - vrLoc = 716; - }; - 586A9AAD14F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 72"; - rLen = 0; - rLoc = 2942; - rType = 0; - vrLen = 1903; - vrLoc = 2354; - }; - 586A9AAE14F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 113"; - rLen = 12; - rLoc = 4656; - rType = 0; - vrLen = 2570; - vrLoc = 2711; - }; - 586A9AAF14F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9AB014F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 302"; - rLen = 0; - rLoc = 10978; - rType = 0; - vrLen = 1821; - vrLoc = 8234; - }; - 586A9AB114F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9AB214F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9AB314F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9AB414F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9AB514F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9AB614F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9AB714F08A0C007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9B4714F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1471; - vrLoc = 716; - }; - 586A9B4814F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 72"; - rLen = 0; - rLoc = 2942; - rType = 0; - vrLen = 1903; - vrLoc = 2354; - }; - 586A9B4914F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 113"; - rLen = 12; - rLoc = 4656; - rType = 0; - vrLen = 2570; - vrLoc = 2711; - }; - 586A9B4A14F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9B4B14F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 302"; - rLen = 0; - rLoc = 10978; - rType = 0; - vrLen = 1821; - vrLoc = 8234; - }; - 586A9B4C14F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9B4D14F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9B4E14F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9B4F14F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9B5014F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9B5114F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9B5214F08BEB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9B8114F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1471; - vrLoc = 716; - }; - 586A9B8214F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 72"; - rLen = 0; - rLoc = 2942; - rType = 0; - vrLen = 1903; - vrLoc = 2354; - }; - 586A9B8314F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 113"; - rLen = 12; - rLoc = 4656; - rType = 0; - vrLen = 2570; - vrLoc = 2711; - }; - 586A9B8414F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9B8514F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 306"; - rLen = 0; - rLoc = 10978; - rType = 0; - vrLen = 2111; - vrLoc = 7722; - }; - 586A9B8614F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9B8714F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9B8814F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9B8914F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9B8A14F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9B8B14F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9B8C14F08D11007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9BE814F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1471; - vrLoc = 716; - }; - 586A9BE914F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 72"; - rLen = 0; - rLoc = 2942; - rType = 0; - vrLen = 1903; - vrLoc = 2354; - }; - 586A9BEA14F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 113"; - rLen = 12; - rLoc = 4656; - rType = 0; - vrLen = 2570; - vrLoc = 2711; - }; - 586A9BEB14F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9BEC14F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 306"; - rLen = 0; - rLoc = 10978; - rType = 0; - vrLen = 2111; - vrLoc = 7722; - }; - 586A9BED14F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9BEE14F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9BEF14F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9BF014F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9BF114F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9BF214F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9BF314F090AB007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9BF714F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1471; - vrLoc = 716; - }; - 586A9BF814F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 72"; - rLen = 0; - rLoc = 2942; - rType = 0; - vrLen = 1903; - vrLoc = 2354; - }; - 586A9BF914F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 113"; - rLen = 12; - rLoc = 4656; - rType = 0; - vrLen = 2570; - vrLoc = 2711; - }; - 586A9BFA14F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9BFB14F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 306"; - rLen = 0; - rLoc = 10978; - rType = 0; - vrLen = 2111; - vrLoc = 7722; - }; - 586A9BFC14F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9BFD14F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9BFE14F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9BFF14F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9C0014F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9C0114F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9C0214F090E4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9C0914F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1471; - vrLoc = 716; - }; - 586A9C0A14F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 72"; - rLen = 0; - rLoc = 2942; - rType = 0; - vrLen = 1903; - vrLoc = 2354; - }; - 586A9C0B14F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 113"; - rLen = 12; - rLoc = 4656; - rType = 0; - vrLen = 2570; - vrLoc = 2711; - }; - 586A9C0C14F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9C0D14F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 306"; - rLen = 0; - rLoc = 10978; - rType = 0; - vrLen = 2111; - vrLoc = 7722; - }; - 586A9C0E14F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9C0F14F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9C1014F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9C1114F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9C1214F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9C1314F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9C1414F0914D007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9C3C14F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1471; - vrLoc = 716; - }; - 586A9C3D14F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 135"; - rLen = 0; - rLoc = 5333; - rType = 0; - vrLen = 1430; - vrLoc = 4333; - }; - 586A9C3E14F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 72"; - rLen = 0; - rLoc = 2942; - rType = 0; - vrLen = 1903; - vrLoc = 2354; - }; - 586A9C3F14F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9C4014F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 306"; - rLen = 0; - rLoc = 10978; - rType = 0; - vrLen = 2111; - vrLoc = 7722; - }; - 586A9C4114F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9C4214F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9C4314F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9C4414F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9C4514F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9C4614F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9C4714F169D9007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9C5D14F172AE007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - comments = "Method '-initWithMySQLResult:stringEncoding:connection:withFullStreaming:' not found (return type defaults to 'id')"; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - rLen = 1; - rLoc = 323; - rType = 1; - }; - 586A9C5E14F172AE007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 200"; - rLen = 0; - rLoc = 7810; - rType = 0; - vrLen = 1535; - vrLoc = 6556; - }; - 586A9C5F14F172AE007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 126; - rLoc = 6980; - rType = 0; - vrLen = 566; - vrLoc = 6645; - }; - 586A9C7714F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1434; - vrLoc = 784; - }; - 586A9C7814F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 223"; - rLen = 0; - rLoc = 7203; - rType = 0; - vrLen = 2733; - vrLoc = 1498; - }; - 586A9C7914F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 307"; - rLen = 0; - rLoc = 10979; - rType = 0; - vrLen = 1683; - vrLoc = 3470; - }; - 586A9C7A14F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 72"; - rLen = 0; - rLoc = 2942; - rType = 0; - vrLen = 1678; - vrLoc = 4570; - }; - 586A9C7B14F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9C7C14F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9C7D14F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9C7E14F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9C7F14F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9C8014F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9C8114F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9C8214F17FC1007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9C9014F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1434; - vrLoc = 784; - }; - 586A9C9114F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 81"; - rLen = 0; - rLoc = 2883; - rType = 0; - vrLen = 1874; - vrLoc = 1537; - }; - 586A9C9214F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 74"; - rLen = 0; - rLoc = 2943; - rType = 0; - vrLen = 2124; - vrLoc = 1430; - }; - 586A9C9314F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 110"; - rLen = 0; - rLoc = 4506; - rType = 0; - vrLen = 2079; - vrLoc = 3328; - }; - 586A9C9414F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9C9514F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9C9614F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9C9714F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9C9814F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9C9914F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9C9A14F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9C9B14F18474007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9CAE14F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1434; - vrLoc = 784; - }; - 586A9CAF14F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 139"; - rLen = 0; - rLoc = 4149; - rType = 0; - vrLen = 1635; - vrLoc = 3681; - }; - 586A9CB014F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 129"; - rLen = 0; - rLoc = 4467; - rType = 0; - vrLen = 1590; - vrLoc = 3624; - }; - 586A9CB114F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 211"; - rLen = 724; - rLoc = 6871; - rType = 0; - vrLen = 2039; - vrLoc = 6731; - }; - 586A9CB214F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9CB314F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9CB414F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9CB514F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9CB614F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9CB714F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9CB814F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9CB914F19529007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9CC214F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1434; - vrLoc = 784; - }; - 586A9CC314F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 139"; - rLen = 0; - rLoc = 4149; - rType = 0; - vrLen = 1635; - vrLoc = 3681; - }; - 586A9CC414F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 129"; - rLen = 0; - rLoc = 4467; - rType = 0; - vrLen = 1590; - vrLoc = 3624; - }; - 586A9CC514F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 211"; - rLen = 724; - rLoc = 6871; - rType = 0; - vrLen = 2039; - vrLoc = 6731; - }; - 586A9CC614F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9CC714F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9CC814F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9CC914F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9CCA14F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9CCB14F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9CCC14F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9CCD14F19AC4007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9CF014F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1434; - vrLoc = 784; - }; - 586A9CF114F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 455"; - rLen = 0; - rLoc = 13508; - rType = 0; - vrLen = 0; - vrLoc = 13514; - }; - 586A9CF314F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 97"; - rLen = 0; - rLoc = 3280; - rType = 0; - vrLen = 954; - vrLoc = 2221; - }; - 586A9CF414F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 145"; - rLen = 48; - rLoc = 4338; - rType = 0; - vrLen = 1054; - vrLoc = 6386; - }; - 586A9CF514F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 129"; - rLen = 0; - rLoc = 4467; - rType = 0; - vrLen = 1590; - vrLoc = 3624; - }; - 586A9CF614F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 211"; - rLen = 724; - rLoc = 6871; - rType = 0; - vrLen = 2039; - vrLoc = 6731; - }; - 586A9CF714F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9CF814F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9CF914F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9CFA14F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9CFB14F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9CFC14F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9CFD14F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9CFE14F19E61007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9D1D14F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1434; - vrLoc = 784; - }; - 586A9D1E14F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 413"; - rLen = 0; - rLoc = 13508; - rType = 0; - vrLen = 1845; - vrLoc = 11525; - }; - 586A9D1F14F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 129"; - rLen = 0; - rLoc = 4467; - rType = 0; - vrLen = 1649; - vrLoc = 4570; - }; - 586A9D2014F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 211"; - rLen = 724; - rLoc = 6871; - rType = 0; - vrLen = 2039; - vrLoc = 6731; - }; - 586A9D2114F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9D2214F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9D2314F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9D2414F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9D2514F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9D2614F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9D2714F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9D2814F1BAA7007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9D3014F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1434; - vrLoc = 784; - }; - 586A9D3114F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 416"; - rLen = 0; - rLoc = 13508; - rType = 0; - vrLen = 1968; - vrLoc = 11538; - }; - 586A9D3214F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 129"; - rLen = 0; - rLoc = 4467; - rType = 0; - vrLen = 1649; - vrLoc = 4570; - }; - 586A9D3314F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 211"; - rLen = 724; - rLoc = 6871; - rType = 0; - vrLen = 2039; - vrLoc = 6731; - }; - 586A9D3414F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9D3514F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9D3614F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9D3714F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9D3814F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9D3914F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9D3A14F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9D3B14F1BB04007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9D3D14F1BC39007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 200"; - rLen = 0; - rLoc = 7810; - rType = 0; - vrLen = 1535; - vrLoc = 6556; - }; - 586A9D3E14F1BC39007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 808"; - rLen = 0; - rLoc = 27549; - rType = 0; - vrLen = 405; - vrLoc = 27378; - }; - 586A9D3F14F1BC39007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - rLen = 0; - rLoc = 3494; - rType = 0; - }; - 586A9D4014F1BC39007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 108"; - rLen = 0; - rLoc = 3691; - rType = 0; - vrLen = 635; - vrLoc = 3083; - }; - 586A9D4D14F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 55"; - rLen = 0; - rLoc = 1997; - rType = 0; - vrLen = 1434; - vrLoc = 784; - }; - 586A9D4E14F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 416"; - rLen = 0; - rLoc = 13508; - rType = 0; - vrLen = 1968; - vrLoc = 11538; - }; - 586A9D4F14F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 129"; - rLen = 0; - rLoc = 4467; - rType = 0; - vrLen = 1649; - vrLoc = 4570; - }; - 586A9D5014F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 211"; - rLen = 724; - rLoc = 6871; - rType = 0; - vrLen = 2039; - vrLoc = 6731; - }; - 586A9D5114F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9D5214F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 109"; - rLen = 0; - rLoc = 3830; - rType = 0; - vrLen = 1881; - vrLoc = 1953; - }; - 586A9D5314F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9D5414F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9D5514F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9D5614F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9D5714F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9D5814F1BC84007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586A9D5914F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; - name = "SPMySQLConnectionProxy.h: 32"; - rLen = 0; - rLoc = 1356; - rType = 0; - vrLen = 1304; - vrLoc = 454; - }; - 586A9D5A14F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLFastStreamingResult.m: 416"; - rLen = 0; - rLoc = 13508; - rType = 0; - vrLen = 1968; - vrLoc = 11538; - }; - 586A9D5B14F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 129"; - rLen = 0; - rLoc = 4467; - rType = 0; - vrLen = 1649; - vrLoc = 4570; - }; - 586A9D5C14F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 211"; - rLen = 724; - rLoc = 6871; - rType = 0; - vrLen = 2039; - vrLoc = 6731; - }; - 586A9D5D14F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 227"; - rLen = 7; - rLoc = 6983; - rType = 0; - vrLen = 2361; - vrLoc = 0; - }; - 586A9D5E14F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 56"; - rLen = 8; - rLoc = 1930; - rType = 0; - vrLen = 1752; - vrLoc = 1057; - }; - 586A9D5F14F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 73"; - rLen = 32; - rLoc = 2213; - rType = 0; - vrLen = 1771; - vrLoc = 578; - }; - 586A9D6014F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2415; - vrLoc = 1408; - }; - 586A9D6114F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 586A9D6214F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 586A9D6314F1BE95007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2087; - vrLoc = 3560; - }; - 586AA0E314F1CEBE007F82BF /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; - name = "SPMySQLConnectionProxy.h: 32"; - rLen = 0; - rLoc = 1356; - rType = 0; - vrLen = 1234; - vrLoc = 524; - }; - 5884127614CC63830078027F /* SPMySQL.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 806}}"; - sepNavSelRange = "{1997, 0}"; - sepNavVisRange = "{784, 1434}"; - sepNavWindowFrame = "{{19, 0}, {806, 878}}"; - }; - }; - 588412A614CC7A4D0078027F /* Locking.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 546}}"; - sepNavSelRange = "{180, 0}"; - sepNavVisRange = "{12, 1498}"; - sepNavWindowFrame = "{{19, 0}, {806, 878}}"; - }; - }; - 588412A714CC7A4D0078027F /* Locking.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 1365}}"; - sepNavSelRange = "{1280, 0}"; - sepNavVisRange = "{119, 1673}"; - sepNavWindowFrame = "{{561, 0}, {806, 878}}"; - }; - }; - 5884142514CCF5190078027F /* Conversion.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 832}}"; - sepNavSelRange = "{646, 0}"; - sepNavVisRange = "{15, 2457}"; - sepNavWindowFrame = "{{19, 0}, {806, 878}}"; - }; - }; - 5884142614CCF5190078027F /* Conversion.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 1274}}"; - sepNavSelRange = "{2441, 508}"; - sepNavVisRange = "{1408, 2414}"; - sepNavWindowFrame = "{{302, 0}, {806, 878}}"; - }; - }; - 588414BC14CE3B110078027F /* SPMySQLConnectionDelegate.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 1391}}"; - sepNavSelRange = "{1903, 68}"; - sepNavVisRange = "{1701, 2460}"; - sepNavWindowFrame = "{{634, 0}, {806, 878}}"; - }; - }; - 5884165314D2306A0078027F /* SPMySQLResult.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 1560}}"; - sepNavSelRange = "{1724, 0}"; - sepNavVisRange = "{378, 2307}"; - sepNavWindowFrame = "{{455, 0}, {806, 878}}"; - }; - }; - 5884165414D2306A0078027F /* SPMySQLResult.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 6435}}"; - sepNavSelRange = "{6871, 724}"; - sepNavVisRange = "{6652, 2166}"; - sepNavWindowFrame = "{{238, 0}, {806, 878}}"; - }; - }; - 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 585}}"; - sepNavSelRange = "{1509, 32}"; - sepNavVisRange = "{15, 1768}"; - sepNavWindowFrame = "{{19, 0}, {725, 878}}"; - }; - }; - 58C0070614E0B5F000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 580A331D14D75CF7000D6933 /* SPMySQLGeometryData.m */; - name = "SPMySQLGeometryData.m: 29"; - rLen = 0; - rLoc = 1213; - rType = 0; - vrLen = 1446; - vrLoc = 0; - }; - 58C0071B14E0B5F000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294E314CB8002000F8438 /* SPMySQLConstants.h */; - name = "SPMySQLConstants.h: 30"; - rLen = 0; - rLoc = 1289; - rType = 0; - vrLen = 1567; - vrLoc = 15; - }; - 58C0071C14E0B5F000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 32DBCF5E0370ADEE00C91783 /* SPMySQLFramework_Prefix.pch */; - name = "SPMySQLFramework_Prefix.pch: 11"; - rLen = 0; - rLoc = 231; - rType = 0; - vrLen = 231; - vrLoc = 0; - }; - 58C0071D14E0B5F000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C006C714E0B18A00AC489A /* SPMySQLUtilities.h */; - name = "SPMySQLUtilities.h: 39"; - rLen = 32; - rLoc = 1509; - rType = 0; - vrLen = 1754; - vrLoc = 29; - }; - 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 936}}"; - sepNavSelRange = "{1356, 0}"; - sepNavVisRange = "{524, 1234}"; - sepNavWindowFrame = "{{229, 0}, {725, 878}}"; - }; - }; - 58C0091014E2B28600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 588414BC14CE3B110078027F /* SPMySQLConnectionDelegate.h */; - name = "SPMySQLConnectionDelegate.h: 92"; - rLen = 0; - rLoc = 4086; - rType = 0; - vrLen = 1613; - vrLoc = 0; - }; - 58C0091114E2B28600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C008CC14E2AC7D00AC489A /* SPMySQLConnectionProxy.h */; - name = "SPMySQLConnectionProxy.h: 32"; - rLen = 0; - rLoc = 1356; - rType = 0; - vrLen = 1142; - vrLoc = 586; - }; - 58C009D314E31D3800AC489A /* SPMySQLStringAdditions.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 520}}"; - sepNavSelRange = "{1486, 0}"; - sepNavVisRange = "{3, 1483}"; - sepNavWindowFrame = "{{19, 0}, {790, 878}}"; - }; - }; - 58C009D414E31D3800AC489A /* SPMySQLStringAdditions.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {731, 789}}"; - sepNavSelRange = "{1944, 0}"; - sepNavVisRange = "{0, 2083}"; - sepNavWindowFrame = "{{451, 0}, {790, 878}}"; - }; - }; - 58C009F214E341A300AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F914CB8002000F8438 /* Encoding.m */; - name = "Encoding.m: 30"; - rLen = 0; - rLoc = 1281; - rType = 0; - vrLen = 1471; - vrLoc = 12; - }; - 58C009F414E341A300AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EE14CB8002000F8438 /* Ping & KeepAlive.h */; - name = "Ping & KeepAlive.h: 30"; - rLen = 0; - rLoc = 1289; - rType = 0; - vrLen = 1542; - vrLoc = 0; - }; - 58C009F614E341A300AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 580A331C14D75CF7000D6933 /* SPMySQLGeometryData.h */; - name = "SPMySQLGeometryData.h: 1"; - rLen = 1272; - rLoc = 0; - rType = 0; - vrLen = 1438; - vrLoc = 0; - }; - 58C009F914E341A300AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C009D414E31D3800AC489A /* SPMySQLStringAdditions.m */; - name = "SPMySQLStringAdditions.m: 32"; - rLen = 0; - rLoc = 1354; - rType = 0; - vrLen = 1437; - vrLoc = 0; - }; - 58C00A4914E443EF00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C009D314E31D3800AC489A /* SPMySQLStringAdditions.h */; - name = "SPMySQLStringAdditions.h: 40"; - rLen = 0; - rLoc = 1486; - rType = 0; - vrLen = 1483; - vrLoc = 3; - }; - 58C00AA714E4869C00AC489A /* Max Packet Size.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {731, 789}}"; - sepNavSelRange = "{1480, 0}"; - sepNavVisRange = "{0, 1523}"; - sepNavWindowFrame = "{{19, 0}, {790, 878}}"; - }; - }; - 58C00AA814E4869C00AC489A /* Max Packet Size.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {731, 2522}}"; - sepNavSelRange = "{444, 0}"; - sepNavVisRange = "{380, 2204}"; - sepNavWindowFrame = "{{609, 0}, {790, 878}}"; - }; - }; - 58C00AB314E4892E00AC489A /* Delegate & Proxy.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 499}}"; - sepNavSelRange = "{0, 1348}"; - sepNavVisRange = "{0, 1406}"; - sepNavWindowFrame = "{{19, 0}, {790, 878}}"; - }; - }; - 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 1729}}"; - sepNavSelRange = "{2412, 0}"; - sepNavVisRange = "{0, 1601}"; - sepNavWindowFrame = "{{174, 0}, {790, 878}}"; - }; - }; - 58C00AE114E495D000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F814CB8002000F8438 /* Encoding.h */; - name = "Encoding.h: 51"; - rLen = 0; - rLoc = 1941; - rType = 0; - vrLen = 1440; - vrLoc = 508; - }; - 58C00AE214E495D000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FC14CB8002000F8438 /* Server Info.h */; - name = "Server Info.h: 34"; - rLen = 28; - rLoc = 1367; - rType = 0; - vrLen = 1522; - vrLoc = 0; - }; - 58C00AE614E495D000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */; - name = "Delegate & Proxy.m: 79"; - rLen = 0; - rLoc = 2412; - rType = 0; - vrLen = 1115; - vrLoc = 2357; - }; - 58C00AE714E495D000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884127614CC63830078027F /* SPMySQL.h */; - name = "SPMySQL.h: 47"; - rLen = 0; - rLoc = 1874; - rType = 0; - vrLen = 1492; - vrLoc = 0; - }; - 58C00AE814E495D000AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA714E4869C00AC489A /* Max Packet Size.h */; - name = "Max Packet Size.h: 11"; - rLen = 0; - rLoc = 278; - rType = 0; - vrLen = 1514; - vrLoc = 3; - }; - 58C00B1914E59D4500AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 36"; - rLen = 0; - rLoc = 1409; - rType = 0; - vrLen = 1507; - vrLoc = 0; - }; - 58C00BCF14E7459600AC489A /* Databases & Tables.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 650}}"; - sepNavSelRange = "{63, 0}"; - sepNavVisRange = "{0, 1493}"; - sepNavWindowFrame = "{{19, 0}, {806, 878}}"; - }; - }; - 58C00BD014E7459600AC489A /* Databases & Tables.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 3302}}"; - sepNavSelRange = "{5045, 0}"; - sepNavVisRange = "{449, 1681}"; - sepNavWindowFrame = "{{629, 0}, {806, 878}}"; - }; - }; - 58C00BDA14E7465700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; - name = "Querying & Preparation.h: 1"; - rLen = 1354; - rLoc = 0; - rType = 0; - vrLen = 1518; - vrLoc = 0; - }; - 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 1508}}"; - sepNavSelRange = "{3830, 0}"; - sepNavVisRange = "{1953, 1881}"; - sepNavWindowFrame = "{{48, 0}, {806, 878}}"; - }; - }; - 58C00CCC14E86EE000AC489A /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - }; - 58C00CE314E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00BCF14E7459600AC489A /* Databases & Tables.h */; - name = "Databases & Tables.h: 6"; - rLen = 0; - rLoc = 63; - rType = 0; - vrLen = 1493; - vrLoc = 0; - }; - 58C00CE414E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E614DB6E8600436315 /* Field Definitions.h */; - name = "Field Definitions.h: 17"; - rLen = 0; - rLoc = 642; - rType = 0; - vrLen = 1434; - vrLoc = 0; - }; - 58C00CE514E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; - name = "Field Definitions.m: 30"; - rLen = 0; - rLoc = 1290; - rType = 0; - vrLen = 1001; - vrLoc = 13379; - }; - 58C00CE614E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AB314E4892E00AC489A /* Delegate & Proxy.h */; - name = "Delegate & Proxy.h: 1"; - rLen = 1348; - rLoc = 0; - rType = 0; - vrLen = 1406; - vrLoc = 0; - }; - 58C00CE814E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 72"; - rLen = 0; - rLoc = 2630; - rType = 0; - vrLen = 1258; - vrLoc = 655; - }; - 58C00CE914E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 588412A614CC7A4D0078027F /* Locking.h */; - name = "Locking.h: 9"; - rLen = 0; - rLoc = 180; - rType = 0; - vrLen = 1498; - vrLoc = 12; - }; - 58C00CEA14E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 588412A714CC7A4D0078027F /* Locking.m */; - name = "Locking.m: 30"; - rLen = 0; - rLoc = 1280; - rType = 0; - vrLen = 1517; - vrLoc = 12; - }; - 58C00CEB14E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142514CCF5190078027F /* Conversion.h */; - name = "Conversion.h: 30"; - rLen = 0; - rLoc = 1281; - rType = 0; - vrLen = 1701; - vrLoc = 12; - }; - 58C00CEC14E8738600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 30"; - rLen = 0; - rLoc = 1281; - rType = 0; - vrLen = 1911; - vrLoc = 246; - }; - 58C00D1914E87E2900AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00BD014E7459600AC489A /* Databases & Tables.m */; - name = "Databases & Tables.m: 142"; - rLen = 0; - rLoc = 5045; - rType = 0; - vrLen = 2195; - vrLoc = 6590; - }; - 58C00DBD14E9442500AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 166"; - rLen = 0; - rLoc = 5483; - rType = 0; - vrLen = 1879; - vrLoc = 3773; - }; - 58C00EA214ED2AC600AC489A /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - }; - 58C00EA414ED2B7E00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFE14BA5FAE000F8438 /* SPMySQLConnection.h */; - name = "SPMySQLConnection.h: 125"; - rLen = 31; - rLoc = 3851; - rType = 0; - vrLen = 1773; - vrLoc = 3203; - }; - 58C00EA614ED2B7E00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 30"; - rLen = 0; - rLoc = 1299; - rType = 0; - vrLen = 1437; - vrLoc = 0; - }; - 58C00EB714ED2B7E00AC489A /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - }; - 58C00F0814ED327D00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */; - name = "SPMySQLStreamingResult.h: 34"; - rLen = 0; - rLoc = 1422; - rType = 0; - vrLen = 1601; - vrLoc = 0; - }; - 58C00F0914ED327D00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165314D2306A0078027F /* SPMySQLResult.h */; - name = "SPMySQLResult.h: 33"; - rLen = 0; - rLoc = 1346; - rType = 0; - vrLen = 2182; - vrLoc = 0; - }; - 58C00F0A14ED327D00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884165414D2306A0078027F /* SPMySQLResult.m */; - name = "SPMySQLResult.m: 34"; - rLen = 0; - rLoc = 1388; - rType = 0; - vrLen = 2098; - vrLoc = 56; - }; - 58C0102414ED514600AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00CA414E845D800AC489A /* SPMySQL Private APIs.h */; - name = "SPMySQL Private APIs.h: 95"; - rLen = 0; - rLoc = 3834; - rType = 0; - vrLen = 981; - vrLoc = 1302; - }; - 58C0104014ED56EE00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 157"; - rLen = 53; - rLoc = 5100; - rType = 0; - vrLen = 1653; - vrLoc = 4269; - }; - 58C0109714ED5F5300AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - rLen = 1; - rLoc = 47; - rType = 1; - }; - 58C010C814ED77AF00AC489A /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - }; - 58C010D014ED8A2D00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 472"; - rLen = 0; - rLoc = 15496; - rType = 0; - vrLen = 959; - vrLoc = 4959; - }; - 58C010D414ED8A2D00AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 67"; - rLen = 0; - rLoc = 2869; - rType = 0; - vrLen = 2247; - vrLoc = 1699; - }; - 58C010E614ED8AA800AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; - name = "Querying & Preparation.h: 37"; - rLen = 0; - rLoc = 1576; - rType = 0; - vrLen = 2340; - vrLoc = 0; - }; - 58C010F614ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - comments = "Use of undeclared identifier 'mConnection'; did you mean 'NSConnection'?"; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - rLen = 0; - rLoc = 55; - rType = 1; - }; - 58C010F714ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 69"; - rLen = 0; - rLoc = 2114; - rType = 0; - vrLen = 1546; - vrLoc = 2048; - }; - 58C010F814ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58428DFF14BA5FAE000F8438 /* SPMySQLConnection.m */; - name = "SPMySQLConnection.m: 34"; - rLen = 28; - rLoc = 1382; - rType = 0; - vrLen = 2321; - vrLoc = 0; - }; - 58C010F914ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F514CB8002000F8438 /* Querying & Preparation.m */; - name = "Querying & Preparation.m: 47"; - rLen = 57; - rLoc = 1995; - rType = 0; - vrLen = 2137; - vrLoc = 1618; - }; - 58C010FA14ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294F414CB8002000F8438 /* Querying & Preparation.h */; - name = "Querying & Preparation.h: 37"; - rLen = 0; - rLoc = 1490; - rType = 0; - vrLen = 2390; - vrLoc = 0; - }; - 58C010FB14ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5884142614CCF5190078027F /* Conversion.m */; - name = "Conversion.m: 58"; - rLen = 508; - rLoc = 2441; - rType = 0; - vrLen = 2414; - vrLoc = 1409; - }; - 58C010FC14ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294EF14CB8002000F8438 /* Ping & KeepAlive.m */; - name = "Ping & KeepAlive.m: 84"; - rLen = 17; - rLoc = 2950; - rType = 0; - vrLen = 1795; - vrLoc = 1292; - }; - 58C010FD14ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C00AA814E4869C00AC489A /* Max Packet Size.m */; - name = "Max Packet Size.m: 13"; - rLen = 0; - rLoc = 444; - rType = 0; - vrLen = 2204; - vrLoc = 380; - }; - 58C010FE14ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */; - name = "SPMySQLStreamingResult.m: 43"; - rLen = 0; - rLoc = 2248; - rType = 0; - vrLen = 2275; - vrLoc = 0; - }; - 58C010FF14ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; - name = "Field Definitions.m: 42"; - rLen = 0; - rLoc = 1937; - rType = 0; - vrLen = 2440; - vrLoc = 994; - }; - 58C0110014ED8B8700AC489A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 584294FD14CB8002000F8438 /* Server Info.m */; - name = "Server Info.m: 162"; - rLen = 248; - rLoc = 5255; - rType = 0; - vrLen = 2088; - vrLoc = 3560; - }; - 58C7C1E214DB6E4C00436315 /* SPMySQLFastStreamingResult.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 789}}"; - sepNavSelRange = "{1612, 0}"; - sepNavVisRange = "{0, 1698}"; - sepNavWindowFrame = "{{45, 0}, {806, 878}}"; - }; - }; - 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 5577}}"; - sepNavSelRange = "{13508, 0}"; - sepNavVisRange = "{11573, 1933}"; - sepNavWindowFrame = "{{632, 0}, {806, 878}}"; - }; - }; - 58C7C1E614DB6E8600436315 /* Field Definitions.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {914, 507}}"; - sepNavSelRange = "{642, 0}"; - sepNavVisRange = "{0, 1434}"; - sepNavWindowFrame = "{{19, 0}, {725, 878}}"; - }; - }; - 58C7C1E714DB6E8600436315 /* Field Definitions.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {666, 6461}}"; - sepNavSelRange = "{11500, 5}"; - sepNavVisRange = "{5554, 2632}"; - sepNavWindowFrame = "{{19, 0}, {725, 878}}"; - }; - }; - 58C7C2E914DD96BA00436315 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C2EA14DD96BA00436315 /* types.h */; - name = "types.h: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1984; - vrLoc = 0; - }; - 58C7C2EA14DD96BA00436315 /* types.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = types.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h; - sourceTree = ""; - }; - 58F2538314DF16C6003C2AB8 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 5842929614C34B36000F8438 /* mysql.h */; - name = "mysql.h: 109"; - rLen = 0; - rLoc = 3531; - rType = 0; - vrLen = 1874; - vrLoc = 2401; - }; - 58F254A714E087D1003C2AB8 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 58C7C1E714DB6E8600436315 /* Field Definitions.m */; - name = "Field Definitions.m: 35"; - rLen = 0; - rLoc = 1937; - rType = 0; - vrLen = 2394; - vrLoc = 1374; - }; - 8DC2EF4F0486A6940098B216 /* SPMySQL.framework */ = { - activeExec = 0; - }; -} diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m index 665e7697..8f684f29 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m @@ -282,7 +282,7 @@ } else if (!strcmp(mysqlCharset, "cp932")) { return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingDOSJapanese); } else if (!strcmp(mysqlCharset, "eucjpms")) { - return CFStringConvertEncodingToNSStringEncoding(NSJapaneseEUCStringEncoding); + return NSJapaneseEUCStringEncoding; // Continue with old < 4.1 mappings } else if (!strcmp(mysqlCharset, "czech")) { diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL deleted file mode 120000 index 3a3ed2eb..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/SPMySQL \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h deleted file mode 100644 index 332b2680..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// $Id$ -// -// Databases & Tables.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 11, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Databases_and_Tables) - -// Database selection -- (BOOL)selectDatabase:(NSString *)aDatabase; - -// Database lists -- (NSArray *)databases; -- (NSArray *)databasesLike:(NSString *)nameLikeString; - -// Table lists -- (NSArray *)tables; -- (NSArray *)tablesLike:(NSString *)nameLikeString; -- (NSArray *)tablesFromDatabase:(NSString *)aDatabase; -- (NSArray *)tablesLike:(NSString *)nameLikeString fromDatabase:(NSString *)aDatabase; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h deleted file mode 100644 index cf132fcf..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// $Id$ -// -// Delegate & Proxy.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Delegate_and_Proxy) - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h deleted file mode 100644 index bb5bf25d..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +++ /dev/null @@ -1,53 +0,0 @@ -// -// $Id$ -// -// Encoding.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Encoding) - -// Current connection encoding information -- (NSString *)encoding; -- (NSStringEncoding)stringEncoding; -- (BOOL)encodingUsesLatin1Transport; - -// Setting connection encoding -- (BOOL)setEncoding:(NSString *)theEncoding; -- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1; - -// Encoding storage and restoration -- (void)storeEncodingForRestoration; -- (void)restoreStoredEncoding; - -// Encoding conversion -+ (NSStringEncoding)stringEncodingForMySQLCharset:(const char *)mysqlCharset; -+ (NSString *)mySQLCharsetForStringEncoding:(NSStringEncoding)aStringEncoding; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h deleted file mode 100644 index 20e1ddc9..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +++ /dev/null @@ -1,38 +0,0 @@ -// -// $Id$ -// -// Field Definitions.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLResult (Field_Definitions) - -- (NSArray *)fieldDefinitions; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h deleted file mode 100644 index faa667d8..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +++ /dev/null @@ -1,40 +0,0 @@ -// -// $Id$ -// -// Max Packet Size.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Max_Packet_Size) - -- (NSUInteger)maxQuerySize; -- (BOOL)isMaxQuerySizeEditable; -- (NSUInteger)setGlobalMaxQuerySize:(NSUInteger)newMaxSize; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h deleted file mode 100644 index ff55f796..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +++ /dev/null @@ -1,103 +0,0 @@ -// -// $Id$ -// -// Querying & Preparation.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Querying_and_Preparation) - -// Data preparation -- (NSString *)escapeAndQuoteString:(NSString *)theString; -- (NSString *)escapeString:(NSString *)theString includingQuotes:(BOOL)includeQuotes; -- (NSString *)escapeAndQuoteData:(NSData *)theData; -- (NSString *)escapeData:(NSData *)theData includingQuotes:(BOOL)includeQuotes; - -// Queries -- (SPMySQLResult *)queryString:(NSString *)theQueryString; -- (SPMySQLFastStreamingResult *)streamingQueryString:(NSString *)theQueryString; -- (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming; -- (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType; - -// Query information -- (unsigned long long)rowsAffectedByLastQuery; -- (unsigned long long)lastInsertID; - -// Connection and query error state -- (BOOL)queryErrored; -- (NSString *)lastErrorMessage; -- (NSUInteger)lastErrorID; -+ (BOOL)isErrorIDConnectionError:(NSUInteger)theErrorID; - -// Query cancellation -- (void)cancelCurrentQuery; -- (BOOL)lastQueryWasCancelled; -- (BOOL)lastQueryWasCancelledUsingReconnect; - -@end - -/** - * Set up static functions to allow fast calling with cached selectors - */ - -static inline id SPMySQLConnectionEscapeString(SPMySQLConnection* self, NSString *theString, BOOL encloseInQuotes) -{ - typedef id (*SPMySQLConnectionEscapeStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, BOOL); - static SPMySQLConnectionEscapeStringMethodPtr cachedMethodPointer; - static SEL cachedSelector; - - if (!cachedSelector) cachedSelector = @selector(escapeString:includingQuotes:); - if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeStringMethodPtr)[self methodForSelector:cachedSelector]; - - return cachedMethodPointer(self, cachedSelector, theString, encloseInQuotes); -} - -static inline id SPMySQLConnectionEscapeData(SPMySQLConnection* self, NSData *theData, BOOL encloseInQuotes) -{ - typedef id (*SPMySQLConnectionEscapeDataMethodPtr)(SPMySQLConnection*, SEL, NSData *, BOOL); - static SPMySQLConnectionEscapeDataMethodPtr cachedMethodPointer; - static SEL cachedSelector; - - if (!cachedSelector) cachedSelector = @selector(escapeData:includingQuotes:); - if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeDataMethodPtr)[self methodForSelector:cachedSelector]; - - return cachedMethodPointer(self, cachedSelector, theData, encloseInQuotes); -} - -static inline id SPMySQLConnectionQueryString(SPMySQLConnection* self, NSString *theQueryString, NSStringEncoding theEncoding, SPMySQLResultType theReturnType) -{ - typedef id (*SPMySQLConnectionQueryStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, NSStringEncoding, SPMySQLResultType); - static SPMySQLConnectionQueryStringMethodPtr cachedMethodPointer; - static SEL cachedSelector; - - if (!cachedSelector) cachedSelector = @selector(queryString:usingEncoding:withResultType:); - if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionQueryStringMethodPtr)[self methodForSelector:cachedSelector]; - - return cachedMethodPointer(self, cachedSelector, theQueryString, theEncoding, theReturnType); -} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h deleted file mode 100644 index a9150f46..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +++ /dev/null @@ -1,62 +0,0 @@ -// -// $Id$ -// -// SPMySQL.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 -// Copyright (c) 2012 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 - -@class SPMySQLConnection, SPMySQLResult, SPMySQLStreamingResult, SPMySQLFastStreamingResult; - -// Global include file for the framework. -// Constants -#import "SPMySQLConstants.h" - -// Required category additions -#import "SPMySQLStringAdditions.h" - -// MySQL Connection Delegate and Proxy protocols -#import "SPMySQLConnectionDelegate.h" -#import "SPMySQLConnectionProxy.h" - -// MySQL Connection class and public categories -#import "SPMySQLConnection.h" -#import "Delegate & Proxy.h" -#import "Databases & Tables.h" -#import "Max Packet Size.h" -#import "Querying & Preparation.h" -#import "Encoding.h" -#import "Server Info.h" - -// MySQL result set, streaming subclasses of same, and associated categories -#import "SPMySQLResult.h" -#import "SPMySQLStreamingResult.h" -#import "SPMySQLFastStreamingResult.h" -#import "Field Definitions.h" - -// Result data objects -#import "SPMySQLGeometryData.h" \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h deleted file mode 100644 index db6dc0af..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +++ /dev/null @@ -1,177 +0,0 @@ -// -// $Id$ -// -// SPMySQLConnection.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 8, 2012 -// Copyright (c) 2012 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 - -@interface SPMySQLConnection : NSObject { - - // Delegate - NSObject *delegate; - BOOL delegateSupportsWillQueryString; - BOOL delegateSupportsConnectionLost; - BOOL delegateQueryLogging; // Defaults to YES if protocol implemented - - // Basic connection details - NSString *host; - NSString *username; - NSString *password; - NSUInteger port; - BOOL useSocket; - NSString *socketPath; - - // SSL connection details - BOOL useSSL; - NSString *sslKeyFilePath; - NSString *sslCertificatePath; - NSString *sslCACertificatePath; - - // MySQL connection details and state - struct st_mysql *mySQLConnection; - SPMySQLConnectionState state; - BOOL connectedWithSSL; - BOOL userTriggeredDisconnect; - BOOL isReconnecting; - uint64_t initialConnectTime; - unsigned long mysqlConnectionThreadId; - - // Connection proxy - NSObject *proxy; - SPMySQLConnectionProxyState previousProxyState; - BOOL proxyStateChangeNotificationsIgnored; - - // Connection lock to prevent non-thread-safe query misuse - NSConditionLock *connectionLock; - - // Currently selected database - NSString *database; - - // Delegate connection lost decisions - NSUInteger reconnectionRetryAttempts; - SPMySQLConnectionLostDecision lastDelegateDecisionForLostConnection; - NSLock *delegateDecisionLock; - - // Timeout and keep-alive - NSUInteger timeout; - BOOL useKeepAlive; - NSTimer *keepAliveTimer; - CGFloat keepAliveInterval; - uint64_t lastKeepAliveTime; - NSUInteger keepAlivePingFailures; - pthread_t keepAlivePingThread; - BOOL keepAlivePingThreadActive; - BOOL keepAliveLastPingSuccess; - BOOL keepAliveLastPingBlocked; - - // Encoding details - and also a record of any previous encoding to allow - // switching back and forth - NSString *encoding; - NSStringEncoding stringEncoding; - BOOL encodingUsesLatin1Transport; - NSString *previousEncoding; - BOOL previousEncodingUsesLatin1Transport; - - // Server details - NSString *serverVersionString; - - // Error state for the last query or connection state - NSUInteger queryErrorID; - NSString *queryErrorMessage; - - // Query details - unsigned long long lastQueryAffectedRowCount; - unsigned long long lastQueryInsertID; - - // Query cancellation details - BOOL lastQueryWasCancelled; - BOOL lastQueryWasCancelledUsingReconnect; - - // Timing details - uint64_t lastConnectionUsedTime; - double lastQueryExecutionTime; - - // Maximum query size - NSUInteger maxQuerySize; - BOOL maxQuerySizeIsEditable; - BOOL maxQuerySizeEditabilityChecked; - NSUInteger queryActionShouldRestoreMaxQuerySize; - - // Queries - BOOL retryQueriesOnConnectionFailure; -} - -#pragma mark - -#pragma mark Synthesized properties - -@property (readwrite, assign, nonatomic) NSObject *delegate; -@property (readwrite, assign, nonatomic) NSObject *proxy; - -@property (readwrite, retain) NSString *host; -@property (readwrite, retain) NSString *username; -@property (readwrite, retain) NSString *password; -@property (readwrite, assign) NSUInteger port; -@property (readwrite, assign) BOOL useSocket; -@property (readwrite, retain) NSString *socketPath; - -@property (readwrite, assign) BOOL useSSL; -@property (readwrite, retain) NSString *sslKeyFilePath; -@property (readwrite, retain) NSString *sslCertificatePath; -@property (readwrite, retain) NSString *sslCACertificatePath; - -@property (readwrite, assign) NSUInteger timeout; -@property (readwrite, assign) BOOL useKeepAlive; -@property (readwrite, assign) CGFloat keepAliveInterval; - -@property (readonly) unsigned long mysqlConnectionThreadId; -@property (readwrite, assign) BOOL retryQueriesOnConnectionFailure; - -@property (readwrite, assign) BOOL delegateQueryLogging; - -#pragma mark - -#pragma mark Connection and disconnection - -- (BOOL)connect; -- (BOOL)reconnect; -- (void)disconnect; - -#pragma mark - -#pragma mark Connection state - -- (BOOL)isConnected; -- (BOOL)isConnectedViaSSL; -- (BOOL)checkConnection; -- (double)timeConnected; -- (BOOL)userTriggeredDisconnect; - -#pragma mark - -#pragma mark Connection utility - -+ (NSString *)findSocketPath; - -@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h deleted file mode 100644 index f1a1f911..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +++ /dev/null @@ -1,106 +0,0 @@ -// -// $Id$ -// -// SPMySQLConnectionDelegate.h -// SPMySQLFramework -// -// Created by Stuart Connolly (stuconnolly.com) on October 20, 2010. -// Copyright (c) 2010 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 - -@protocol SPMySQLConnectionDelegate -@optional - -/** - * Notifies the delegate that a query will be performed. - * - * @param query The query string that will be sent to the MySQL server - * @param connection The connection instance performing the query - */ -- (void)willQueryString:(NSString *)query connection:(id)connection; - -/** - * Notifies the delegate that a query that was just performed gave - * an error. - * - * @param error The query error, as a string - * @param connection The connection instance which received the error - */ -- (void)queryGaveError:(NSString *)error connection:(id)connection; - -/** - * Notifies the delegate that it should display the supplied error. - * The connection may sometimes want to notify the user directly - * about certain issues, and will use this method to allow the - * delegate to do so. - * - * @param title The title of the message to display to the user - * @param message The main text of the message to display to the user - */ -- (void)showErrorWithTitle:(NSString *)title message:(NSString *)message; - -/** - * Requests the keychain password for the connection. - * When a connection is being made to a server, it is best not to - * set the password on the class; instead, it should be kept within - * the secure store, and the other connection details (user, host) - * can be used to look it up and supplied on demand. - * - * @param connection The connection instance to supply the password for - */ -- (NSString *)keychainPasswordForConnection:(id)connection; - -/** - * Notifies the delegate that no underlying connection is available, - * typically when the connection has been asked to perform a query - * or some other action for which a connection must be present. - * Those actions will still return false or error states as appropriate, - * but the delegate may wish to perform actions as a result of a total - * loss of connection. - * - * @param connection The connection instance which has lost the connection to the host - */ -- (void)noConnectionAvailable:(id)connection; - -/** - * Notifies the delegate that although a SSL connection was requested, - * MySQL made the connection without using SSL. This can happen because - * the server connected to doesn't support SSL or had it disabled, or - * that insufficient details were provided to make the connection over - * SSL. - */ -- (void)connectionFellBackToNonSSL:(id)connection; - -/** - * Notifies the delegate that the connection has been temporarily lost, - * and asks the delegate for guidance on how to proceed. If the delegate - * does not implement this method, reconnections will automatically be - * attempted - up to a small limit of attempts. - * - * @param connection The connection instance that requires a decision on how to proceed - */ -- (SPMySQLConnectionLostDecision)connectionLost:(id)connection; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h deleted file mode 100644 index afd7c95a..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +++ /dev/null @@ -1,77 +0,0 @@ -// -// $Id$ -// -// SPMySQLConnectionProxy.h -// SPMySQLFramework -// -// Created by Stuart Connolly (stuconnolly.com) on July 2, 2009. -// Copyright (c) 2009 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 - - -/** - * Connection proxy state constants. - */ -typedef enum { - SPMySQLProxyIdle = 0, - SPMySQLProxyConnecting = 1, - SPMySQLProxyWaitingForAuth = 2, - SPMySQLProxyConnected = 3, - SPMySQLProxyForwardingFailed = 4 -} SPMySQLConnectionProxyState; - - -@protocol SPMySQLConnectionProxy - -/** - * All the methods for this protocol are required. - */ - -/** - * Connect the proxy. - */ -- (void)connect; - -/** - * Disconnect the proxy. - */ -- (void)disconnect; - -/** - * Get the current state of the proxy. - */ -- (SPMySQLConnectionProxyState)state; - -/** - * Get the local port being provided by the proxy. - */ -- (NSUInteger)localPort; - -/** - * Sets the method the proxy should call whenever the state of the connection changes. - */ -- (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; - -@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h deleted file mode 100644 index 6fb3d279..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +++ /dev/null @@ -1,76 +0,0 @@ -// -// $Id$ -// -// SPMySQLConstants.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 -// Copyright (c) 2012 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 - - -// Connection state -typedef enum { - SPMySQLDisconnected = 0, - SPMySQLConnecting = 1, - SPMySQLConnected = 2, - SPMySQLDisconnecting = 3 -} SPMySQLConnectionState; - -// Connection lock state -typedef enum { - SPMySQLConnectionIdle = 0, - SPMySQLConnectionBusy = 1 -} SPMySQLConnectionLockState; - -// Decision on how to handle lost connections -// Connection check constants -typedef enum { - SPMySQLConnectionLostDisconnect = 0, - SPMySQLConnectionLostReconnect = 1 -} SPMySQLConnectionLostDecision; - -// Result set row types -typedef enum { - SPMySQLResultRowAsDefault = 0, - SPMySQLResultRowAsArray = 1, - SPMySQLResultRowAsDictionary = 2 -} SPMySQLResultRowType; - -// Result charset list -typedef struct { - NSUInteger nr; - const char *name; - const char *collation; - NSUInteger char_minlen; - NSUInteger char_maxlen; -} SPMySQLResultCharset; - -// Query result types -typedef enum { - SPMySQLResultAsResult = 0, - SPMySQLResultAsFastStreamingResult = 1, - SPMySQLResultAsLowMemStreamingResult = 2 -} SPMySQLResultType; \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h deleted file mode 100644 index a4f07cdd..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +++ /dev/null @@ -1,47 +0,0 @@ -// -// $Id$ -// -// SPMySQLFastStreamingResult.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLFastStreamingResult : SPMySQLStreamingResult { - - // Linked list setup - struct st_spmysqlstreamingrowdata *currentDataStoreEntry; - struct st_spmysqlstreamingrowdata *lastDataStoreEntry; - - // Additional counts and memory length tracking - NSUInteger processedRowCount; - - // Thread safety - pthread_mutex_t dataLock; -} - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h deleted file mode 100644 index e1313032..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +++ /dev/null @@ -1,53 +0,0 @@ -// -// $Id$ -// -// SPMySQLGeometryData.h -// sequel-pro -// -// Created by Hans-Jörg Bibiko on October 07, 2010 -// -// 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 - - -@interface SPMySQLGeometryData : NSObject -{ - // Holds the WKB bytes coming from SQL server - Byte *geoBuffer; - - // Holds the buffer length - NSUInteger bufferLength; - -} - -- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length; -+ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length; -- (NSString *)description; -- (NSUInteger)length; -- (NSData *)data; -- (NSString *)wktString; -- (NSDictionary *)coordinates; -- (NSInteger)wkbType; -- (NSString *)wktType; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h deleted file mode 100644 index baddf8aa..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +++ /dev/null @@ -1,120 +0,0 @@ -// -// $Id$ -// -// SPMySQLResult.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 26, 2012 -// Copyright (c) 2012 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 - - -typedef enum { - SPMySQLResultFieldAsUnhandled = 0, - SPMySQLResultFieldAsString = 1, - SPMySQLResultFieldAsStringOrBlob = 2, - SPMySQLResultFieldAsBlob = 3, - SPMySQLResultFieldAsBit = 4, - SPMySQLResultFieldAsGeometry = 5, - SPMySQLResultFieldAsNull = 6 -} SPMySQLResultFieldProcessor; - -@interface SPMySQLResult : NSObject { - - // Wrapped MySQL result set and its encoding - struct st_mysql_res *resultSet; - NSStringEncoding stringEncoding; - - // Number of fields in the result set, and the field names and information - NSUInteger numberOfFields; - struct st_mysql_field *fieldDefinitions; - unsigned int *fieldTypes; - NSString **fieldNames; - - // Number of rows in the result set and an internal data position counter - unsigned long long numberOfRows; - unsigned long long currentRowIndex; - - // How long it took to execute the query that produced this result - double queryExecutionTime; - - // The target result set type for fast enumeration and unspecified row retrieval - SPMySQLResultRowType defaultRowReturnType; - - // Whether all data should be returned as strings - useful for working with some older server types - BOOL returnDataAsStrings; -} - -// Master init method -- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding; - -// Result set information -- (NSUInteger)numberOfFields; -- (unsigned long long)numberOfRows; - -// Column information -- (NSArray *)fieldNames; - -// Data retrieval (note that fast enumeration is also supported, using instance-default format) -- (void)seekToRow:(unsigned long long)targetRow; -- (id)getRow; -- (NSArray *)getRowAsArray; -- (NSDictionary *)getRowAsDictionary; -- (id)getRowAsType:(SPMySQLResultRowType)theType; - -// Data conversion -+ (NSString *)bitStringWithBytes:(const char *)bytes length:(NSUInteger)length padToLength:(NSUInteger)padLength; - -#pragma mark - -#pragma mark Synthesized properties - -/** - * Set whether the result should return data types as strings. This may be useful - * for queries where the result may be returned in either string or data form, but - * will be converted to string for display and use anyway. - * Note that certain MySQL versions also return data types for strings - eg SHOW - * commands like SHOW CREATE TABLE or SHOW VARIABLES, and this conversion can be - * necessary there. - */ -@property (readwrite, assign) BOOL returnDataAsStrings; - -@property (readwrite, assign) SPMySQLResultRowType defaultRowReturnType; - -@end - -/** - * Set up a static function to allow fast calling with cached selectors - */ -static inline id SPMySQLResultGetRow(SPMySQLResult* self, SPMySQLResultRowType rowType) -{ - typedef id (*SPMySQLResultGetRowMethodPtr)(SPMySQLResult*, SEL, SPMySQLResultRowType); - static SPMySQLResultGetRowMethodPtr cachedMethodPointer; - static SEL cachedSelector; - - if (!cachedSelector) cachedSelector = @selector(getRowAsType:); - if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetRowMethodPtr)[self methodForSelector:cachedSelector]; - - return cachedMethodPointer(self, cachedSelector, rowType); -} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h deleted file mode 100644 index 5abb85db..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +++ /dev/null @@ -1,54 +0,0 @@ -// -// $Id$ -// -// SPMySQLStreamingResult.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 18, 2012 -// Copyright (c) 2012 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 - -@interface SPMySQLStreamingResult : SPMySQLResult { - - // Keep a link to the parent connection for locking purposes - SPMySQLConnection *parentConnection; - - // Streaming result information and tracking - BOOL connectionUnlocked; - BOOL dataDownloaded; - - // Counts and memory length tracking - NSUInteger downloadedRowCount; - - IMP isConnectedPtr; - SEL isConnectedSelector; -} - -- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection; - -// Allow result fetching to be cancelled -- (void)cancelResultLoad; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h deleted file mode 100644 index d8f5f183..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +++ /dev/null @@ -1,50 +0,0 @@ -// -// $Id$ -// -// Server Info.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 -// Copyright (c) 2012 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 - -@class SPMySQLResult; - -@interface SPMySQLConnection (Server_Info) - -// Server version information -- (NSString *)serverVersionString; -- (NSUInteger)serverMajorVersion; -- (NSUInteger)serverMinorVersion; -- (NSUInteger)serverReleaseVersion; - -// Server version comparisons -- (BOOL)serverVersionIsGreaterThanOrEqualTo:(NSUInteger)aMajorVersion minorVersion:(NSUInteger)aMinorVersion releaseVersion:(NSUInteger)aReleaseVersion; - -// Server tasks & processes -- (SPMySQLResult *)listProcesses; -- (BOOL)killQueryOnThreadID:(unsigned long)theThreadID; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings deleted file mode 100644 index dea12de4..00000000 Binary files a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 6f7e4285..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,40 +0,0 @@ - - - - - BuildMachineOSBuild - 11D50b - CFBundleDevelopmentRegion - English - CFBundleExecutable - SPMySQL - CFBundleIdentifier - com.yourcompany.SPMySQL - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - SPMySQL - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - SPDT - CFBundleVersion - 1 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 10M2518 - DTPlatformVersion - PG - DTSDKBuild - 9L31a - DTSDKName - macosx10.5 - DTXcode - 0400 - DTXcodeBuild - 10M2518 - - diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL deleted file mode 100755 index 8b1d8803..00000000 Binary files a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL deleted file mode 120000 index 3a3ed2eb..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/SPMySQL \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h deleted file mode 100644 index 332b2680..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// $Id$ -// -// Databases & Tables.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 11, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Databases_and_Tables) - -// Database selection -- (BOOL)selectDatabase:(NSString *)aDatabase; - -// Database lists -- (NSArray *)databases; -- (NSArray *)databasesLike:(NSString *)nameLikeString; - -// Table lists -- (NSArray *)tables; -- (NSArray *)tablesLike:(NSString *)nameLikeString; -- (NSArray *)tablesFromDatabase:(NSString *)aDatabase; -- (NSArray *)tablesLike:(NSString *)nameLikeString fromDatabase:(NSString *)aDatabase; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h deleted file mode 100644 index cf132fcf..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// $Id$ -// -// Delegate & Proxy.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Delegate_and_Proxy) - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h deleted file mode 100644 index bb5bf25d..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +++ /dev/null @@ -1,53 +0,0 @@ -// -// $Id$ -// -// Encoding.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Encoding) - -// Current connection encoding information -- (NSString *)encoding; -- (NSStringEncoding)stringEncoding; -- (BOOL)encodingUsesLatin1Transport; - -// Setting connection encoding -- (BOOL)setEncoding:(NSString *)theEncoding; -- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1; - -// Encoding storage and restoration -- (void)storeEncodingForRestoration; -- (void)restoreStoredEncoding; - -// Encoding conversion -+ (NSStringEncoding)stringEncodingForMySQLCharset:(const char *)mysqlCharset; -+ (NSString *)mySQLCharsetForStringEncoding:(NSStringEncoding)aStringEncoding; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h deleted file mode 100644 index 20e1ddc9..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +++ /dev/null @@ -1,38 +0,0 @@ -// -// $Id$ -// -// Field Definitions.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLResult (Field_Definitions) - -- (NSArray *)fieldDefinitions; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h deleted file mode 100644 index faa667d8..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +++ /dev/null @@ -1,40 +0,0 @@ -// -// $Id$ -// -// Max Packet Size.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Max_Packet_Size) - -- (NSUInteger)maxQuerySize; -- (BOOL)isMaxQuerySizeEditable; -- (NSUInteger)setGlobalMaxQuerySize:(NSUInteger)newMaxSize; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h deleted file mode 100644 index ff55f796..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +++ /dev/null @@ -1,103 +0,0 @@ -// -// $Id$ -// -// Querying & Preparation.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLConnection (Querying_and_Preparation) - -// Data preparation -- (NSString *)escapeAndQuoteString:(NSString *)theString; -- (NSString *)escapeString:(NSString *)theString includingQuotes:(BOOL)includeQuotes; -- (NSString *)escapeAndQuoteData:(NSData *)theData; -- (NSString *)escapeData:(NSData *)theData includingQuotes:(BOOL)includeQuotes; - -// Queries -- (SPMySQLResult *)queryString:(NSString *)theQueryString; -- (SPMySQLFastStreamingResult *)streamingQueryString:(NSString *)theQueryString; -- (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming; -- (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType; - -// Query information -- (unsigned long long)rowsAffectedByLastQuery; -- (unsigned long long)lastInsertID; - -// Connection and query error state -- (BOOL)queryErrored; -- (NSString *)lastErrorMessage; -- (NSUInteger)lastErrorID; -+ (BOOL)isErrorIDConnectionError:(NSUInteger)theErrorID; - -// Query cancellation -- (void)cancelCurrentQuery; -- (BOOL)lastQueryWasCancelled; -- (BOOL)lastQueryWasCancelledUsingReconnect; - -@end - -/** - * Set up static functions to allow fast calling with cached selectors - */ - -static inline id SPMySQLConnectionEscapeString(SPMySQLConnection* self, NSString *theString, BOOL encloseInQuotes) -{ - typedef id (*SPMySQLConnectionEscapeStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, BOOL); - static SPMySQLConnectionEscapeStringMethodPtr cachedMethodPointer; - static SEL cachedSelector; - - if (!cachedSelector) cachedSelector = @selector(escapeString:includingQuotes:); - if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeStringMethodPtr)[self methodForSelector:cachedSelector]; - - return cachedMethodPointer(self, cachedSelector, theString, encloseInQuotes); -} - -static inline id SPMySQLConnectionEscapeData(SPMySQLConnection* self, NSData *theData, BOOL encloseInQuotes) -{ - typedef id (*SPMySQLConnectionEscapeDataMethodPtr)(SPMySQLConnection*, SEL, NSData *, BOOL); - static SPMySQLConnectionEscapeDataMethodPtr cachedMethodPointer; - static SEL cachedSelector; - - if (!cachedSelector) cachedSelector = @selector(escapeData:includingQuotes:); - if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeDataMethodPtr)[self methodForSelector:cachedSelector]; - - return cachedMethodPointer(self, cachedSelector, theData, encloseInQuotes); -} - -static inline id SPMySQLConnectionQueryString(SPMySQLConnection* self, NSString *theQueryString, NSStringEncoding theEncoding, SPMySQLResultType theReturnType) -{ - typedef id (*SPMySQLConnectionQueryStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, NSStringEncoding, SPMySQLResultType); - static SPMySQLConnectionQueryStringMethodPtr cachedMethodPointer; - static SEL cachedSelector; - - if (!cachedSelector) cachedSelector = @selector(queryString:usingEncoding:withResultType:); - if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionQueryStringMethodPtr)[self methodForSelector:cachedSelector]; - - return cachedMethodPointer(self, cachedSelector, theQueryString, theEncoding, theReturnType); -} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h deleted file mode 100644 index a9150f46..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +++ /dev/null @@ -1,62 +0,0 @@ -// -// $Id$ -// -// SPMySQL.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 -// Copyright (c) 2012 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 - -@class SPMySQLConnection, SPMySQLResult, SPMySQLStreamingResult, SPMySQLFastStreamingResult; - -// Global include file for the framework. -// Constants -#import "SPMySQLConstants.h" - -// Required category additions -#import "SPMySQLStringAdditions.h" - -// MySQL Connection Delegate and Proxy protocols -#import "SPMySQLConnectionDelegate.h" -#import "SPMySQLConnectionProxy.h" - -// MySQL Connection class and public categories -#import "SPMySQLConnection.h" -#import "Delegate & Proxy.h" -#import "Databases & Tables.h" -#import "Max Packet Size.h" -#import "Querying & Preparation.h" -#import "Encoding.h" -#import "Server Info.h" - -// MySQL result set, streaming subclasses of same, and associated categories -#import "SPMySQLResult.h" -#import "SPMySQLStreamingResult.h" -#import "SPMySQLFastStreamingResult.h" -#import "Field Definitions.h" - -// Result data objects -#import "SPMySQLGeometryData.h" \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h deleted file mode 100644 index db6dc0af..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +++ /dev/null @@ -1,177 +0,0 @@ -// -// $Id$ -// -// SPMySQLConnection.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 8, 2012 -// Copyright (c) 2012 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 - -@interface SPMySQLConnection : NSObject { - - // Delegate - NSObject *delegate; - BOOL delegateSupportsWillQueryString; - BOOL delegateSupportsConnectionLost; - BOOL delegateQueryLogging; // Defaults to YES if protocol implemented - - // Basic connection details - NSString *host; - NSString *username; - NSString *password; - NSUInteger port; - BOOL useSocket; - NSString *socketPath; - - // SSL connection details - BOOL useSSL; - NSString *sslKeyFilePath; - NSString *sslCertificatePath; - NSString *sslCACertificatePath; - - // MySQL connection details and state - struct st_mysql *mySQLConnection; - SPMySQLConnectionState state; - BOOL connectedWithSSL; - BOOL userTriggeredDisconnect; - BOOL isReconnecting; - uint64_t initialConnectTime; - unsigned long mysqlConnectionThreadId; - - // Connection proxy - NSObject *proxy; - SPMySQLConnectionProxyState previousProxyState; - BOOL proxyStateChangeNotificationsIgnored; - - // Connection lock to prevent non-thread-safe query misuse - NSConditionLock *connectionLock; - - // Currently selected database - NSString *database; - - // Delegate connection lost decisions - NSUInteger reconnectionRetryAttempts; - SPMySQLConnectionLostDecision lastDelegateDecisionForLostConnection; - NSLock *delegateDecisionLock; - - // Timeout and keep-alive - NSUInteger timeout; - BOOL useKeepAlive; - NSTimer *keepAliveTimer; - CGFloat keepAliveInterval; - uint64_t lastKeepAliveTime; - NSUInteger keepAlivePingFailures; - pthread_t keepAlivePingThread; - BOOL keepAlivePingThreadActive; - BOOL keepAliveLastPingSuccess; - BOOL keepAliveLastPingBlocked; - - // Encoding details - and also a record of any previous encoding to allow - // switching back and forth - NSString *encoding; - NSStringEncoding stringEncoding; - BOOL encodingUsesLatin1Transport; - NSString *previousEncoding; - BOOL previousEncodingUsesLatin1Transport; - - // Server details - NSString *serverVersionString; - - // Error state for the last query or connection state - NSUInteger queryErrorID; - NSString *queryErrorMessage; - - // Query details - unsigned long long lastQueryAffectedRowCount; - unsigned long long lastQueryInsertID; - - // Query cancellation details - BOOL lastQueryWasCancelled; - BOOL lastQueryWasCancelledUsingReconnect; - - // Timing details - uint64_t lastConnectionUsedTime; - double lastQueryExecutionTime; - - // Maximum query size - NSUInteger maxQuerySize; - BOOL maxQuerySizeIsEditable; - BOOL maxQuerySizeEditabilityChecked; - NSUInteger queryActionShouldRestoreMaxQuerySize; - - // Queries - BOOL retryQueriesOnConnectionFailure; -} - -#pragma mark - -#pragma mark Synthesized properties - -@property (readwrite, assign, nonatomic) NSObject *delegate; -@property (readwrite, assign, nonatomic) NSObject *proxy; - -@property (readwrite, retain) NSString *host; -@property (readwrite, retain) NSString *username; -@property (readwrite, retain) NSString *password; -@property (readwrite, assign) NSUInteger port; -@property (readwrite, assign) BOOL useSocket; -@property (readwrite, retain) NSString *socketPath; - -@property (readwrite, assign) BOOL useSSL; -@property (readwrite, retain) NSString *sslKeyFilePath; -@property (readwrite, retain) NSString *sslCertificatePath; -@property (readwrite, retain) NSString *sslCACertificatePath; - -@property (readwrite, assign) NSUInteger timeout; -@property (readwrite, assign) BOOL useKeepAlive; -@property (readwrite, assign) CGFloat keepAliveInterval; - -@property (readonly) unsigned long mysqlConnectionThreadId; -@property (readwrite, assign) BOOL retryQueriesOnConnectionFailure; - -@property (readwrite, assign) BOOL delegateQueryLogging; - -#pragma mark - -#pragma mark Connection and disconnection - -- (BOOL)connect; -- (BOOL)reconnect; -- (void)disconnect; - -#pragma mark - -#pragma mark Connection state - -- (BOOL)isConnected; -- (BOOL)isConnectedViaSSL; -- (BOOL)checkConnection; -- (double)timeConnected; -- (BOOL)userTriggeredDisconnect; - -#pragma mark - -#pragma mark Connection utility - -+ (NSString *)findSocketPath; - -@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h deleted file mode 100644 index f1a1f911..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +++ /dev/null @@ -1,106 +0,0 @@ -// -// $Id$ -// -// SPMySQLConnectionDelegate.h -// SPMySQLFramework -// -// Created by Stuart Connolly (stuconnolly.com) on October 20, 2010. -// Copyright (c) 2010 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 - -@protocol SPMySQLConnectionDelegate -@optional - -/** - * Notifies the delegate that a query will be performed. - * - * @param query The query string that will be sent to the MySQL server - * @param connection The connection instance performing the query - */ -- (void)willQueryString:(NSString *)query connection:(id)connection; - -/** - * Notifies the delegate that a query that was just performed gave - * an error. - * - * @param error The query error, as a string - * @param connection The connection instance which received the error - */ -- (void)queryGaveError:(NSString *)error connection:(id)connection; - -/** - * Notifies the delegate that it should display the supplied error. - * The connection may sometimes want to notify the user directly - * about certain issues, and will use this method to allow the - * delegate to do so. - * - * @param title The title of the message to display to the user - * @param message The main text of the message to display to the user - */ -- (void)showErrorWithTitle:(NSString *)title message:(NSString *)message; - -/** - * Requests the keychain password for the connection. - * When a connection is being made to a server, it is best not to - * set the password on the class; instead, it should be kept within - * the secure store, and the other connection details (user, host) - * can be used to look it up and supplied on demand. - * - * @param connection The connection instance to supply the password for - */ -- (NSString *)keychainPasswordForConnection:(id)connection; - -/** - * Notifies the delegate that no underlying connection is available, - * typically when the connection has been asked to perform a query - * or some other action for which a connection must be present. - * Those actions will still return false or error states as appropriate, - * but the delegate may wish to perform actions as a result of a total - * loss of connection. - * - * @param connection The connection instance which has lost the connection to the host - */ -- (void)noConnectionAvailable:(id)connection; - -/** - * Notifies the delegate that although a SSL connection was requested, - * MySQL made the connection without using SSL. This can happen because - * the server connected to doesn't support SSL or had it disabled, or - * that insufficient details were provided to make the connection over - * SSL. - */ -- (void)connectionFellBackToNonSSL:(id)connection; - -/** - * Notifies the delegate that the connection has been temporarily lost, - * and asks the delegate for guidance on how to proceed. If the delegate - * does not implement this method, reconnections will automatically be - * attempted - up to a small limit of attempts. - * - * @param connection The connection instance that requires a decision on how to proceed - */ -- (SPMySQLConnectionLostDecision)connectionLost:(id)connection; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h deleted file mode 100644 index afd7c95a..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +++ /dev/null @@ -1,77 +0,0 @@ -// -// $Id$ -// -// SPMySQLConnectionProxy.h -// SPMySQLFramework -// -// Created by Stuart Connolly (stuconnolly.com) on July 2, 2009. -// Copyright (c) 2009 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 - - -/** - * Connection proxy state constants. - */ -typedef enum { - SPMySQLProxyIdle = 0, - SPMySQLProxyConnecting = 1, - SPMySQLProxyWaitingForAuth = 2, - SPMySQLProxyConnected = 3, - SPMySQLProxyForwardingFailed = 4 -} SPMySQLConnectionProxyState; - - -@protocol SPMySQLConnectionProxy - -/** - * All the methods for this protocol are required. - */ - -/** - * Connect the proxy. - */ -- (void)connect; - -/** - * Disconnect the proxy. - */ -- (void)disconnect; - -/** - * Get the current state of the proxy. - */ -- (SPMySQLConnectionProxyState)state; - -/** - * Get the local port being provided by the proxy. - */ -- (NSUInteger)localPort; - -/** - * Sets the method the proxy should call whenever the state of the connection changes. - */ -- (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; - -@end \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h deleted file mode 100644 index 6fb3d279..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +++ /dev/null @@ -1,76 +0,0 @@ -// -// $Id$ -// -// SPMySQLConstants.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 -// Copyright (c) 2012 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 - - -// Connection state -typedef enum { - SPMySQLDisconnected = 0, - SPMySQLConnecting = 1, - SPMySQLConnected = 2, - SPMySQLDisconnecting = 3 -} SPMySQLConnectionState; - -// Connection lock state -typedef enum { - SPMySQLConnectionIdle = 0, - SPMySQLConnectionBusy = 1 -} SPMySQLConnectionLockState; - -// Decision on how to handle lost connections -// Connection check constants -typedef enum { - SPMySQLConnectionLostDisconnect = 0, - SPMySQLConnectionLostReconnect = 1 -} SPMySQLConnectionLostDecision; - -// Result set row types -typedef enum { - SPMySQLResultRowAsDefault = 0, - SPMySQLResultRowAsArray = 1, - SPMySQLResultRowAsDictionary = 2 -} SPMySQLResultRowType; - -// Result charset list -typedef struct { - NSUInteger nr; - const char *name; - const char *collation; - NSUInteger char_minlen; - NSUInteger char_maxlen; -} SPMySQLResultCharset; - -// Query result types -typedef enum { - SPMySQLResultAsResult = 0, - SPMySQLResultAsFastStreamingResult = 1, - SPMySQLResultAsLowMemStreamingResult = 2 -} SPMySQLResultType; \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h deleted file mode 100644 index a4f07cdd..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +++ /dev/null @@ -1,47 +0,0 @@ -// -// $Id$ -// -// SPMySQLFastStreamingResult.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 -// Copyright (c) 2012 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 - - -@interface SPMySQLFastStreamingResult : SPMySQLStreamingResult { - - // Linked list setup - struct st_spmysqlstreamingrowdata *currentDataStoreEntry; - struct st_spmysqlstreamingrowdata *lastDataStoreEntry; - - // Additional counts and memory length tracking - NSUInteger processedRowCount; - - // Thread safety - pthread_mutex_t dataLock; -} - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h deleted file mode 100644 index e1313032..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +++ /dev/null @@ -1,53 +0,0 @@ -// -// $Id$ -// -// SPMySQLGeometryData.h -// sequel-pro -// -// Created by Hans-Jörg Bibiko on October 07, 2010 -// -// 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 - - -@interface SPMySQLGeometryData : NSObject -{ - // Holds the WKB bytes coming from SQL server - Byte *geoBuffer; - - // Holds the buffer length - NSUInteger bufferLength; - -} - -- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length; -+ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length; -- (NSString *)description; -- (NSUInteger)length; -- (NSData *)data; -- (NSString *)wktString; -- (NSDictionary *)coordinates; -- (NSInteger)wkbType; -- (NSString *)wktType; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h deleted file mode 100644 index baddf8aa..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +++ /dev/null @@ -1,120 +0,0 @@ -// -// $Id$ -// -// SPMySQLResult.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 26, 2012 -// Copyright (c) 2012 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 - - -typedef enum { - SPMySQLResultFieldAsUnhandled = 0, - SPMySQLResultFieldAsString = 1, - SPMySQLResultFieldAsStringOrBlob = 2, - SPMySQLResultFieldAsBlob = 3, - SPMySQLResultFieldAsBit = 4, - SPMySQLResultFieldAsGeometry = 5, - SPMySQLResultFieldAsNull = 6 -} SPMySQLResultFieldProcessor; - -@interface SPMySQLResult : NSObject { - - // Wrapped MySQL result set and its encoding - struct st_mysql_res *resultSet; - NSStringEncoding stringEncoding; - - // Number of fields in the result set, and the field names and information - NSUInteger numberOfFields; - struct st_mysql_field *fieldDefinitions; - unsigned int *fieldTypes; - NSString **fieldNames; - - // Number of rows in the result set and an internal data position counter - unsigned long long numberOfRows; - unsigned long long currentRowIndex; - - // How long it took to execute the query that produced this result - double queryExecutionTime; - - // The target result set type for fast enumeration and unspecified row retrieval - SPMySQLResultRowType defaultRowReturnType; - - // Whether all data should be returned as strings - useful for working with some older server types - BOOL returnDataAsStrings; -} - -// Master init method -- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding; - -// Result set information -- (NSUInteger)numberOfFields; -- (unsigned long long)numberOfRows; - -// Column information -- (NSArray *)fieldNames; - -// Data retrieval (note that fast enumeration is also supported, using instance-default format) -- (void)seekToRow:(unsigned long long)targetRow; -- (id)getRow; -- (NSArray *)getRowAsArray; -- (NSDictionary *)getRowAsDictionary; -- (id)getRowAsType:(SPMySQLResultRowType)theType; - -// Data conversion -+ (NSString *)bitStringWithBytes:(const char *)bytes length:(NSUInteger)length padToLength:(NSUInteger)padLength; - -#pragma mark - -#pragma mark Synthesized properties - -/** - * Set whether the result should return data types as strings. This may be useful - * for queries where the result may be returned in either string or data form, but - * will be converted to string for display and use anyway. - * Note that certain MySQL versions also return data types for strings - eg SHOW - * commands like SHOW CREATE TABLE or SHOW VARIABLES, and this conversion can be - * necessary there. - */ -@property (readwrite, assign) BOOL returnDataAsStrings; - -@property (readwrite, assign) SPMySQLResultRowType defaultRowReturnType; - -@end - -/** - * Set up a static function to allow fast calling with cached selectors - */ -static inline id SPMySQLResultGetRow(SPMySQLResult* self, SPMySQLResultRowType rowType) -{ - typedef id (*SPMySQLResultGetRowMethodPtr)(SPMySQLResult*, SEL, SPMySQLResultRowType); - static SPMySQLResultGetRowMethodPtr cachedMethodPointer; - static SEL cachedSelector; - - if (!cachedSelector) cachedSelector = @selector(getRowAsType:); - if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetRowMethodPtr)[self methodForSelector:cachedSelector]; - - return cachedMethodPointer(self, cachedSelector, rowType); -} \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h deleted file mode 100644 index 5abb85db..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +++ /dev/null @@ -1,54 +0,0 @@ -// -// $Id$ -// -// SPMySQLStreamingResult.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on February 18, 2012 -// Copyright (c) 2012 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 - -@interface SPMySQLStreamingResult : SPMySQLResult { - - // Keep a link to the parent connection for locking purposes - SPMySQLConnection *parentConnection; - - // Streaming result information and tracking - BOOL connectionUnlocked; - BOOL dataDownloaded; - - // Counts and memory length tracking - NSUInteger downloadedRowCount; - - IMP isConnectedPtr; - SEL isConnectedSelector; -} - -- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection; - -// Allow result fetching to be cancelled -- (void)cancelResultLoad; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h deleted file mode 100644 index d8f5f183..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +++ /dev/null @@ -1,50 +0,0 @@ -// -// $Id$ -// -// Server Info.h -// SPMySQLFramework -// -// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 -// Copyright (c) 2012 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 - -@class SPMySQLResult; - -@interface SPMySQLConnection (Server_Info) - -// Server version information -- (NSString *)serverVersionString; -- (NSUInteger)serverMajorVersion; -- (NSUInteger)serverMinorVersion; -- (NSUInteger)serverReleaseVersion; - -// Server version comparisons -- (BOOL)serverVersionIsGreaterThanOrEqualTo:(NSUInteger)aMajorVersion minorVersion:(NSUInteger)aMinorVersion releaseVersion:(NSUInteger)aReleaseVersion; - -// Server tasks & processes -- (SPMySQLResult *)listProcesses; -- (BOOL)killQueryOnThreadID:(unsigned long)theThreadID; - -@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings deleted file mode 100644 index dea12de4..00000000 Binary files a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 6f7e4285..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,40 +0,0 @@ - - - - - BuildMachineOSBuild - 11D50b - CFBundleDevelopmentRegion - English - CFBundleExecutable - SPMySQL - CFBundleIdentifier - com.yourcompany.SPMySQL - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - SPMySQL - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - SPDT - CFBundleVersion - 1 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 10M2518 - DTPlatformVersion - PG - DTSDKBuild - 9L31a - DTSDKName - macosx10.5 - DTXcode - 0400 - DTXcodeBuild - 10M2518 - - diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL deleted file mode 100755 index d5483d58..00000000 Binary files a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList deleted file mode 100644 index 0fdb1c0e..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +++ /dev/null @@ -1,16 +0,0 @@ -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap deleted file mode 100644 index f028255b..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap deleted file mode 100644 index dd8b535d..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap deleted file mode 100644 index 25d939d3..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap deleted file mode 100644 index 0a13ebeb..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep deleted file mode 100644 index a6f3b885..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep +++ /dev/null @@ -1,142 +0,0 @@ -bfccb90c7f200b83b17548b171dbd469 933ae9c74099be8debbfc5d567fbd48a ffffffffffffffffffffffffffffffff 34248 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -bfccb90c7f244c43b17548b171dbee31 e5ccc2835d553ee38ceb427543e98bb6 ffffffffffffffffffffffffffffffff 34140 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -bfccb90c7f29e0d5b17548b171dbd9ed fb0bb8203d87fa2b2131aa6bc0c28905 ffffffffffffffffffffffffffffffff 24624 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -bfccb90c7f243963b17548b171dbd283 9f8998a1e16460e4deec20c7b93c356e ffffffffffffffffffffffffffffffff 30768 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -bfccb90c7f2fe4bdb17548b171dbc5e5 8010ec6966c027952c3ed2c59e2c96d0 ffffffffffffffffffffffffffffffff 6036 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -bfccb90c7f2fe528b17548b171db86d5 d09b32df5e7edc58c2f512812b6965e8 ffffffffffffffffffffffffffffffff 59112 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -bfccb90c389b2d11b17548b171dbc719 77eaf425d3bafda93536c3e4b81e4479 ffffffffffffffffffffffffffffffff 42980 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -bfccb90c7f209939b17548b171dba71b 53dad33ac0c2ca1b7840b841601f530a ffffffffffffffffffffffffffffffff 63796 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -bfccb90c7f2148cab17548b171dbe725 08cd3ef9f3b090cfc6a6cd070eb19e49 ffffffffffffffffffffffffffffffff 49520 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -bfccb90c7f2dc9ddb17548b171dbc6f9 6ce6921f244c4cc07f000826eaf2dbf1 ffffffffffffffffffffffffffffffff 20816 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -bfccb90c7f5c3b2bb17548b171db8cd7 3984d7d28d2435aecafa55b67ef7cb27 ffffffffffffffffffffffffffffffff 64388 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -bfccb90c7f2fe526b17548b171dbcf53 69345072b559af1f459c83b2779a1449 ffffffffffffffffffffffffffffffff 22568 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -bfccb90c7f25fa58b17548b171dbdc0b 002192fc0ad1c3b1db6abfd2d0e2d6fc ffffffffffffffffffffffffffffffff 28960 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -bfccb90c7f28e52ab17548b171dbf53e e0e9bc5c2012a1f028185b0d1e5b179b ffffffffffffffffffffffffffffffff 44580 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -bfccb90c77d5f1bdb17548b171dbef3c 918a21e657ce491693d00e813222d89d ffffffffffffffffffffffffffffffff 29492 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -bfccb90c778813d3b17548b171dbbfbf ddb4f8d583f0f73cccd92a8c04c17049 ffffffffffffffffffffffffffffffff 108200 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -eaf153e6229fc2378cc6a8badfc8050e a2fd1bbaf2ef08936f05aa12656c6a9a ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current -fea22eb9f115a2cda18f651a259bd66d 6eb3521f53ab5d671d39a6a72dffd716 ffffffffffffffffffffffffffffffff 1249328 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -000000004837395c000000000000f9fd bfccb90c3718dc7db17548b171db31f5 ffffffffffffffffffffffffffffffff 9980224 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist -97ed352a49a6a94d07af5db2313dde0a 904c42cca8bbacd460ce61ab74e6a316 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist -97ed352a49a6a94d07af5db2313dde0a bbc74268ff442548d89937c723411285 ffffffffffffffffffffffffffffffff 33864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -97ed352a49a2ee8d07af5db2313de452 426e5970643b97eed9fbfa5874723d2d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist -97ed352a49a2ee8d07af5db2313de452 323d82a4a44e2a050f225a99e8ea0865 ffffffffffffffffffffffffffffffff 33788 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -97ed352a49af421b07af5db2313dd38e 9dfae2aa0f34c82bac2ce2b15be1713f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist -97ed352a49af421b07af5db2313dd38e 06591bc0e6e2ce39cf7fe200094b6d40 ffffffffffffffffffffffffffffffff 24288 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -97ed352a49a29bad07af5db2313dd8e0 acbe091e17ac14c880f32cebc3c99c56 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist -97ed352a49a29bad07af5db2313dd8e0 23a5e8c8ccd6987bb670c9dd93dadb63 ffffffffffffffffffffffffffffffff 30400 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -97ed352a49a9467307af5db2313dcf86 f47214968fe74fa8c4fc1b3936880f54 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist -97ed352a49a9467307af5db2313dcf86 e93102bb17c12255f9bb731b021d3093 ffffffffffffffffffffffffffffffff 5924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -97ed352a49a947e607af5db2313d8cb6 dd21d8cfe0c7619ec81a7b95328ddbfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist -97ed352a49a947e607af5db2313d8cb6 d27000fc8ea7e6d7a0a247e2f3f567a0 ffffffffffffffffffffffffffffffff 58808 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -97ed352a0e1d8fdf07af5db2313dcd7a 0e7f0eef19493081ac093465e6b4eb61 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist -97ed352a0e1d8fdf07af5db2313dcd7a a3d9c51ac90ed92f195e55c260805b36 ffffffffffffffffffffffffffffffff 42516 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -97ed352a49a63bf707af5db2313dad78 cce22274caac57d80e09869951843fea ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist -97ed352a49a63bf707af5db2313dad78 e91187e4bb4a0638a717eb77174b427d ffffffffffffffffffffffffffffffff 63652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -97ed352a49a7ea0407af5db2313ded46 e59155e9589dad20b83a7d8e0c6a617f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist -97ed352a49a7ea0407af5db2313ded46 e400afe900818bd5024e2910d446e062 ffffffffffffffffffffffffffffffff 49184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -97ed352a49ab6b1307af5db2313dcc9a 9febb4e9bab24322a7ced49c03f6cfe8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist -97ed352a49ab6b1307af5db2313dcc9a 91b911f6ae16d5996d2d3ca2160500cd ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -97ed352a49da99e507af5db2313d86b4 afb097bb7357a117f28aeb84b48cd60d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist -97ed352a49da99e507af5db2313d86b4 6f5109f42865bf639aca44a6d762fbb9 ffffffffffffffffffffffffffffffff 63876 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -97ed352a49a947e807af5db2313dc530 5f2085563a2275e2ea698128df9a10c5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist -97ed352a49a947e807af5db2313dc530 48cba2565dae3faf3d36ad3bd4948a1f ffffffffffffffffffffffffffffffff 22200 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -97ed352a49a3589607af5db2313dd668 25f24cbb6a9974f0427d9e417f7d17e8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist -97ed352a49a3589607af5db2313dd668 d9b9ecf071d61915ab2de6f3dbbf046b ffffffffffffffffffffffffffffffff 28608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -97ed352a49ae47e407af5db2313dff5d 912c373dc4f733d10a4f86ad39db0bfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist -97ed352a49ae47e407af5db2313dff5d e522823ea2fc90a03f942a8b80a32b35 ffffffffffffffffffffffffffffffff 44260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -97ed352a4153537307af5db2313de55f 733fcef9f29480f98e08536a9f396cb8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist -97ed352a4153537307af5db2313de55f 23c1edaccf2208ed07e8b73f3afac370 ffffffffffffffffffffffffffffffff 29108 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -97ed352a410eb11d07af5db2313db5dc 9c9b56d66d88e294fb3ae0556f7bb07c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist -97ed352a410eb11d07af5db2313db5dc d17dd1432f412a64842773bbeb22123d ffffffffffffffffffffffffffffffff 107800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -a8fcbae79f9cb191a6ec59a1c5ef9957 e5181f3ad952ff2a59a8fb57a1efef37 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework -00000000000000000000000000000000 0ed285a755a38324fb8da2170ca27636 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL -8fbe42787cc9a9cb07e75306104bdb3f c91124ca1ac6dcd80255573bd082f744 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers -00000000000000000000000000000000 371146bb0cb218909ab14c322830ed8c ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources -00000000000000000000000000000000 8fbe42787cc9a9cb07e75306104bdb3f ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current -418b34e17889d9e0960d381c9c2fafb5 e778a712dd264702d943b93c00dfa766 ffffffffffffffffffffffffffffffff 1248152 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -000000004837395c000000000000f9fd 97ed352a019e7eb307af5db2313d3b96 ffffffffffffffffffffffffffffffff 9978580 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth -000000004f0a19cd0000000000000030 648a2e7e4c968528920e64f89b4fc1ca ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 5fc3356be24eacde1cfecb3f9f4e5381 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -00000000000000000000000000000000 29bfc1397c9d02b8f4513573ebea3c53 ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -00000000000000000000000000000000 d0acad63de3ba60bb27c3ccf14037ca2 ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -00000000000000000000000000000000 4361824f80357621224c79328668d12e ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -00000000000000000000000000000000 3f0fbeb73572afdfb3e9305f28931754 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -00000000000000000000000000000000 b57b0b56642577a573ee0ebc4d18264e ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -00000000000000000000000000000000 1abb5348761b437e2de51f911679dc5b ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -00000000000000000000000000000000 d72089d808bc6c33554f33e5ea0c4091 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -00000000000000000000000000000000 5792d681d8f8b1edb09032465940c0f9 ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -00000000000000000000000000000000 d4181024d7e9b57cc86dc952286aaad2 ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -ffffffffffffffffffffffffffffffff d82a742f74a969d3c56e2c49abb32e43 ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -00000000000000000000000000000000 a30231cac98bc135e8ad5fe94127616a ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h -00000000000000000000000000000000 59598d4d8a1d420b986426bbbb16495b ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h -00000000000000000000000000000000 57f8ebde6e755030c0d927db45f2b960 ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -00000000000000000000000000000000 2aa50f4b6a585d513b8a794bb3a35c64 ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 fb76ffe06859757724e0042f205adb09 ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 9a57e0bc7a78f4fa18c5056736403c80 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist -ffffffffffffffffffffffffffffffff 0a0da9e8e9d2908364525668b9b54368 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist -ffffffffffffffffffffffffffffffff 0f59b1e9cef55fc4b9b09a9e54b9f9cb ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h -000000000776121c000000000000e579 7b09425fbd720e3866d21e7f5753029a ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth -3d58d07c2b841e7f2475a51c25b54e53 6f16defa9a93fab74a3078f76842c846 ffffffffffffffffffffffffffffffff 27352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -3d58d07c2b89b2e92475a51c25b5798f c789376a33d74b31c109f358f081f00c ffffffffffffffffffffffffffffffff 20220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -3d58d07c2b846b5f2475a51c25b572e1 37eb025f97b792b3c5fd42a6976f2464 ffffffffffffffffffffffffffffffff 24800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -3d58d07c2b8c93482475a51c25b56029 5cbbb9afc5933df8e3fe00cfae957b6f ffffffffffffffffffffffffffffffff 4644 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -3d58d07c2b8c92dd2475a51c25b52319 a07add3b5ca8fddf7f01eb12ef115c34 ffffffffffffffffffffffffffffffff 42740 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -3d58d07c2b8da2fe2475a51c25b5637a 6d7a10b1a20f8e8ada105e98a0a53008 ffffffffffffffffffffffffffffffff 18328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -3d58d07c2b83eecc2475a51c25b502d7 5524997a54b87b7e8e2ec41d34426544 ffffffffffffffffffffffffffffffff 52104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -3d58d07c2b80ec6a2475a51c25b54fbf 218ac08579f773fbf66f7c0fb941360a ffffffffffffffffffffffffffffffff 34100 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -3d58d07c2b8d9be12475a51c25b5669b b00f96b3d1e57c2edb95f8897fdd7259 ffffffffffffffffffffffffffffffff 18212 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o -3d58d07c2b80eb8d2475a51c25b53837 ca60464e1b52fe332b9bc192bb853e1f ffffffffffffffffffffffffffffffff 40348 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -3d58d07c2b8c92d32475a51c25b56a9f bbd03ad5d90f4886fa08af3be283eaf3 ffffffffffffffffffffffffffffffff 19884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -3d58d07c2b85a8642475a51c25b57c69 5361bb5fcc169776180c35b38c4a8c0a ffffffffffffffffffffffffffffffff 24188 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -3d58d07c2b8b92df2475a51c25b550f2 048c46a1a00d4ad9ad0cc9eeb5b594dc ffffffffffffffffffffffffffffffff 37304 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -3d58d07c2305914e2475a51c25b54b12 aca21aef843ade78b6801add87935c4f ffffffffffffffffffffffffffffffff 24544 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -3d58d07c23553f9a2475a51c25b51cdd cc41a4d5d09ffbffc891383428fb8791 ffffffffffffffffffffffffffffffff 73428 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -b188bf85654b2071950829d6f6307108 717c3aa2094983d7f791e200510d5898 ffffffffffffffffffffffffffffffff 1044140 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -000000000776121c000000000000e579 3d58d07c2cfa80c82475a51c25b588bd ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth -75bfc4d1f0a667ad88fc306ccd92293a aeebb105ec26b3a5eb6ed16c4999bf15 ffffffffffffffffffffffffffffffff 1221296 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -ffffffffffffffffffffffffffffffff 3e7f48f4ccc823a7a6c1c4ed8056f183 ffffffffffffffffffffffffffffffff 9956412 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -3e7f48f4c43be2dda6c1c4ed80561a74 d561662265f8e28104035a5302a00117 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o -00000000000000000000000000000000 80b779573f1ad09d55281bbb3fc0b042 ffffffffffffffffffffffffffffffff 1013 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth -0000000040a8b43d000000000000fba5 0423a29a9f16bcd8725e9213ccf357aa ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth -3e7f48f4c37c2a75a6c1c4ed805606af 1efba746a07fefd105886c67477cc9b3 ffffffffffffffffffffffffffffffff 18412 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o -00000000000000000000000000000000 7e7978f51d62be2f302ef1bcb951d430 ffffffffffffffffffffffffffffffff 9938712 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff 09eed1489fdfceb6465e9187c6b401e6 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o -00000000000000000000000000000000 dea5feeb14c8a5d3c0e5be8bcc322f9e ffffffffffffffffffffffffffffffff 1041 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h -ffffffffffffffffffffffffffffffff 7d0bbb769ec08769af74fee98fc0e2b6 ffffffffffffffffffffffffffffffff 9934372 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking -000000000f84a230000000000000f598 344e22b0555e09e65eaa7db7e7413ec2 ffffffffffffffffffffffffffffffff 9932416 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -3b7002f7ae1d5db27080ce68df8a93ff 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -b502fadbe8071bec9867a7fabad552ac f49b78ae92e67fcc62b1e2cee6ba8197 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep deleted file mode 100644 index b1de04a1..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep +++ /dev/null @@ -1,101 +0,0 @@ -a8fcbae79fe2b607a6ec59a1c5ef9972 e5181f3ad952ff2a59a8fb57a1efef37 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework -00000000000000000000000000000000 0ed285a755a38324fb8da2170ca27636 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL -8fbe42787cc9a9cb07e75306104bdb3f c91124ca1ac6dcd80255573bd082f744 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers -00000000000000000000000000000000 371146bb0cb218909ab14c322830ed8c ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources -418b34e178f7de76960d381c9c2faf90 e778a712dd264702d943b93c00dfa766 ffffffffffffffffffffffffffffffff 1248184 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -000000004f0a19cd0000000000000030 648a2e7e4c968528920e64f89b4fc1ca ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 5fc3356be24eacde1cfecb3f9f4e5381 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -00000000000000000000000000000000 29bfc1397c9d02b8f4513573ebea3c53 ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -00000000000000000000000000000000 d0acad63de3ba60bb27c3ccf14037ca2 ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -00000000000000000000000000000000 4361824f80357621224c79328668d12e ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -00000000000000000000000000000000 3f0fbeb73572afdfb3e9305f28931754 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -00000000000000000000000000000000 b57b0b56642577a573ee0ebc4d18264e ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -00000000000000000000000000000000 1abb5348761b437e2de51f911679dc5b ffffffffffffffffffffffffffffffff 1896 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -00000000000000000000000000000000 d72089d808bc6c33554f33e5ea0c4091 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -00000000000000000000000000000000 5792d681d8f8b1edb09032465940c0f9 ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -00000000000000000000000000000000 d4181024d7e9b57cc86dc952286aaad2 ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -00000000000000000000000000000000 d82a742f74a969d3c56e2c49abb32e43 ffffffffffffffffffffffffffffffff 2190 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -00000000000000000000000000000000 a30231cac98bc135e8ad5fe94127616a ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h -00000000000000000000000000000000 59598d4d8a1d420b986426bbbb16495b ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h -00000000000000000000000000000000 57f8ebde6e755030c0d927db45f2b960 ffffffffffffffffffffffffffffffff 4518 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -00000000000000000000000000000000 2aa50f4b6a585d513b8a794bb3a35c64 ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 fb76ffe06859757724e0042f205adb09 ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 9a57e0bc7a78f4fa18c5056736403c80 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist -97ed352a49a58eb407af5db2313dddaa bbc74268ff442548d89937c723411285 ffffffffffffffffffffffffffffffff 31548 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -97ed352a49a0dcfc07af5db2313de58e 323d82a4a44e2a050f225a99e8ea0865 ffffffffffffffffffffffffffffffff 33788 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -97ed352a49ad706a07af5db2313dd252 06591bc0e6e2ce39cf7fe200094b6d40 ffffffffffffffffffffffffffffffff 24288 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -97ed352a49a0a9dc07af5db2313dd93c 23a5e8c8ccd6987bb670c9dd93dadb63 ffffffffffffffffffffffffffffffff 30400 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -97ed352a49ab740207af5db2313dce5a e93102bb17c12255f9bb731b021d3093 ffffffffffffffffffffffffffffffff 5924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -97ed352a49ab759707af5db2313d8d6a d27000fc8ea7e6d7a0a247e2f3f567a0 ffffffffffffffffffffffffffffffff 58808 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -97ed352a0e1f17fb07af5db2313dcfeb a3d9c51ac90ed92f195e55c260805b36 ffffffffffffffffffffffffffffffff 42908 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -97ed352a49a4098607af5db2313daca4 e91187e4bb4a0638a717eb77174b427d ffffffffffffffffffffffffffffffff 63652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -97ed352a49da718e07af5db2313dec62 e400afe900818bd5024e2910d446e062 ffffffffffffffffffffffffffffffff 49344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -97ed352a49a9596207af5db2313dcd46 91b911f6ae16d5996d2d3ca2160500cd ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -97ed352a49d8b75907af5db2313d8724 6f5109f42865bf639aca44a6d762fbb9 ffffffffffffffffffffffffffffffff 63460 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -97ed352a49ab759907af5db2313dc4ec 48cba2565dae3faf3d36ad3bd4948a1f ffffffffffffffffffffffffffffffff 22200 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -97ed352a49a16ae707af5db2313dd7b4 d9b9ecf071d61915ab2de6f3dbbf046b ffffffffffffffffffffffffffffffff 28608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -97ed352a49ac759507af5db2313dfe81 e522823ea2fc90a03f942a8b80a32b35 ffffffffffffffffffffffffffffffff 44260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -97ed352a412dc20407af5db2313de426 23c1edaccf2208ed07e8b73f3afac370 ffffffffffffffffffffffffffffffff 29792 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -97ed352a41702d1707af5db2313db505 d17dd1432f412a64842773bbeb22123d ffffffffffffffffffffffffffffffff 108652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -0000000048350b2d000000000000f821 97ed352a019e7eb307af5db2313d3b96 ffffffffffffffffffffffffffffffff 9978988 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth -00000000000000000000000000000000 8fbe42787cc9a9cb07e75306104bdb3f ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current -ffffffffffffffffffffffffffffffff afb097bb7357a117f28aeb84b48cd60d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist -97ed352a0698dff307af5db2313dda29 904c42cca8bbacd460ce61ab74e6a316 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist -97ed352a069d8dbb07af5db2313de20d 426e5970643b97eed9fbfa5874723d2d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist -97ed352a0690212d07af5db2313dd5d1 9dfae2aa0f34c82bac2ce2b15be1713f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist -97ed352a069df89b07af5db2313ddebf acbe091e17ac14c880f32cebc3c99c56 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist -97ed352a0696254507af5db2313dc9d9 f47214968fe74fa8c4fc1b3936880f54 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist -97ed352a069624d007af5db2313d8ae9 dd21d8cfe0c7619ec81a7b95328ddbfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist -97ed352a412246bc07af5db2313dc868 0e7f0eef19493081ac093465e6b4eb61 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist -97ed352a069958c107af5db2313dab27 cce22274caac57d80e09869951843fea ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist -97ed352a06e720c907af5db2313debe1 e59155e9589dad20b83a7d8e0c6a617f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist -97ed352a0694082507af5db2313dcac5 9febb4e9bab24322a7ced49c03f6cfe8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist -97ed352a069624de07af5db2313dc36f 5f2085563a2275e2ea698128df9a10c5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist -97ed352a069c3ba007af5db2313dd037 25f24cbb6a9974f0427d9e417f7d17e8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist -97ed352a069124d207af5db2313df902 912c373dc4f733d10a4f86ad39db0bfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist -97ed352a0e10934307af5db2313de3a5 733fcef9f29480f98e08536a9f396cb8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist -97ed352a0e4d7c5007af5db2313db286 9c9b56d66d88e294fb3ae0556f7bb07c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist -ffffffffffffffffffffffffffffffff 0a0da9e8e9d2908364525668b9b54368 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist -ffffffffffffffffffffffffffffffff 0f59b1e9cef55fc4b9b09a9e54b9f9cb ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h -000000000776121c000000000000e579 7b09425fbd720e3866d21e7f5753029a ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth -3d58d07c2b841e7f2475a51c25b54e53 6f16defa9a93fab74a3078f76842c846 ffffffffffffffffffffffffffffffff 27352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -3d58d07c2b89b2e92475a51c25b5798f c789376a33d74b31c109f358f081f00c ffffffffffffffffffffffffffffffff 20220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -3d58d07c2b846b5f2475a51c25b572e1 37eb025f97b792b3c5fd42a6976f2464 ffffffffffffffffffffffffffffffff 24800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -3d58d07c2b8c93482475a51c25b56029 5cbbb9afc5933df8e3fe00cfae957b6f ffffffffffffffffffffffffffffffff 4644 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -3d58d07c2b8c92dd2475a51c25b52319 a07add3b5ca8fddf7f01eb12ef115c34 ffffffffffffffffffffffffffffffff 42740 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -3d58d07c2b8da2fe2475a51c25b5637a 6d7a10b1a20f8e8ada105e98a0a53008 ffffffffffffffffffffffffffffffff 18328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -3d58d07c2b83eecc2475a51c25b502d7 5524997a54b87b7e8e2ec41d34426544 ffffffffffffffffffffffffffffffff 52104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -3d58d07c2b80ec6a2475a51c25b54fbf 218ac08579f773fbf66f7c0fb941360a ffffffffffffffffffffffffffffffff 34100 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -3d58d07c2b8d9be12475a51c25b5669b b00f96b3d1e57c2edb95f8897fdd7259 ffffffffffffffffffffffffffffffff 18212 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o -3d58d07c2b80eb8d2475a51c25b53837 ca60464e1b52fe332b9bc192bb853e1f ffffffffffffffffffffffffffffffff 40348 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -3d58d07c2b8c92d32475a51c25b56a9f bbd03ad5d90f4886fa08af3be283eaf3 ffffffffffffffffffffffffffffffff 19884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -3d58d07c2b85a8642475a51c25b57c69 5361bb5fcc169776180c35b38c4a8c0a ffffffffffffffffffffffffffffffff 24188 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -3d58d07c2b8b92df2475a51c25b550f2 048c46a1a00d4ad9ad0cc9eeb5b594dc ffffffffffffffffffffffffffffffff 37304 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -3d58d07c2305914e2475a51c25b54b12 aca21aef843ade78b6801add87935c4f ffffffffffffffffffffffffffffffff 24544 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -3d58d07c23553f9a2475a51c25b51cdd cc41a4d5d09ffbffc891383428fb8791 ffffffffffffffffffffffffffffffff 73428 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -b188bf85654b2071950829d6f6307108 717c3aa2094983d7f791e200510d5898 ffffffffffffffffffffffffffffffff 1044140 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -000000000776121c000000000000e579 3d58d07c2cfa80c82475a51c25b588bd ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth -75bfc4d1f0a667ad88fc306ccd92293a aeebb105ec26b3a5eb6ed16c4999bf15 ffffffffffffffffffffffffffffffff 1221296 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -ffffffffffffffffffffffffffffffff 3e7f48f4ccc823a7a6c1c4ed8056f183 ffffffffffffffffffffffffffffffff 9956412 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -3e7f48f4c43be2dda6c1c4ed80561a74 d561662265f8e28104035a5302a00117 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o -00000000000000000000000000000000 80b779573f1ad09d55281bbb3fc0b042 ffffffffffffffffffffffffffffffff 1013 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth -0000000040a8b43d000000000000fba5 0423a29a9f16bcd8725e9213ccf357aa ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth -3e7f48f4c37c2a75a6c1c4ed805606af 1efba746a07fefd105886c67477cc9b3 ffffffffffffffffffffffffffffffff 18412 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o -00000000000000000000000000000000 7e7978f51d62be2f302ef1bcb951d430 ffffffffffffffffffffffffffffffff 9938712 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff 09eed1489fdfceb6465e9187c6b401e6 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o -00000000000000000000000000000000 dea5feeb14c8a5d3c0e5be8bcc322f9e ffffffffffffffffffffffffffffffff 1041 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h -ffffffffffffffffffffffffffffffff 7d0bbb769ec08769af74fee98fc0e2b6 ffffffffffffffffffffffffffffffff 9934372 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking -000000000f84a230000000000000f598 344e22b0555e09e65eaa7db7e7413ec2 ffffffffffffffffffffffffffffffff 9932416 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -3b7002f7ae1d5db27080ce68df8a93ff 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -b502fadbe8071bec9867a7fabad552ac f49b78ae92e67fcc62b1e2cee6ba8197 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap deleted file mode 100644 index 607303b4..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat deleted file mode 100644 index 4bf22b08..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat +++ /dev/null @@ -1,2676 +0,0 @@ -TSPMySQL.framework -v7 -r0 -t351391670.553327 -cCheck dependencies -cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A -cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources -cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers -cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -cProcessInfoPlistFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h Source/SPMySQL.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h -cCopyStringsFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cLd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 -cTouch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004C238B9B00000000000000EE -t1277397915 -s238 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h -c0000000040C4AA6800000000000001E5 -t1086630504 -s485 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h -c000000004864A1C900000000000012EE -t1214554569 -s4846 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h -c0000000047BAC506000000000000235B -t1203422470 -s9051 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration -c000000004B760CDC00000000000371FC -t1266027740 -s225788 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h -c0000000047E8839E0000000000000746 -t1206420382 -s1862 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h -c0000000047BA9932000000000000380F -t1203411250 -s14351 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h -c0000000047BA9930000000000000055B -t1203411248 -s1371 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib -c000000004B760D050000000000006EE8 -t1266027781 -s28392 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004E2DE5120000000000006560 -t1311630610 -s25952 - -N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings -c000000004F0A19CD0000000000000030 -t1326062029 -s48 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h -c000000004F130858000000000000070C -t1326647384 -s1804 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h -c000000004F13085800000000000005D0 -t1326647384 -s1488 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h -c000000004F13085800000000000083EB -t1326647384 -s33771 -i -i -i -i"mysql_version.h" -i"mysql_com.h" -i"mysql_time.h" -i"my_list.h" -i"typelib.h" -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h -c000000004F130858000000000000503F -t1326647384 -s20543 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h -c000000004F1308580000000000000831 -t1326647384 -s2097 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h -c000000004F130858000000000000032B -t1326647384 -s811 -i - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h -c000000004F13085800000000000005DD -t1326647384 -s1501 -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a -c000000004F13085B0000000000445164 -t1326647387 -s4477284 - -N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h -c000000004F3FDF050000000000000EFA -t1329585925 -s3834 -i"Ping & KeepAlive.h" -i"Locking.h" -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/SPMySQL.h -c000000004F40545B00000000000008AA -t1329615963 -s2218 -i"SPMySQLConstants.h" -i"SPMySQLStringAdditions.h" -i"SPMySQLConnectionDelegate.h" -i"SPMySQLConnectionProxy.h" -i"SPMySQLConnection.h" -i"Delegate & Proxy.h" -i"Databases & Tables.h" -i"Max Packet Size.h" -i"Querying & Preparation.h" -i"Encoding.h" -i"Server Info.h" -i"SPMySQLResult.h" -i"SPMySQLStreamingResult.h" -i"SPMySQLFastStreamingResult.h" -i"Field Definitions.h" -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/SPMySQLFramework/SPMySQLConnection Private APIs.h -c000000004F3CF8880000000000000A80 -t1329395848 -s2688 -i"Ping & KeepAlive.h" -i"Locking.h" -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h -c000000004F307BEF00000000000009A8 -t1328577519 -s2472 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -c000000004F307BE80000000000000EF3 -t1328577512 -s3827 -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h -c000000004F3800F70000000000000711 -t1329070327 -s1809 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -c000000004F3D0465000000000000245E -t1329398885 -s9310 -i"Databases & Tables.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h -c000000004F3452E5000000000000057E -t1328829157 -s1406 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -c000000004F3CFAE100000000000011ED -t1329396449 -s4589 -i"Delegate & Proxy.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m -c000000004F1CBCB7000000000000041D -t1327283383 -s1053 -i"Encoding & Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h -c000000004F340C6A000000000000079C -t1328811114 -s1948 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -c000000004F330C610000000000003AAA -t1328745569 -s15018 -i"Encoding.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking -c000000004F1C42CD00000000000000BD -t1327252173 -s189 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h -c000000004F307BFB00000000000005E6 -t1328577531 -s1510 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -c000000004F3CFAF70000000000000E61 -t1329396471 -s3681 -i"Locking.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h -c000000004F398B4100000000000005F3 -t1329171265 -s1523 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -c000000004F3CFAF30000000000001A0E -t1329396467 -s6670 -i"Max Packet Size.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h -c000000004F3172E100000000000007C2 -t1328640737 -s1986 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -c000000004F4184B40000000000001D1F -t1329693876 -s7455 -i"Ping & KeepAlive.h" -i"Locking.h" -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h -c000000004F40542D0000000000001194 -t1329615917 -s4500 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -c000000004F405438000000000000554B -t1329615928 -s21835 -i"SPMySQLConnection.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m -c000000004F1C1C690000000000000419 -t1327242345 -s1049 -i"SPMySQLConnection.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h -c000000004F3848660000000000000761 -t1329088614 -s1889 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -c000000004F3CFAEF0000000000001614 -t1329396463 -s5652 -i"Server Info.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h -c000000004F3D27C200000000000014E2 -t1329407938 -s5346 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -c000000004F4184A80000000000006ED3 -t1329693864 -s28371 -i"SPMySQL Private APIs.h" -i -i -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h -c000000004F36BCAB0000000000001041 -t1328987307 -s4161 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h -c000000004F327BDC0000000000000884 -t1328708572 -s2180 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h -c000000004F39B228000000000000092D -t1329181224 -s2349 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h -c000000004F417F8900000000000006A2 -t1329692553 -s1698 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -c000000004F41837B00000000000034CA -t1329693563 -s13514 -i"SPMySQLFastStreamingResult.h" -i"SPMySQL Private APIs.h" -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -c000000004F307C5D00000000000000E7 -t1328577629 -s231 -i -i"mysql.h" -i"SPMySQL.h" -i"SPMySQLUtilities.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m -c000000004F3FFADE0000000000003EB1 -t1329593054 -s16049 -i"SPMySQLStreamingResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullyStreamingResult.h -c000000004F3ED347000000000000099C -t1329517383 -s2460 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h -c000000004F32785D00000000000006DB -t1328707677 -s1755 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -c000000004F3D044500000000000069C8 -t1329398853 -s27080 -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h -c000000004F307BB8000000000000059A -t1328577464 -s1434 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -c000000004F307BB10000000000004B47 -t1328577457 -s19271 -i"Field Definitions.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h -c000000004F415CF40000000000001137 -t1329683700 -s4407 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -c000000004F415CEF0000000000003B6C -t1329683695 -s15212 -i"SPMySQLResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h -c000000004F401EC60000000000000796 -t1329602246 -s1942 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -c000000004F415D940000000000001E81 -t1329683860 -s7809 -i"SPMySQLStreamingResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h -c000000004F32FAD700000000000005CE -t1328741079 -s1486 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -c000000004F32FB4B0000000000000823 -t1328741195 -s2083 -i"SPMySQLStringAdditions.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h -c000000004F307D2800000000000006F7 -t1328577832 -s1783 -i - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework -t1329693883 -s204 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources -t3 -s26 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -t1329613170 -s1809 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -t1329613170 -s1406 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h -t1327282092 -s1041 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h -t1329613170 -s1948 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -t1329613170 -s1434 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -t1329613170 -s1523 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -t1329615931 -s4500 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h -t1327593846 -s1013 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -t1329615964 -s2218 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -t1329613170 -s5346 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -t1329613170 -s4161 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -t1329613170 -s2180 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -t1329613170 -s2349 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -t1329693475 -s1698 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -t1329613170 -s1755 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -t1329683868 -s4407 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -t1329613170 -s1942 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h -t1329613170 -s1889 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1329613170 -s92 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist -t1329613170 -s1144 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o -t1327590974 -s18412 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -t1327590974 -s9938712 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -t1329693883 -s1248152 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -t1327194721 -s204 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -t3 -s26 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -t3 -s33 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -t1327194721 -s1975 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -t1327194721 -s974 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1327194721 -s92 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -t1327194721 -s1170 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -t1327194721 -s19824 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -t1329400733 -s19884 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -t1329400733 -s27352 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -t1329400733 -s20220 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -t1329400733 -s37304 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -t1329400733 -s42740 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o -t1329400733 -s18212 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -t1329400733 -s24800 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -t1329400732 -s24544 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -t1329400733 -s40348 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -t1329400733 -s1044140 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -c000000004F3D0B9C00000000000007C4 -t1329400732 -s1988 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -t1329400733 -s73428 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -t1329400733 -s52104 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -t1329400733 -s34100 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -t1329400733 -s18328 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -t1329400733 -s4644 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -t1329400733 -s24188 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -t1329693476 -s22200 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -t1329693477 -s33788 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -t1329693477 -s24288 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o -t1327282093 -s884 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -t1329693476 -s44260 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -t1329693476 -s58808 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -t1329693476 -s20496 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -t1329693477 -s30400 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -t1329693883 -s29108 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -t1329693476 -s63876 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o -t1327974108 -s860 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -t1329400733 -s1221296 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -c000000004F4049720000000000000873 -t1329613170 -s2163 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -t1329693883 -s107800 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -t1329693571 -s42516 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -c000000004F1B6219000000000000021D -t1327194649 -s541 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -t1329693476 -s63652 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -t1329693476 -s49184 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -t1329693477 -s33864 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -t1329693476 -s5924 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -t1329693476 -s28608 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist -t1329693888 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist -t1329693890 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist -t1329693888 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist -t1329693890 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist -t1329693900 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist -t1329693890 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist -t1329693889 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist -t1329693888 -s276 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/English.lproj/InfoPlist.strings -c000000004F0A19CD0000000000000030 -t1326062029 -s48 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h -c000000004F130858000000000000070C -t1326647384 -s1804 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_list.h -c000000004F13085800000000000005D0 -t1326647384 -s1488 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h -c000000004F13085800000000000083EB -t1326647384 -s33771 -i -i -i -i"mysql_version.h" -i"mysql_com.h" -i"mysql_time.h" -i"my_list.h" -i"typelib.h" -i"my_alloc.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h -c000000004F130858000000000000503F -t1326647384 -s20543 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h -c000000004F1308580000000000000831 -t1326647384 -s2097 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h -c000000004F130858000000000000032B -t1326647384 -s811 -i - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/typelib.h -c000000004F13085800000000000005DD -t1326647384 -s1501 -i"my_alloc.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a -c000000004F13085B0000000000445164 -t1326647387 -s4477284 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQL Private APIs.h -c000000004F3FDF050000000000000EFA -t1329585925 -s3834 -i"Ping & KeepAlive.h" -i"Locking.h" -i"Conversion.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQL.h -c000000004F40545B00000000000008AA -t1329615963 -s2218 -i"SPMySQLConstants.h" -i"SPMySQLStringAdditions.h" -i"SPMySQLConnectionDelegate.h" -i"SPMySQLConnectionProxy.h" -i"SPMySQLConnection.h" -i"Delegate & Proxy.h" -i"Databases & Tables.h" -i"Max Packet Size.h" -i"Querying & Preparation.h" -i"Encoding.h" -i"Server Info.h" -i"SPMySQLResult.h" -i"SPMySQLStreamingResult.h" -i"SPMySQLFastStreamingResult.h" -i"Field Definitions.h" -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h -c000000004F307BEF00000000000009A8 -t1328577519 -s2472 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -c000000004F307BE80000000000000EF3 -t1328577512 -s3827 -i"Conversion.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h -c000000004F3800F70000000000000711 -t1329070327 -s1809 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -c000000004F3D0465000000000000245E -t1329398885 -s9310 -i"Databases & Tables.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h -c000000004F3452E5000000000000057E -t1328829157 -s1406 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -c000000004F3CFAE100000000000011ED -t1329396449 -s4589 -i"Delegate & Proxy.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h -c000000004F340C6A000000000000079C -t1328811114 -s1948 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -c000000004F330C610000000000003AAA -t1328745569 -s15018 -i"Encoding.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h -c000000004F307BFB00000000000005E6 -t1328577531 -s1510 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -c000000004F3CFAF70000000000000E61 -t1329396471 -s3681 -i"Locking.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h -c000000004F398B4100000000000005F3 -t1329171265 -s1523 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -c000000004F3CFAF30000000000001A0E -t1329396467 -s6670 -i"Max Packet Size.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h -c000000004F3172E100000000000007C2 -t1328640737 -s1986 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -c000000004F4184B40000000000001D1F -t1329693876 -s7455 -i"Ping & KeepAlive.h" -i"Locking.h" -i - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h -c000000004F40542D0000000000001194 -t1329615917 -s4500 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -c000000004F405438000000000000554B -t1329615928 -s21835 -i"SPMySQLConnection.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h -c000000004F3848660000000000000761 -t1329088614 -s1889 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -c000000004F3CFAEF0000000000001614 -t1329396463 -s5652 -i"Server Info.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h -c000000004F3D27C200000000000014E2 -t1329407938 -s5346 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m -c000000004F4184A80000000000006ED3 -t1329693864 -s28371 -i"SPMySQL Private APIs.h" -i -i -i - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h -c000000004F36BCAB0000000000001041 -t1328987307 -s4161 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h -c000000004F327BDC0000000000000884 -t1328708572 -s2180 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h -c000000004F39B228000000000000092D -t1329181224 -s2349 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h -c000000004F417F8900000000000006A2 -t1329692553 -s1698 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -c000000004F41837B00000000000034CA -t1329693563 -s13514 -i"SPMySQLFastStreamingResult.h" -i"SPMySQL Private APIs.h" -i - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -c000000004F307C5D00000000000000E7 -t1328577629 -s231 -i -i"mysql.h" -i"SPMySQL.h" -i"SPMySQLUtilities.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.h -c000000004F32785D00000000000006DB -t1328707677 -s1755 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m -c000000004F3D044500000000000069C8 -t1329398853 -s27080 -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h -c000000004F307BB8000000000000059A -t1328577464 -s1434 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -c000000004F307BB10000000000004B47 -t1328577457 -s19271 -i"Field Definitions.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h -c000000004F415CF40000000000001137 -t1329683700 -s4407 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m -c000000004F415CEF0000000000003B6C -t1329683695 -s15212 -i"SPMySQLResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.h -c000000004F401EC60000000000000796 -t1329602246 -s1942 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m -c000000004F415D940000000000001E81 -t1329683860 -s7809 -i"SPMySQLStreamingResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.h -c000000004F32FAD700000000000005CE -t1328741079 -s1486 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m -c000000004F32FB4B0000000000000823 -t1328741195 -s2083 -i"SPMySQLStringAdditions.h" - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h -c000000004F307D2800000000000006F7 -t1328577832 -s1783 -i - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework -t1329696822 -s204 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers -t3 -s24 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources -t3 -s26 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL -t3 -s24 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -t1329613170 -s1809 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -t1329613170 -s1406 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h -t1329613170 -s1948 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -t1329613170 -s1434 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -t1329613170 -s1523 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -t1329615931 -s4500 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -t1329615964 -s2218 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -t1329613170 -s5346 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -t1329613170 -s4161 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -t1329613170 -s2180 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -t1329613170 -s2349 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -t1329693475 -s1698 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -t1329613170 -s1755 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -t1329683868 -s4407 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -t1329613170 -s1942 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h -t1329613170 -s1889 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1329613170 -s92 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist -t1329613170 -s1144 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -t1329696682 -s1249328 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -t1329696492 -s22568 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -t1329696492 -s34140 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -t1329696492 -s24624 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -t1329696492 -s44580 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -t1329696492 -s59112 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -t1329696492 -s20816 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -t1329696492 -s30768 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -t1329696492 -s29492 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -t1329696492 -s64388 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -c000000004F418EEA0000000000000A53 -t1329696490 -s2643 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -t1329696492 -s108200 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -t1329696492 -s42980 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -t1329696492 -s63796 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -t1329696492 -s49520 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -t1329696492 -s34248 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -t1329696492 -s6036 - -N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -t1329696492 -s28960 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -t1327271264 -s9934372 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth -t1329696492 -s9980224 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -t1328637468 -s9956412 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -t1327244598 -s9932416 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth -t1329693476 -s9978580 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth -t1329403345 -s9973036 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth -t1329399762 -s10910168 - -NResources/Info.plist -c000000004F0A20EC0000000000000357 -t1326063852 -s855 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -s351386688.850748 -e351386688.992999 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386688#351386689#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4573408912#1843" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -s351386689.833013 -e351386690.064014 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386689#351386690#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4573408912#1861" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -s351386689.796900 -e351386689.974122 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386689#351386690#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4573408912#1857" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -s351386688.022835 -e351386688.850095 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386688#351386688#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4573408912#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -s351386688.993093 -e351386689.273128 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386688#351386689#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4573408912#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -s351386689.647071 -e351386689.832752 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386689#351386689#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4573408912#1855" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -s351386688.022029 -e351386689.066062 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386688#351386689#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4573408912#1857" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -s351386688.851955 -e351386689.270522 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386688#351386689#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4573408912#1869" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -s351386688.023968 -e351386688.850569 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386688#351386688#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4573408912#1847" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -s351386689.274905 -e351386689.538212 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386689#351386689#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4573408912#1855" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist" 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -s351386688.020690 -e351386689.272487 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386688#351386689#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4573408912#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -s351386689.273497 -e351386690.250458 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386689#351386690#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4573408912#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m -r0 - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -s351386689.270618 -e351386700.298481 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386689#351386700#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4573408912#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -s351386689.066406 -e351386689.642593 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386689#351386689#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4573408912#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -s351386689.975239 -e351386690.215377 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386689#351386690#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4573408912#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -s351386689.567692 -e351386689.796498 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386689#351386689#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4573408912#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist 0# - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies351391670#351391670#0(0"0(0#1#0"4684336560#0"0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.356219 -e351093533.423922 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351093533#351093533#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.314225 -e351093533.384062 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351093533#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.241830 -e351093533.356050 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351093533#351093533#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.311400 -e351093533.389820 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351093533#351093533#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093532.909342 -e351093533.002616 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351093532#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.078124 -e351093533.233582 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351093533#351093533#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1845" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.002775 -e351093533.077953 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351093533#351093533#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.984549 -e351386277.234831 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386276#351386277#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4488392336#1843" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.900013 -e351389292.978357 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@129"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351389292#351389292#0(0"0(0#0#121"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4785176208#2173" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.960629 -e351386277.228729 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386276#351386277#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4488392336#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.897886 -e351389292.964686 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@127"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351389292#351389292#0(0"0(0#0#119"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4785176208#2169" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348974893.569529 -e348974893.613561 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348974893#348974893#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4617666192#1860" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.861964 -e351386276.984380 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386276#351386276#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4488392336#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.745259 -e351389292.902578 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@124"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351389292#351389292#0(0"0(0#0#116"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4785176208#2167" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.951298 -e351386277.234409 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386276#351386277#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4488392336#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.809513 -e351389292.899863 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@126"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351389292#351389292#0(0"0(0#0#118"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4785176208#2167" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386682.932966 -e351386683.257244 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386682#351386683#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4544028304#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.274660 -e351389292.466666 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@127"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351389292#351389292#0(0"0(0#0#119"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4785176208#2169" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.684238 -e351386276.833066 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386276#351386276#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4488392336#1851" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.469214 -e351389292.744815 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@133"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351389292#351389292#0(0"0(0#0#125"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4785176208#2181" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.605222 -e351386276.681439 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386276#351386276#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4488392336#1829" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.277673 -e351389292.469081 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@122"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351389292#351389292#0(0"0(0#0#114"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4785176208#2159" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# - -CCompileC build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s349283773.971303 -e349283774.259882 -r1 -xCompileC -xbuild/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') -o [self flushMultiResults]; -o ^~~~~~~~~~~~~~~~~~~~~~~~ -o1 warning generated. -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m349283773#349283774#0(268"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') [self flushMultiResults]; ^~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. 1(22@68"Method '-flushMultiResults' not found (return type defaults to 'id')349283774#0#178#0(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#0#0#49"method * not found (return type defaults to 'id')1(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#88#33#0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4483198608#1789" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.019170 -e351093533.085021 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351093533#351093533#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093532.910800 -e351093533.019019 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351093532#351093533#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1815" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.085189 -e351093533.156564 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351093533#351093533#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093532.907984 -e351093533.112078 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351093532#351093533#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1802" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.143594 -e351093533.371441 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351093533#351093533#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1806" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.112422 -e351093533.311221 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351093533#351093533#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1794" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.156743 -e351093533.254840 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.255195 -e351093533.314064 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.681590 -e351386276.753789 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386276#351386276#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4488392336#1825" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.466977 -e351389292.700592 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@121"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351389292#351389292#0(0"0(0#0#113"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4785176208#2155" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.603960 -e351386276.701161 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386276#351386276#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4488392336#1821" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.275944 -e351389292.477431 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@119"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351389292#351389292#0(0"0(0#0#111"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4785176208#2151" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.701316 -e351386276.770892 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386276#351386276#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4488392336#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.479437 -e351389292.698748 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@118"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351389292#351389292#0(0"0(0#0#110"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4785176208#2149" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s349666908.814076 -e349666908.859934 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m349666908#349666908#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4570701456#1821" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386682.931736 -e351386683.317129 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386682#351386683#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4544028304#1808" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.273096 -e351389292.525055 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@99"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m351389292#351389292#0(0"0(0#0#91"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m4785176208#2138" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386371.600764 -e351386371.686534 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386371#351386371#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4488392336#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.700729 -e351389292.809100 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@108"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351389292#351389292#0(0"0(0#0#100"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4785176208#2156" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.771053 -e351386276.996988 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386276#351386276#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4488392336#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.699063 -e351389292.913023 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@101"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m351389292#351389292#0(0"0(0#0#93"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m4785176208#2142" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.753947 -e351386276.918993 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386276#351386276#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4488392336#1800" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.525186 -e351389292.782467 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@95"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m351389292#351389292#0(0"0(0#0#87"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m4785176208#2130" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.997144 -e351386277.272419 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386276#351386277#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4488392336#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.902706 -e351389292.982185 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@104"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m351389292#351389292#0(0"0(0#0#96"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m4785176208#2148" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386276.919191 -e351386276.960456 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386276#351386276#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4488392336#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389292.782623 -e351389292.835629 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@104"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m351389292#351389292#0(0"0(0#0#96"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m4785176208#2148" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# - -CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s351305970.749404 -e351305970.858355 -r1 -xCopyStringsFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4575997584#365" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj 0# - -CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s348887521.562165 -e348887521.625799 -r1 -xCopyStringsFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings348887521#348887521#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4623519376#374" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj 0# - -CCopyStringsFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -r0 - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" -s351305970.712961 -e351305970.732881 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -xSource/SPMySQLConnection Categories/Databases & Tables.h -lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351305970#351305970#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4575997584#403" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" -s351305970.712209 -e351305970.740798 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -xSource/SPMySQLConnection Categories/Delegate & Proxy.h -lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351305970#351305970#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4575997584#401" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h" "Source/SPMySQLConnection Categories/Encoding & Conversion.h" -s348974892.484151 -e348974892.511762 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h -xSource/SPMySQLConnection Categories/Encoding & Conversion.h -lSLF07#2@64"Copy Source/SPMySQLConnection Categories/Encoding & Conversion.h348974892#348974892#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h4617666192#385" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" -s351305970.709841 -e351305970.724154 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -xSource/SPMySQLResult Categories/Field Definitions.h -lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351305970#351305970#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4575997584#398" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" -s351305970.711449 -e351305970.733648 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -xSource/SPMySQLConnection Categories/Max Packet Size.h -lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351305970#351305970#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4575997584#400" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" -s351308731.413332 -e351308731.426021 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -xSource/SPMySQLConnection Categories/Querying & Preparation.h -lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351308731#351308731#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4542955152#407" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" -s351305970.686630 -e351305970.709716 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h -xSource/SPMySQLConnection Categories/Server Info.h -lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351305970#351305970#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4575997584#396" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" -s351305970.685850 -e351305970.709531 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h -xSource/SPMySQLConnection Categories/Encoding.h -lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351305970#351305970#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4575997584#393" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h "Source/SPMySQLConnection Categories/Querying.h" -s349286646.091209 -e349286646.124156 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h -xSource/SPMySQLConnection Categories/Querying.h -lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Querying.h349286646#349286646#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h4481736336#393" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h -s351308764.599575 -e351308764.610216 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -xSPMySQL.h -lSLF07#2@14"Copy SPMySQL.h351308764#351308764#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4545101456#354" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h Source/SPMySQL.h -r0 - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -s351305970.683793 -e351305970.708220 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -xSource/SPMySQLConnection.h -lSLF07#2@31"Copy Source/SPMySQLConnection.h351305970#351305970#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4575997584#371" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h -s351305970.688275 -e351305970.723280 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -xSource/SPMySQLConnectionDelegate.h -lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351305970#351305970#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4575997584#379" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h -s351305970.710781 -e351305970.732411 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -xSource/SPMySQLConnectionProxy.h -lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -s351305970.684483 -e351305970.708660 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -xSource/SPMySQLConstants.h -lSLF07#2@30"Copy Source/SPMySQLConstants.h351305970#351305970#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4575997584#370" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h -s351386275.402592 -e351386275.414457 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -xSource/SPMySQLFastStreamingResult.h -lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351386275#351386275#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4488392336#380" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h Source/SPMySQLFullyStreamingResult.h -r0 - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h -s351305970.689810 -e351305970.732608 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -xSource/SPMySQLGeometryData.h -lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351305970#351305970#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4575997584#373" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h -s351376668.973039 -e351376668.984128 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -xSource/SPMySQLResult.h -lSLF07#2@27"Copy Source/SPMySQLResult.h351376668#351376669#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4544564880#367" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h -s351305970.714493 -e351305970.740982 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -xSource/SPMySQLStreamingResult.h -lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -s348887521.548409 -e348887521.561731 -r1 -xCpHeader -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -xSource/SPMySQLConnection.h -lSLF07#2@31"Copy Source/SPMySQLConnection.h348887521#348887521#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4623519376#359" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -s348887521.549428 -e348887521.562097 -r1 -xCpHeader -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -xSource/SPMySQLConstants.h -lSLF07#2@30"Copy Source/SPMySQLConstants.h348887521#348887521#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4623519376#358" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# - -CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/Locking "Source/SPMySQLConnection Categories/Locking" -r0 - -CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -s348964064.046418 -e348964064.130069 -r1 -xCpResource -xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth348964064#348964064#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth4481736336#469" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources 0# - -CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -s349283773.968481 -e349283774.098447 -r1 -xCpResource -xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth349283773#349283774#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth4483198608#469" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources 0# - -CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" -s351093598.347160 -e351093598.359672 -r1 -xCreateUniversalBinary -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -xnormal -xx86_64 i386 -lSLF07#2@91"CreateUniversalBinary build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351093598#351093598#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864563705488#406" cd /Users/rowan/code/SPMySQLFramework /usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 -s351386683.317255 -e351386683.722909 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -xnormal -xx86_64 -lSLF07#2@88"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351386683#351386683#0(0"0(0#0#0"4544028304#821" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 -s348887521.626568 -e348887521.650054 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -xnormal -xx86_64 -lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#819" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 -s351093533.424011 -e351093533.536477 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -xnormal -xi386 -lSLF07#2@126"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351093533#351093533#0(0"0(0#0#0"4566089360#855" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 -s351093532.906597 -e351093533.143415 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -xnormal -xx86_64 -lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351093532#351093533#0(0"0(0#0#0"4566089360#861" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL 0# - -CLd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 -s351389292.982396 -e351389293.317054 -r1 -xLd -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -xnormal -xx86_64 -lSLF07#2@118"Link /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351389292#351389293#0(0"0(0#0#0"4785176208#1001" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug "-L/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -s351305970.680288 -e351305970.683712 -r1 -xProcessInfoPlistFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist -xResources/Info.plist -lSLF07#2@28"Process Resources/Info.plist351305970#351305970#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4575997696#230" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist 0# - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist -s348887521.544786 -e348887521.548292 -r1 -xProcessInfoPlistFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -xResources/Info.plist -lSLF07#2@28"Process Resources/Info.plist348887521#348887521#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4623519488#239" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist 0# - -CProcessInfoPlistFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -r0 - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348964063.306931 -e348964064.045425 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348964063#348964064#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4481736336#1693" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351389290.951857 -e351389292.272956 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351389290#351389292#0(0"0(0#0#99"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch17336940800#1982" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s349286504.307800 -e349286505.895897 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch349286504#349286505#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4603338384#1672" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s350330267.452714 -e350330268.654275 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch350330267#350330268#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4596461200#1682" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348937397.517447 -e348937398.178688 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348937397#348937398#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4546195088#1693" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386275.414661 -e351386276.601755 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386275#351386276#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4488392336#1682" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351096144.652465 -e351096145.473201 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -oclang: warning: argument unused during compilation: '-flto' -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351096144#351096145#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4563705488#1688" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351092561.457146 -e351092562.279771 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092561#351092562#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4553227920#1678" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers -s351305970.677018 -e351305970.680208 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers -xVersions/Current/Headers -lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources -s351305970.672373 -e351305970.677773 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources -xVersions/Current/Resources -lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources351305970#351305970#0(0"0(0#0#0"4575997584#160" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -s351305970.673003 -e351305970.676831 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL -xVersions/Current/SPMySQL -lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A -s351305970.671411 -e351305970.676692 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current -xA -lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current351305970#351305970#0(0"0(0#0#0"4575997584#142" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers -s348887521.541748 -e348887521.544706 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -xVersions/Current/Headers -lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348887521#348887521#0(0"0(0#0#0"4623519376#165" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources -s348887521.536417 -e348887521.542622 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -xVersions/Current/Resources -lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348887521#348887521#0(0"0(0#0#0"4623519376#169" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework -s348887521.537128 -e348887521.541676 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -xVersions/Current/SPMySQLFramework -lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#183" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A -s348887521.535560 -e348887521.541537 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -xA -lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348887521#348887521#0(0"0(0#0#0"4623519376#151" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current 0# - -CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers -r0 - -CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources -r0 - -CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -r0 - -CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A -r0 - -CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework -s351386683.730291 -e351386683.740855 -r1 -xTouch -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework -lSLF07#2@70"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework351386683#351386683#0(0"0(0#0#0"4544028304#129" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework 0# - -CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -s348887521.650171 -e348887521.653602 -r1 -xTouch -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348887521#348887521#0(0"0(0#0#0"4623519376#138" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework 0# - -CTouch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework -s351389622.487109 -e351389622.490715 -r1 -xTouch -x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework -lSLF07#2@100"Touch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework351389622#351389622#0(0"0(0#0#0"4573408912#189" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework 0# - diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat deleted file mode 100644 index 7b332576..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat +++ /dev/null @@ -1,1941 +0,0 @@ -TSPMySQL.framework -v7 -r0 -t351305972.548352 -cCheck dependencies -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers -cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" -cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" -cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h -cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 -cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004C238B9B00000000000000EE -t1277397915 -s238 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h -c0000000040C4AA6800000000000001E5 -t1086630504 -s485 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h -c000000004864A1C900000000000012EE -t1214554569 -s4846 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h -c0000000047BAC506000000000000235B -t1203422470 -s9051 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration -c000000004B760CDC00000000000371FC -t1266027740 -s225788 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h -c0000000047E8839E0000000000000746 -t1206420382 -s1862 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h -c0000000047BA9932000000000000380F -t1203411250 -s14351 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h -c0000000047BA9930000000000000055B -t1203411248 -s1371 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib -c000000004B760D050000000000006EE8 -t1266027781 -s28392 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004E2DE5120000000000006560 -t1311630610 -s25952 - -N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings -c000000004F0A19CD0000000000000030 -t1326062029 -s48 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h -c000000004F130858000000000000070C -t1326647384 -s1804 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h -c000000004F13085800000000000005D0 -t1326647384 -s1488 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h -c000000004F13085800000000000083EB -t1326647384 -s33771 -i -i -i -i"mysql_version.h" -i"mysql_com.h" -i"mysql_time.h" -i"my_list.h" -i"typelib.h" -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h -c000000004F130858000000000000503F -t1326647384 -s20543 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h -c000000004F1308580000000000000831 -t1326647384 -s2097 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h -c000000004F130858000000000000032B -t1326647384 -s811 -i - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h -c000000004F13085800000000000005DD -t1326647384 -s1501 -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a -c000000004F13085B0000000000445164 -t1326647387 -s4477284 - -N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h -c000000004F3FDF050000000000000EFA -t1329585925 -s3834 -i"Ping & KeepAlive.h" -i"Locking.h" -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/SPMySQL.h -c000000004F404968000000000000088E -t1329613160 -s2190 -i"SPMySQLConstants.h" -i"SPMySQLStringAdditions.h" -i"SPMySQLConnectionDelegate.h" -i"SPMySQLConnectionProxy.h" -i"SPMySQLConnection.h" -i"Delegate & Proxy.h" -i"Databases & Tables.h" -i"Max Packet Size.h" -i"Querying & Preparation.h" -i"Encoding.h" -i"Server Info.h" -i"SPMySQLResult.h" -i"SPMySQLStreamingResult.h" -i"SPMySQLFastStreamingResult.h" -i"Field Definitions.h" -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/SPMySQLFramework/SPMySQLConnection Private APIs.h -c000000004F3CF8880000000000000A80 -t1329395848 -s2688 -i"Ping & KeepAlive.h" -i"Locking.h" -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h -c000000004F307BEF00000000000009A8 -t1328577519 -s2472 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -c000000004F307BE80000000000000EF3 -t1328577512 -s3827 -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h -c000000004F3800F70000000000000711 -t1329070327 -s1809 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -c000000004F3D0465000000000000245E -t1329398885 -s9310 -i"Databases & Tables.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h -c000000004F3452E5000000000000057E -t1328829157 -s1406 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -c000000004F3CFAE100000000000011ED -t1329396449 -s4589 -i"Delegate & Proxy.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m -c000000004F1CBCB7000000000000041D -t1327283383 -s1053 -i"Encoding & Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h -c000000004F340C6A000000000000079C -t1328811114 -s1948 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -c000000004F330C610000000000003AAA -t1328745569 -s15018 -i"Encoding.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking -c000000004F1C42CD00000000000000BD -t1327252173 -s189 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h -c000000004F307BFB00000000000005E6 -t1328577531 -s1510 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -c000000004F3CFAF70000000000000E61 -t1329396471 -s3681 -i"Locking.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h -c000000004F398B4100000000000005F3 -t1329171265 -s1523 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -c000000004F3CFAF30000000000001A0E -t1329396467 -s6670 -i"Max Packet Size.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h -c000000004F3172E100000000000007C2 -t1328640737 -s1986 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -c000000004F3D27B20000000000001DBA -t1329407922 -s7610 -i"Ping & KeepAlive.h" -i"Locking.h" -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h -c000000004F3DACAE00000000000011A6 -t1329441966 -s4518 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -c000000004F4048F50000000000005507 -t1329613045 -s21767 -i"SPMySQLConnection.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m -c000000004F1C1C690000000000000419 -t1327242345 -s1049 -i"SPMySQLConnection.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h -c000000004F3848660000000000000761 -t1329088614 -s1889 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -c000000004F3CFAEF0000000000001614 -t1329396463 -s5652 -i"Server Info.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h -c000000004F3D27C200000000000014E2 -t1329407938 -s5346 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -c000000004F3D2AD30000000000006FD6 -t1329408723 -s28630 -i"SPMySQL Private APIs.h" -i -i -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h -c000000004F36BCAB0000000000001041 -t1328987307 -s4161 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h -c000000004F327BDC0000000000000884 -t1328708572 -s2180 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h -c000000004F39B228000000000000092D -t1329181224 -s2349 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h -c000000004F401EC20000000000000768 -t1329602242 -s1896 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -c000000004F404865000000000000364D -t1329612901 -s13901 -i"SPMySQLFastStreamingResult.h" -i"SPMySQL Private APIs.h" -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -c000000004F307C5D00000000000000E7 -t1328577629 -s231 -i -i"mysql.h" -i"SPMySQL.h" -i"SPMySQLUtilities.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m -c000000004F3FFADE0000000000003EB1 -t1329593054 -s16049 -i"SPMySQLStreamingResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullyStreamingResult.h -c000000004F3ED347000000000000099C -t1329517383 -s2460 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h -c000000004F32785D00000000000006DB -t1328707677 -s1755 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -c000000004F3D044500000000000069C8 -t1329398853 -s27080 -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h -c000000004F307BB8000000000000059A -t1328577464 -s1434 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -c000000004F307BB10000000000004B47 -t1328577457 -s19271 -i"Field Definitions.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h -c000000004F3FEA7E0000000000001137 -t1329588862 -s4407 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -c000000004F40439E0000000000003B94 -t1329611678 -s15252 -i"SPMySQLResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h -c000000004F401EC60000000000000796 -t1329602246 -s1942 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -c000000004F40481C0000000000001CFD -t1329612828 -s7421 -i"SPMySQLStreamingResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h -c000000004F32FAD700000000000005CE -t1328741079 -s1486 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -c000000004F32FB4B0000000000000823 -t1328741195 -s2083 -i"SPMySQLStringAdditions.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h -c000000004F307D2800000000000006F7 -t1328577832 -s1783 -i - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework -t1329613172 -s204 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources -t3 -s26 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -t1329613170 -s1809 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -t1329613170 -s1406 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h -t1327282092 -s1041 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h -t1329613170 -s1948 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -t1329613170 -s1434 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -t1329613170 -s1523 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -t1329613170 -s4518 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h -t1327593846 -s1013 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -t1329613170 -s2190 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -t1329613170 -s5346 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -t1329613170 -s4161 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -t1329613170 -s2180 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -t1329613170 -s2349 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -t1329613170 -s1896 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -t1329613170 -s1755 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -t1329613170 -s4407 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -t1329613170 -s1942 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h -t1329613170 -s1889 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1329613170 -s92 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist -t1329613170 -s1144 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o -t1327590974 -s18412 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -t1327590974 -s9938712 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -t1329613172 -s1248184 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -t1327194721 -s204 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -t3 -s26 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -t3 -s33 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -t1327194721 -s1975 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -t1327194721 -s974 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1327194721 -s92 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -t1327194721 -s1170 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -t1327194721 -s19824 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -t1329400733 -s19884 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -t1329400733 -s27352 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -t1329400733 -s20220 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -t1329400733 -s37304 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -t1329400733 -s42740 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o -t1329400733 -s18212 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -t1329400733 -s24800 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -t1329400732 -s24544 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -t1329400733 -s40348 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -t1329400733 -s1044140 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -c000000004F3D0B9C00000000000007C4 -t1329400732 -s1988 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -t1329400733 -s73428 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -t1329400733 -s52104 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -t1329400733 -s34100 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -t1329400733 -s18328 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -t1329400733 -s4644 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -t1329400733 -s24188 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -t1329613171 -s22200 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -t1329613172 -s33788 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -t1329613172 -s24288 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o -t1327282093 -s884 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -t1329613171 -s44260 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -t1329613172 -s58808 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -t1329613172 -s20496 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -t1329613172 -s30400 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -t1329613171 -s29792 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -t1329613172 -s63460 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o -t1327974108 -s860 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -t1329400733 -s1221296 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -c000000004F4049720000000000000873 -t1329613170 -s2163 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -t1329613172 -s108652 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -t1329613172 -s42908 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -c000000004F1B6219000000000000021D -t1327194649 -s541 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -t1329613172 -s63652 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -t1329613172 -s49344 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -t1329613172 -s31548 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -t1329613172 -s5924 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -t1329613171 -s28608 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist -t1329612912 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist -t1329612912 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist -t1329612912 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist -t1329612919 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist -t1329612912 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist -t1329612911 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist -t1329612911 -s276 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -t1327271264 -s9934372 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -t1328637468 -s9956412 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -t1327244598 -s9932416 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth -t1329613171 -s9978988 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth -t1329403345 -s9973036 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth -t1329399762 -s10910168 - -NResources/Info.plist -c000000004F0A20EC0000000000000357 -t1326063852 -s855 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -s351305711.277860 -e351305711.493304 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351305711#351305711#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4464422544#1843" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -s351305711.947543 -e351305712.135080 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351305711#351305712#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4464422544#1861" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -s351305711.858670 -e351305712.025641 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351305711#351305712#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4464422544#1857" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -s351305711.061701 -e351305711.282266 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351305711#351305711#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4464422544#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -s351305711.282397 -e351305711.484126 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351305711#351305711#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4464422544#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -s351305711.754318 -e351305711.947225 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351305711#351305712#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4464422544#1855" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -s351305711.060565 -e351305711.277720 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351305711#351305711#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4464422544#1857" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -s351305711.280217 -e351305711.485167 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351305711#351305711#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4464422544#1869" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -s351305711.062953 -e351305711.279889 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351305711#351305711#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4464422544#1847" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -s351305711.493431 -e351305711.689714 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351305711#351305711#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4464422544#1855" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist" 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -s351305711.059194 -e351305711.491198 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351305711#351305711#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4464422544#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -s351305711.491335 -e351305712.027748 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351305711#351305712#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4464422544#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m -r0 - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -s351305711.488955 -e351305719.862589 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351305711#351305719#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4464422544#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -s351305711.485299 -e351305711.754186 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351305711#351305711#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4464422544#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -s351305712.025774 -e351305712.190584 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351305712#351305712#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4464422544#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -s351305711.696149 -e351305711.858533 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351305711#351305712#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4464422544#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist 0# - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies351305970#351305970#0(0"0(0#1#0"4575999296#0"0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.356219 -e351093533.423922 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351093533#351093533#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.314225 -e351093533.384062 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351093533#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.241830 -e351093533.356050 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351093533#351093533#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.311400 -e351093533.389820 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351093533#351093533#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093532.909342 -e351093533.002616 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351093532#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.078124 -e351093533.233582 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351093533#351093533#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1845" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.002775 -e351093533.077953 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351093533#351093533#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305972.282641 -e351305972.369585 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351305972#351305972#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4575997584#1843" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305972.246504 -e351305972.327581 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351305972#351305972#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4575997584#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348974893.569529 -e348974893.613561 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348974893#348974893#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4617666192#1860" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305972.141402 -e351305972.282271 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351305972#351305972#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4575997584#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305972.209224 -e351305972.316375 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351305972#351305972#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4575997584#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305971.580910 -e351305971.811974 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351305971#351305972#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4575997584#1839" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305971.812170 -e351305972.141213 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351305971#351305972#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4575997584#1851" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305971.583220 -e351305971.804314 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351305971#351305972#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4575997584#1829" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# - -CCompileC build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s349283773.971303 -e349283774.259882 -r1 -xCompileC -xbuild/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') -o [self flushMultiResults]; -o ^~~~~~~~~~~~~~~~~~~~~~~~ -o1 warning generated. -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m349283773#349283774#0(268"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') [self flushMultiResults]; ^~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. 1(22@68"Method '-flushMultiResults' not found (return type defaults to 'id')349283774#0#178#0(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#0#0#49"method * not found (return type defaults to 'id')1(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#88#33#0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4483198608#1789" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.019170 -e351093533.085021 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351093533#351093533#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093532.910800 -e351093533.019019 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351093532#351093533#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1815" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.085189 -e351093533.156564 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351093533#351093533#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093532.907984 -e351093533.112078 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351093532#351093533#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1802" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.143594 -e351093533.371441 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351093533#351093533#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1806" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.112422 -e351093533.311221 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351093533#351093533#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1794" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.156743 -e351093533.254840 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351093533.255195 -e351093533.314064 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305971.804476 -e351305971.887131 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351305971#351305972#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4575997584#1825" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305971.582020 -e351305971.860284 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351305971#351305972#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4575997584#1821" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305971.860667 -e351305972.121638 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351305971#351305972#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4575997584#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s349666908.814076 -e349666908.859934 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m349666908#349666908#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4570701456#1821" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305971.579872 -e351305972.157012 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351305971#351305972#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4575997584#1808" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305972.132173 -e351305972.246330 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351305972#351305972#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4575997584#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305972.121997 -e351305972.338493 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351305972#351305972#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4575997584#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305971.887401 -e351305972.132008 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351305971#351305972#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4575997584#1800" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305972.316529 -e351305972.387143 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351305972#351305972#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4575997584#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305972.157173 -e351305972.200172 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351305972#351305972#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4575997584#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# - -CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s351305970.749404 -e351305970.858355 -r1 -xCopyStringsFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4575997584#365" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj 0# - -CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s348887521.562165 -e348887521.625799 -r1 -xCopyStringsFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings348887521#348887521#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4623519376#374" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" -s351305970.712961 -e351305970.732881 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -xSource/SPMySQLConnection Categories/Databases & Tables.h -lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351305970#351305970#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4575997584#403" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" -s351305970.712209 -e351305970.740798 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -xSource/SPMySQLConnection Categories/Delegate & Proxy.h -lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351305970#351305970#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4575997584#401" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h" "Source/SPMySQLConnection Categories/Encoding & Conversion.h" -s348974892.484151 -e348974892.511762 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h -xSource/SPMySQLConnection Categories/Encoding & Conversion.h -lSLF07#2@64"Copy Source/SPMySQLConnection Categories/Encoding & Conversion.h348974892#348974892#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h4617666192#385" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" -s351305970.709841 -e351305970.724154 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -xSource/SPMySQLResult Categories/Field Definitions.h -lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351305970#351305970#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4575997584#398" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" -s351305970.711449 -e351305970.733648 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -xSource/SPMySQLConnection Categories/Max Packet Size.h -lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351305970#351305970#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4575997584#400" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" -s351305970.685050 -e351305970.708953 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -xSource/SPMySQLConnection Categories/Querying & Preparation.h -lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351305970#351305970#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4575997584#407" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" -s351305970.686630 -e351305970.709716 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h -xSource/SPMySQLConnection Categories/Server Info.h -lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351305970#351305970#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4575997584#396" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" -s351305970.685850 -e351305970.709531 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h -xSource/SPMySQLConnection Categories/Encoding.h -lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351305970#351305970#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4575997584#393" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h "Source/SPMySQLConnection Categories/Querying.h" -s349286646.091209 -e349286646.124156 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h -xSource/SPMySQLConnection Categories/Querying.h -lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Querying.h349286646#349286646#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h4481736336#393" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h -s351305970.687482 -e351305970.714200 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -xSPMySQL.h -lSLF07#2@14"Copy SPMySQL.h351305970#351305970#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4575997584#354" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -s351305970.683793 -e351305970.708220 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -xSource/SPMySQLConnection.h -lSLF07#2@31"Copy Source/SPMySQLConnection.h351305970#351305970#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4575997584#371" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h -s351305970.688275 -e351305970.723280 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -xSource/SPMySQLConnectionDelegate.h -lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351305970#351305970#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4575997584#379" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h -s351305970.710781 -e351305970.732411 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -xSource/SPMySQLConnectionProxy.h -lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -s351305970.684483 -e351305970.708660 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -xSource/SPMySQLConstants.h -lSLF07#2@30"Copy Source/SPMySQLConstants.h351305970#351305970#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4575997584#370" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h -s351305970.702868 -e351305970.723794 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -xSource/SPMySQLFastStreamingResult.h -lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351305970#351305970#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4575997584#380" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h Source/SPMySQLFullyStreamingResult.h -r0 - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h -s351305970.689810 -e351305970.732608 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -xSource/SPMySQLGeometryData.h -lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351305970#351305970#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4575997584#373" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h -s351305970.689068 -e351305970.714380 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -xSource/SPMySQLResult.h -lSLF07#2@27"Copy Source/SPMySQLResult.h351305970#351305970#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4575997584#367" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h -s351305970.714493 -e351305970.740982 -r1 -xCpHeader -xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -xSource/SPMySQLStreamingResult.h -lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -s348887521.548409 -e348887521.561731 -r1 -xCpHeader -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -xSource/SPMySQLConnection.h -lSLF07#2@31"Copy Source/SPMySQLConnection.h348887521#348887521#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4623519376#359" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -s348887521.549428 -e348887521.562097 -r1 -xCpHeader -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -xSource/SPMySQLConstants.h -lSLF07#2@30"Copy Source/SPMySQLConstants.h348887521#348887521#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4623519376#358" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# - -CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/Locking "Source/SPMySQLConnection Categories/Locking" -r0 - -CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -s348964064.046418 -e348964064.130069 -r1 -xCpResource -xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth348964064#348964064#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth4481736336#469" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources 0# - -CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -s349283773.968481 -e349283774.098447 -r1 -xCpResource -xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth349283773#349283774#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth4483198608#469" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources 0# - -CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" -s351093598.347160 -e351093598.359672 -r1 -xCreateUniversalBinary -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -xnormal -xx86_64 i386 -lSLF07#2@91"CreateUniversalBinary build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351093598#351093598#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864563705488#406" cd /Users/rowan/code/SPMySQLFramework /usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 -s351305972.387268 -e351305972.543329 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL -xnormal -xx86_64 -lSLF07#2@88"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351305972#351305972#0(0"0(0#0#0"4575997584#821" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 -s348887521.626568 -e348887521.650054 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -xnormal -xx86_64 -lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#819" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 -s351093533.424011 -e351093533.536477 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -xnormal -xi386 -lSLF07#2@126"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351093533#351093533#0(0"0(0#0#0"4566089360#855" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 -s351093532.906597 -e351093533.143415 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -xnormal -xx86_64 -lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351093532#351093533#0(0"0(0#0#0"4566089360#861" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL 0# - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -s351305970.680288 -e351305970.683712 -r1 -xProcessInfoPlistFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist -xResources/Info.plist -lSLF07#2@28"Process Resources/Info.plist351305970#351305970#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4575997696#230" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist 0# - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist -s348887521.544786 -e348887521.548292 -r1 -xProcessInfoPlistFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -xResources/Info.plist -lSLF07#2@28"Process Resources/Info.plist348887521#348887521#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4623519488#239" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348964063.306931 -e348964064.045425 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348964063#348964064#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4481736336#1693" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s349286504.307800 -e349286505.895897 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch349286504#349286505#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4603338384#1672" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s350330267.452714 -e350330268.654275 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch350330267#350330268#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4596461200#1682" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348937397.517447 -e348937398.178688 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348937397#348937398#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4546195088#1693" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351305970.858533 -e351305971.579762 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351305970#351305971#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4575997584#1682" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351096144.652465 -e351096145.473201 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -oclang: warning: argument unused during compilation: '-flto' -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351096144#351096145#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4563705488#1688" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351092561.457146 -e351092562.279771 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092561#351092562#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4553227920#1678" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers -s351305970.677018 -e351305970.680208 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers -xVersions/Current/Headers -lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources -s351305970.672373 -e351305970.677773 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources -xVersions/Current/Resources -lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources351305970#351305970#0(0"0(0#0#0"4575997584#160" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -s351305970.673003 -e351305970.676831 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL -xVersions/Current/SPMySQL -lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A -s351305970.671411 -e351305970.676692 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current -xA -lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current351305970#351305970#0(0"0(0#0#0"4575997584#142" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers -s348887521.541748 -e348887521.544706 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -xVersions/Current/Headers -lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348887521#348887521#0(0"0(0#0#0"4623519376#165" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources -s348887521.536417 -e348887521.542622 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -xVersions/Current/Resources -lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348887521#348887521#0(0"0(0#0#0"4623519376#169" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework -s348887521.537128 -e348887521.541676 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -xVersions/Current/SPMySQLFramework -lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#183" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A -s348887521.535560 -e348887521.541537 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -xA -lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348887521#348887521#0(0"0(0#0#0"4623519376#151" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current 0# - -CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework -s351305972.543411 -e351305972.548185 -r1 -xTouch -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework -lSLF07#2@70"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework351305972#351305972#0(0"0(0#0#0"4575997584#129" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework 0# - -CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -s348887521.650171 -e348887521.653602 -r1 -xTouch -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348887521#348887521#0(0"0(0#0#0"4623519376#138" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework 0# - diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList deleted file mode 100644 index ee6600fd..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +++ /dev/null @@ -1,4 +0,0 @@ -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep deleted file mode 100644 index 4f116615..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep +++ /dev/null @@ -1,26 +0,0 @@ -8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o -8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o -8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o -8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o -6f09ddca8eca2e7ded449cf19c21fcae 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -ddaf01dd2bbce412cdb434235cc79158 c84f5c95718af3fdaaa6238e43032d32 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o -00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh -ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap deleted file mode 100644 index 4b4f3bae..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap deleted file mode 100644 index dd8b535d..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap deleted file mode 100644 index ae239724..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap deleted file mode 100644 index 75089206..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep deleted file mode 100644 index 4f116615..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep +++ /dev/null @@ -1,26 +0,0 @@ -8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o -8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o -8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o -8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o -6f09ddca8eca2e7ded449cf19c21fcae 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -ddaf01dd2bbce412cdb434235cc79158 c84f5c95718af3fdaaa6238e43032d32 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o -00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh -ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap deleted file mode 100644 index 61085179..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep deleted file mode 100644 index d5962a30..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep +++ /dev/null @@ -1,26 +0,0 @@ -afdc31850786cd60286b633ffd235a8b 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -ddaf01dd2bbce412cdb434235cc79158 089ab0daf8c610e06f89dc4022018b17 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o -8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o -8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o -8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o -000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o -00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh -ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat deleted file mode 100644 index 81439798..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat +++ /dev/null @@ -1,573 +0,0 @@ -TSPMySQLFramework -v7 -r0 -t348887378.697721 -cCheck dependencies -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework -cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist -cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 -cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004C238B9B00000000000000EE -t1277397915 -s238 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h -c0000000040C4AA6800000000000001E5 -t1086630504 -s485 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h -c0000000047BA9930000000000000055B -t1203411248 -s1371 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004E2DE5120000000000006560 -t1311630610 -s25952 - -N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings -c000000004F0A19CD0000000000000030 -t1326062029 -s48 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h -c000000004F130858000000000000070C -t1326647384 -s1804 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h -c000000004F13085800000000000005D0 -t1326647384 -s1488 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h -c000000004F13085800000000000083EB -t1326647384 -s33771 -i -i -i -i"mysql_version.h" -i"mysql_com.h" -i"mysql_time.h" -i"my_list.h" -i"typelib.h" -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h -c000000004F130858000000000000503F -t1326647384 -s20543 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h -c000000004F1308580000000000000831 -t1326647384 -s2097 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h -c000000004F130858000000000000032B -t1326647384 -s811 -i - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h -c000000004F13085800000000000005DD -t1326647384 -s1501 -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a -c000000004F13085B0000000000445164 -t1326647387 -s4477284 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient_r.a -c000000004F13085B000000000044DF24 -t1326647387 -s4513572 - -N/Users/rowan/code/SPMySQLFramework/SPMySQLFramework_Prefix.pch -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h -c000000004F12164C0000000000000435 -t1326585420 -s1077 -i"SPMySQLConnection.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m -c000000004F1216570000000000000439 -t1326585431 -s1081 -i"Encoding & Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -c000000004F12112300000000000000E9 -t1326584099 -s233 -i"Encoding & Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m -c000000004F120FE000000000000000C5 -t1326583776 -s197 -i"KeepAlive.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h -c000000004F121662000000000000042B -t1326585442 -s1067 -i"SPMySQLConnection.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -c000000004F121678000000000000042A -t1326585464 -s1066 -i"Ping & KeepAlive.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying -c000000004F12107E00000000000000C0 -t1326583934 -s192 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m -c000000004F12159C0000000000000410 -t1326585244 -s1040 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h -c000000004F121685000000000000041F -t1326585477 -s1055 -i"SPMySQLConnection.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -c000000004F1216920000000000000419 -t1326585490 -s1049 -i"Server Info.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m -c000000004F1211E200000000000000C8 -t1326584290 -s200 -i"ServerInfo.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h -c000000004F12172C00000000000007B7 -t1326585644 -s1975 -i"mysql.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -c000000004F12176A00000000000006A1 -t1326585706 -s1697 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h -c000000004F120F3700000000000003CE -t1326583607 -s974 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -c000000004F1213EF00000000000000E0 -t1326584815 -s224 -i -i"SPMySQLConnection.h" -i"SPMySQLConstants.h" - -N/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh -c000000004F1306D600000000000010CF -t1326646998 -s4303 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -t1327193631 -s204 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -t3 -s26 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -t3 -s33 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -t1327192330 -s1975 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -t1327192330 -s974 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1327192330 -s92 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -t1327192330 -s1170 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o -t1327191371 -s860 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -t1327191371 -s9930088 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh -t1326678637 -s4303 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -t1327193631 -s19824 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o -t1327192336 -s884 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o -t1327192336 -s880 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o -t1327192336 -s30944 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -c000000004F1B590A0000000000000219 -t1327192330 -s537 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o -t1327192336 -s864 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -t1326678638 -s9811836 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -t1327192335 -s9930088 - -NInfo.plist -c00000000000000000000000000000000 -t2 -s0 - -NResources/Info.plist -c000000004F0A20EC0000000000000357 -t1326063852 -s855 - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies348887378#348887378#0(0"0(0#1#0"4643620160#0"0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885136.093542 -e348885136.470816 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348885136#348885136#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4659613328#1889" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885136.090667 -e348885136.473067 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m348885136#348885136#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4659613328#1879" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885136.095529 -e348885136.471001 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m348885136#348885136#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4659613328#1869" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" 0# - -CCompileC build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348884170.905845 -e348884171.494330 -r1 -xCompileC -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m348884170#348884171#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4623957648#1841" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885136.082008 -e348885136.564440 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m348885136#348885136#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4659613328#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s348885130.166805 -e348885130.255427 -r1 -xCopyStringsFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings348885130#348885130#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4659613328#374" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -s348885130.154011 -e348885130.166572 -r1 -xCpHeader -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -xSource/SPMySQLConnection.h -lSLF07#2@31"Copy Source/SPMySQLConnection.h348885130#348885130#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4659613328#359" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -s348885130.154877 -e348885130.166731 -r1 -xCpHeader -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -xSource/SPMySQLConstants.h -lSLF07#2@30"Copy Source/SPMySQLConstants.h348885130#348885130#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4659613328#358" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h "MySQL Client Libraries/include/my_alloc.h" -r0 - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h "MySQL Client Libraries/include/my_list.h" -r0 - -CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying "Source/SPMySQLConnection Categories/Querying" -r0 - -CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -s348278332.380397 -e348278332.430839 -r1 -xCpResource -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth348278332#348278332#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth4625407632#478" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# - -CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -s348884170.904955 -e348884171.416232 -r1 -xCpResource -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth348884170#348884171#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth4623957648#478" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# - -CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh build-mysql-client.sh -s348371437.536314 -e348371437.545070 -r1 -xCpResource -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh -xbuild-mysql-client.sh -lSLF07#2@26"Copy build-mysql-client.sh348371437#348371437#0(0"0(0#0#56"/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh4660764304#356" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/build-mysql-client.sh /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 -s348886430.929802 -e348886431.970283 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -xnormal -xx86_64 -lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348886430#348886431#0(0"0(0#0#0"4621598352#818" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework 0# - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Info.plist -r0 - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist -s348885130.149865 -e348885130.153888 -r1 -xProcessInfoPlistFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -xResources/Info.plist -lSLF07#2@28"Process Resources/Info.plist348885130#348885130#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4659613440#239" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348371437.603436 -e348371439.026191 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348371437#348371439#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4660764304#1723" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885130.274373 -e348885136.081829 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348885130#348885136#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4659613328#1723" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers -s348885130.146238 -e348885130.149731 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -xVersions/Current/Headers -lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348885130#348885130#0(0"0(0#0#0"4659613328#165" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources -s348885130.139953 -e348885130.145964 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -xVersions/Current/Resources -lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348885130#348885130#0(0"0(0#0#0"4659613328#169" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework -s348885130.140931 -e348885130.146133 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -xVersions/Current/SPMySQLFramework -lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348885130#348885130#0(0"0(0#0#0"4659613328#183" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A -s348885130.138172 -e348885130.145709 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -xA -lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348885130#348885130#0(0"0(0#0#0"4659613328#151" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current 0# - -CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -s348886431.970369 -e348886431.981881 -r1 -xTouch -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348886431#348886431#0(0"0(0#0#0"4621598352#138" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework 0# - diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat deleted file mode 100644 index a792a264..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat +++ /dev/null @@ -1,573 +0,0 @@ -TSPMySQLFramework -v7 -r0 -t348885137.132500 -cCheck dependencies -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework -cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers -cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist -cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 -cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004C238B9B00000000000000EE -t1277397915 -s238 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h -c0000000040C4AA6800000000000001E5 -t1086630504 -s485 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h -c0000000047BA9930000000000000055B -t1203411248 -s1371 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004E2DE5120000000000006560 -t1311630610 -s25952 - -N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings -c000000004F0A19CD0000000000000030 -t1326062029 -s48 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h -c000000004F130858000000000000070C -t1326647384 -s1804 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h -c000000004F13085800000000000005D0 -t1326647384 -s1488 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h -c000000004F13085800000000000083EB -t1326647384 -s33771 -i -i -i -i"mysql_version.h" -i"mysql_com.h" -i"mysql_time.h" -i"my_list.h" -i"typelib.h" -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h -c000000004F130858000000000000503F -t1326647384 -s20543 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h -c000000004F1308580000000000000831 -t1326647384 -s2097 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h -c000000004F130858000000000000032B -t1326647384 -s811 -i - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h -c000000004F13085800000000000005DD -t1326647384 -s1501 -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a -c000000004F13085B0000000000445164 -t1326647387 -s4477284 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient_r.a -c000000004F13085B000000000044DF24 -t1326647387 -s4513572 - -N/Users/rowan/code/SPMySQLFramework/SPMySQLFramework_Prefix.pch -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h -c000000004F12164C0000000000000435 -t1326585420 -s1077 -i"SPMySQLConnection.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m -c000000004F1216570000000000000439 -t1326585431 -s1081 -i"Encoding & Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -c000000004F12112300000000000000E9 -t1326584099 -s233 -i"Encoding & Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m -c000000004F120FE000000000000000C5 -t1326583776 -s197 -i"KeepAlive.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h -c000000004F121662000000000000042B -t1326585442 -s1067 -i"SPMySQLConnection.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -c000000004F121678000000000000042A -t1326585464 -s1066 -i"Ping & KeepAlive.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying -c000000004F12107E00000000000000C0 -t1326583934 -s192 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m -c000000004F12159C0000000000000410 -t1326585244 -s1040 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h -c000000004F121685000000000000041F -t1326585477 -s1055 -i"SPMySQLConnection.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -c000000004F1216920000000000000419 -t1326585490 -s1049 -i"Server Info.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.h -c00000000000000000000000000000000 -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m -c000000004F1211E200000000000000C8 -t1326584290 -s200 -i"ServerInfo.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h -c000000004F12172C00000000000007B7 -t1326585644 -s1975 -i"mysql.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -c000000004F12176A00000000000006A1 -t1326585706 -s1697 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h -c000000004F120F3700000000000003CE -t1326583607 -s974 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -c000000004F1213EF00000000000000E0 -t1326584815 -s224 -i -i"SPMySQLConnection.h" -i"SPMySQLConstants.h" - -N/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh -c000000004F1306D600000000000010CF -t1326646998 -s4303 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -t1327192337 -s204 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -t3 -s26 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -t3 -s33 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -t1327192330 -s1975 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -t1327192330 -s974 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1327192330 -s92 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -t1327192330 -s1170 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o -t1327191371 -s860 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -t1327191371 -s9930088 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh -t1326678637 -s4303 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -t1327192337 -s19824 - -N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o -t1327192336 -s884 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o -t1327192336 -s880 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o -t1327192336 -s30944 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -c000000004F1B590A0000000000000219 -t1327192330 -s537 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o -t1327192336 -s864 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -t1326678638 -s9811836 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -t1327192335 -s9930088 - -NInfo.plist -c00000000000000000000000000000000 -t2 -s0 - -NResources/Info.plist -c000000004F0A20EC0000000000000357 -t1326063852 -s855 - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies348885130#348885130#0(0"0(0#1#0"4659615040#0"0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885136.093542 -e348885136.470816 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348885136#348885136#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4659613328#1889" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885136.090667 -e348885136.473067 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m348885136#348885136#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4659613328#1879" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885136.095529 -e348885136.471001 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m348885136#348885136#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4659613328#1869" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" 0# - -CCompileC build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348884170.905845 -e348884171.494330 -r1 -xCompileC -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m348884170#348884171#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4623957648#1841" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885136.082008 -e348885136.564440 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m348885136#348885136#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4659613328#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s348885130.166805 -e348885130.255427 -r1 -xCopyStringsFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings348885130#348885130#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4659613328#374" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -s348885130.154011 -e348885130.166572 -r1 -xCpHeader -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h -xSource/SPMySQLConnection.h -lSLF07#2@31"Copy Source/SPMySQLConnection.h348885130#348885130#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4659613328#359" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -s348885130.154877 -e348885130.166731 -r1 -xCpHeader -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h -xSource/SPMySQLConstants.h -lSLF07#2@30"Copy Source/SPMySQLConstants.h348885130#348885130#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4659613328#358" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers 0# - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h "MySQL Client Libraries/include/my_alloc.h" -r0 - -CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h "MySQL Client Libraries/include/my_list.h" -r0 - -CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying "Source/SPMySQLConnection Categories/Querying" -r0 - -CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -s348278332.380397 -e348278332.430839 -r1 -xCpResource -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth348278332#348278332#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth4625407632#478" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# - -CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -s348884170.904955 -e348884171.416232 -r1 -xCpResource -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth348884170#348884171#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth4623957648#478" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# - -CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh build-mysql-client.sh -s348371437.536314 -e348371437.545070 -r1 -xCpResource -xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh -xbuild-mysql-client.sh -lSLF07#2@26"Copy build-mysql-client.sh348371437#348371437#0(0"0(0#0#56"/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh4660764304#356" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/build-mysql-client.sh /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 -s348885136.569985 -e348885137.125091 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -xnormal -xx86_64 -lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348885136#348885137#0(0"0(0#0#0"4659613328#819" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name /Users/rowan/Library/Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework 0# - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Info.plist -r0 - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist -s348885130.149865 -e348885130.153888 -r1 -xProcessInfoPlistFile -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist -xResources/Info.plist -lSLF07#2@28"Process Resources/Info.plist348885130#348885130#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4659613440#239" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -r0 - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348371437.603436 -e348371439.026191 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348371437#348371439#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4660764304#1723" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s348885130.274373 -e348885136.081829 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348885130#348885136#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4659613328#1723" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers -s348885130.146238 -e348885130.149731 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers -xVersions/Current/Headers -lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348885130#348885130#0(0"0(0#0#0"4659613328#165" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources -s348885130.139953 -e348885130.145964 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources -xVersions/Current/Resources -lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348885130#348885130#0(0"0(0#0#0"4659613328#169" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework -s348885130.140931 -e348885130.146133 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework -xVersions/Current/SPMySQLFramework -lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348885130#348885130#0(0"0(0#0#0"4659613328#183" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A -s348885130.138172 -e348885130.145709 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current -xA -lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348885130#348885130#0(0"0(0#0#0"4659613328#151" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current 0# - -CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -s348885137.125179 -e348885137.132458 -r1 -xTouch -x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework -lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348885137#348885137#0(0"0(0#0#0"4659613328#138" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework 0# - diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL deleted file mode 100755 index 8fe29d67..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList deleted file mode 100644 index 9fdfe40b..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +++ /dev/null @@ -1,16 +0,0 @@ -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL deleted file mode 100755 index ec8eb40c..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList deleted file mode 100644 index 7e49b0b0..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +++ /dev/null @@ -1,16 +0,0 @@ -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap deleted file mode 100644 index f8ade402..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap deleted file mode 100644 index dd8b535d..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap deleted file mode 100644 index 98d0d0e0..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap deleted file mode 100644 index 6bf5b59c..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep deleted file mode 100644 index 4de35ccd..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep +++ /dev/null @@ -1,95 +0,0 @@ -439b6b267f8209890f723d28a23d486a 4b20757cc119b568f6a44f68071b314e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist -439b6b267f8209890f723d28a23d486a 56aa669f6e2725c20e38e7e7b100d905 ffffffffffffffffffffffffffffffff 27688 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -a283a4cd629af2b1a1e0556e1d620019 962fbc27accfda8ad3442750db82c64e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist -a283a4cd629af2b1a1e0556e1d620019 9cf255ba5845a6c4b9aed1b7dfb7db8e ffffffffffffffffffffffffffffffff 35972 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -439b6b267f864e490f723d28a23d7232 860f100d264dcdc43237af622e039801 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist -439b6b267f864e490f723d28a23d7232 d78ca805184db49027f9b825e97a6a73 ffffffffffffffffffffffffffffffff 26136 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -a283a4cd629eb571a1e0556e1d623a41 38b57965a87836baa1b85daf14eadc93 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist -a283a4cd629eb571a1e0556e1d623a41 a9cbc4f7c6077ff53bd1fb128b2ab06e ffffffffffffffffffffffffffffffff 33948 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -439b6b267f8be2df0f723d28a23d45ee a03c16154169482a8070ae62c60edf99 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist -439b6b267f8be2df0f723d28a23d45ee 9a70daac11d7e18e79bb71dea27f6399 ffffffffffffffffffffffffffffffff 20004 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -a283a4cd629319e7a1e0556e1d620d9d 9fe528a40af0f8ad7b06f6e81b69a93b ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist -a283a4cd629319e7a1e0556e1d620d9d 6ae02c5d02e7f9b53b82c61113f8d492 ffffffffffffffffffffffffffffffff 24696 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -439b6b267f863b690f723d28a23d4e80 d48a27074632e1bf02be79dbd5f789b5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist -439b6b267f863b690f723d28a23d4e80 f071e4c0016f18ad0ad39ddf9d594b22 ffffffffffffffffffffffffffffffff 23584 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -a283a4cd629ec051a1e0556e1d6206f3 75ce23c53f49731160d25dfa18d5b9c1 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist -a283a4cd629ec051a1e0556e1d6206f3 00456ad484a527f49fcd5669eca79ed1 ffffffffffffffffffffffffffffffff 30528 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -439b6b267f8de6b70f723d28a23d59e6 2b30677c783716e865e04413bd92e5df ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist -439b6b267f8de6b70f723d28a23d59e6 c89c72d32dd6b6409906c0016fe0d3e5 ffffffffffffffffffffffffffffffff 4668 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -a283a4cd62951d8fa1e0556e1d621195 2d4ac9478dfe4f5aee1937c1c0748e17 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist -a283a4cd62951d8fa1e0556e1d621195 3e0d8d0ef435ec6d557aa0535fa1b127 ffffffffffffffffffffffffffffffff 6260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -439b6b267f8de7220f723d28a23d1ad6 b733e7c40a52dd8505c5b2796dd75995 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist -439b6b267f8de7220f723d28a23d1ad6 bd2b26673348000092076c5dfb198548 ffffffffffffffffffffffffffffffff 37748 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -a283a4cd62951c1aa1e0556e1d6252a5 b72e02bb369b9740087560158afdcbbe ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist -a283a4cd62951c1aa1e0556e1d6252a5 c33e65fd13a1e9c83ee5cf892da06e29 ffffffffffffffffffffffffffffffff 53824 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -439b6b2638392f1b0f723d28a23d5b1a 6318869f850d1695b0897111ec27b043 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist -439b6b2638392f1b0f723d28a23d5b1a 19394613896458b55a7cb73ebe96a3aa ffffffffffffffffffffffffffffffff 33152 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o -a283a4cd2521d423a1e0556e1d621369 5a6c32955c5f6ee8f99965bfdb353af0 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist -a283a4cd2521d423a1e0556e1d621369 cea9069e532073dec4f18e3317c0cb62 ffffffffffffffffffffffffffffffff 43620 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -439b6b267f829b330f723d28a23d3b18 2313008c5b9c03d401c9200b0824194f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist -439b6b267f829b330f723d28a23d3b18 a1d1ad47944de4c7d717352d8ee41cd1 ffffffffffffffffffffffffffffffff 39272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -a283a4cd629a600ba1e0556e1d62736b 72b23f7e4acf0d7cd43a861ccf0979cd ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist -a283a4cd629a600ba1e0556e1d62736b 72726ca4dbc16482d490c705a0cca6eb ffffffffffffffffffffffffffffffff 56344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -439b6b267f834ac00f723d28a23d7b26 00f8cb4f8c118a32b280cac4a7f5f912 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist -439b6b267f834ac00f723d28a23d7b26 698278bb1fb6b76e379a1715d197a6f3 ffffffffffffffffffffffffffffffff 37432 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -a283a4cd629bb1f8a1e0556e1d623355 d6f8f7bdc05588075959b7665d85a148 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist -a283a4cd629bb1f8a1e0556e1d623355 dbf1bd1373cd904a7bc89413ba8f685e ffffffffffffffffffffffffffffffff 53480 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -439b6b267f8fcbd70f723d28a23d5afa 840cceea34958ae026e1a6a7422abd43 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist -439b6b267f8fcbd70f723d28a23d5afa 026eecc232d0a3cc30ec10b820229a83 ffffffffffffffffffffffffffffffff 17924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o -a283a4cd629730efa1e0556e1d621289 1a45cf0583c2f6d0c5ef28b71b13311e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist -a283a4cd629730efa1e0556e1d621289 576e17676492de51f3b4ff0355c67670 ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -439b6b267ffe39210f723d28a23d10d4 6ab23e50abec661b85533f0373ed7b82 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist -439b6b267ffe39210f723d28a23d10d4 3537e45f298051f10c9cb0f8059bfb6d ffffffffffffffffffffffffffffffff 47608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -a283a4cd62e6c219a1e0556e1d6258a7 01d3ff94adff5e01011ea1f1d6547ef8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist -a283a4cd62e6c219a1e0556e1d6258a7 af763682c5b7d0774fb8b7aa04f2a761 ffffffffffffffffffffffffffffffff 64748 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -439b6b267f8de72c0f723d28a23d5350 61f6f624efbd36964f75b1903bffc793 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist -439b6b267f8de72c0f723d28a23d5350 0fdb9d4912994edd9ad8f08d6c6bb16a ffffffffffffffffffffffffffffffff 19480 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -a283a4cd62951c14a1e0556e1d621b23 ebca9afd47eb3bb14921cd73b821c6ec ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist -a283a4cd62951c14a1e0556e1d621b23 f005b2a61e638034ee424c772fbbb71e ffffffffffffffffffffffffffffffff 22616 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -439b6b267f87f8520f723d28a23d4008 42ed164e55c029a7b4c4b38a89ac7033 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist -439b6b267f87f8520f723d28a23d4008 0cc9e2965afd9cf9f9980f3664b38fd0 ffffffffffffffffffffffffffffffff 23220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -a283a4cd629f036aa1e0556e1d62087b fb5259f4e02966ca8ec03cb13496b9c3 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist -a283a4cd629f036aa1e0556e1d62087b c3c0c59f2f26e7e8ea47c8c2355245dd ffffffffffffffffffffffffffffffff 29120 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -439b6b267f8ae7200f723d28a23d693d 0c2a29e0435cbde181b7313d2138d245 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist -439b6b267f8ae7200f723d28a23d693d 3858879310d58b585d5eee50c003cf6d ffffffffffffffffffffffffffffffff 34248 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -a283a4cd62921c18a1e0556e1d62214e 7a8e1b1af2d39f0b365f53558db34df2 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist -a283a4cd62921c18a1e0556e1d62214e 4778e2aa93a1b99465a467babc349ef4 ffffffffffffffffffffffffffffffff 41604 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -439b6b267777f3b70f723d28a23d733f 278ccff559d0d339b5427b3e97227c34 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist -439b6b267777f3b70f723d28a23d733f e753b39a97d70a07b0f80b34cf1d60ba ffffffffffffffffffffffffffffffff 24244 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -a283a4cd6a6f088fa1e0556e1d623b4c 17de75738a31ebffc30e0d9acec20b8c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist -a283a4cd6a6f088fa1e0556e1d623b4c cf3e366704e9a0b53da7724ae9747498 ffffffffffffffffffffffffffffffff 29960 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -439b6b26772a11d90f723d28a23d23bc 06eaa9bfed37b1fe189ac69681e6e0b7 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist -439b6b26772a11d90f723d28a23d23bc 411099d8b5db1a72b3ac71a9f314206d ffffffffffffffffffffffffffffffff 69624 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -a283a4cd6a32eae1a1e0556e1d626bcf 156b5116b4235d7104ef5d5aed6dc8d6 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist -a283a4cd6a32eae1a1e0556e1d626bcf 2dab2056bb915b94e447ff6b6b6b7302 ffffffffffffffffffffffffffffffff 112588 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -c856b48c8c664baa5057d348c4c12159 93dc7b9384746b90a1a5a00a2d2c267a ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework -00000000000000000000000000000000 490a066f32c11330b9dc183e5feaa0a5 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL -64c2c8162f7ac160810601d8bbef13d3 bef62aa282175619fd7c9f84c4926565 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers -00000000000000000000000000000000 b09b03c37c09d48ba9ff8655d655a691 ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources -00000000000000000000000000000000 64c2c8162f7ac160810601d8bbef13d3 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current -8564e689a9e9e989c135fe5a12c2d3dc 328c313a68ff27be285bf9eaa64e9603 ffffffffffffffffffffffffffffffff 2249976 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL -e5aaed3e11be80dfea6341afc36c2612 938b3fdf7cc1a7b83e998c2df5062f73 ffffffffffffffffffffffffffffffff 1033464 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -000000004837395c000000000000f9fd 439b6b2637bade770f723d28a23dadf6 ffffffffffffffffffffffffffffffff 10915724 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth -abb54a59b281404a224b2ea5a1f163d2 58f07e3176178ea437841d7d8559b96f ffffffffffffffffffffffffffffffff 1209176 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -000000004837395c000000000000f9fd a283a4cd2aa2254fa1e0556e1d62e585 ffffffffffffffffffffffffffffffff 9978580 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth -000000004f0a19cd0000000000000030 32d2cc5a41e00bf1c7b68229426811c5 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 4f9a17073f384a631a0b57331f5e11b3 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -00000000000000000000000000000000 2766745cb0b35c12ee92c246c863d42c ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -00000000000000000000000000000000 434b9e8908293ad5d73477ca173077ba ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -00000000000000000000000000000000 135056b04bbacc11ca8a8649aeeb2877 ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -00000000000000000000000000000000 a689c4d14a4cf06c58da73cf86203088 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -00000000000000000000000000000000 c7fea678f5ad55770a22fa3082f7e22c ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -00000000000000000000000000000000 92cbef9cd1417f6bd89044bcaa311e1f ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -00000000000000000000000000000000 53af4c31e414b382e748c352ca106010 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -00000000000000000000000000000000 d69623b42586a0e7a77bdc6b3db9a25b ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -00000000000000000000000000000000 0eb2245fae48e46f7fc23da0fe3c1ddb ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -ffffffffffffffffffffffffffffffff 69d459ff0fce61e08b901a4581295b87 ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -00000000000000000000000000000000 d019504419571a24515d592e5f08f04b ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h -00000000000000000000000000000000 ae2101d928981cd4ebf971f2479d87cb ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h -00000000000000000000000000000000 84d197301f6feaa3a9bc5988c3ad37c3 ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -00000000000000000000000000000000 78d0797c1e982629b44e2630b827a16e ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 67c2f60da643366245a35771986df9fe ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 0a0b806b8f45060393d0573e7f081622 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist -000000000776121c000000000000e579 41f49ec3b5bf2eaf6c43a4003fca1b9b ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth -000000000776121c000000000000e579 cfc4e04ca720d02330be85b813cfcf1c ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth -ffffffffffffffffffffffffffffffff ad07be3761cbe476b57ac6ed1e8255a9 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep deleted file mode 100644 index cfa1c0eb..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep +++ /dev/null @@ -1,88 +0,0 @@ -6308d6751e7867dc73b4d04343f2be5d 58f07e3176178ea437841d7d8559b96f ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -41f49ec3b2c04d306c43a4003fcadd6c 03507d629f5e29f63af0ac7ba6dc00b6 ffffffffffffffffffffffffffffffff 42192 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -cfc4e04ca05fb3bc30be85b813cf09eb 31b776da13e8248a547c63a11275cfde ffffffffffffffffffffffffffffffff 42336 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -41f49ec3b2cc1f266c43a4003fcaeaa8 9606c190f572973e1850112a08da3ac1 ffffffffffffffffffffffffffffffff 34272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -cfc4e04ca053e1aa30be85b813cf3e2f 6988d13cca45afb73fc7490cce2343e2 ffffffffffffffffffffffffffffffff 34592 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -41f49ec3b2c1c6906c43a4003fcae1c6 ecf94c388c9ca9e23c9d988666a40c1c ffffffffffffffffffffffffffffffff 39328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -cfc4e04ca05e381c30be85b813cf3541 39637492f961863a0427cc0a0eb65d1c ffffffffffffffffffffffffffffffff 39696 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -41f49ec3b2c93e876c43a4003fcaf30e edf336df89ff7744506cddbd9592aac9 ffffffffffffffffffffffffffffffff 5184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -cfc4e04ca056c00b30be85b813cf2789 fb1ea18eee145eadc5c662a4440d9002 ffffffffffffffffffffffffffffffff 4752 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -41f49ec3b2c93f126c43a4003fcab03e c8dfc9a120b7e843c07b7c00b7ea7692 ffffffffffffffffffffffffffffffff 49184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -cfc4e04ca056c19e30be85b813cf64b9 4b222ae690ea81517cacc4256c91ad1f ffffffffffffffffffffffffffffffff 49888 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -41f49ec3b2c93ed16c43a4003fcaf0dd b2e82e54cfd1482362d0f12c64527d2f ffffffffffffffffffffffffffffffff 31104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -cfc4e04ca056c05d30be85b813cf245a 134a551d0403213199e53d87b1c1cedf ffffffffffffffffffffffffffffffff 31472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -41f49ec3b2cb3ce26c43a4003fca91f0 ef6db5c5b3ebc6a9b45b9090e2f97468 ffffffffffffffffffffffffffffffff 44352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -cfc4e04ca054c26e30be85b813cf4577 ce9bfc808078fad5023b745a48fe80d4 ffffffffffffffffffffffffffffffff 47472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -41f49ec3b2c4b8d26c43a4003fcadca9 cc92ff84816ced60c6684dc17ebd8217 ffffffffffffffffffffffffffffffff 51056 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -cfc4e04ca05b465e30be85b813cf082e f3168ca9e236427bdc0dcc8e47d7d822 ffffffffffffffffffffffffffffffff 51472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -41f49ec3b2c8362e6c43a4003fcaf5bc b15a41b72af520c5cd69add5eda2fefd ffffffffffffffffffffffffffffffff 32128 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o -cfc4e04ca057c8a230be85b813cf213b efa1c2aaf4b3ad44d38b92be58c25643 ffffffffffffffffffffffffffffffff 32080 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -41f49ec3b2c547fe6c43a4003fcaab0b fae5aebfc2fab07080989804e77863de ffffffffffffffffffffffffffffffff 60496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -cfc4e04ca05ab97230be85b813cf7f8c c2644e4f3db1faab7fd253d476ea8e3b ffffffffffffffffffffffffffffffff 62272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -41f49ec3b2c93f1c6c43a4003fcaf9b8 f21c7d60b301067dedd50f66022803d8 ffffffffffffffffffffffffffffffff 33872 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -cfc4e04ca056c19030be85b813cf2d3f e6f6e288356bd1d16212e885b0fee75f ffffffffffffffffffffffffffffffff 33488 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -41f49ec3b2c005ab6c43a4003fcaef4e 03175b9fa2b06f05fa23fd7faa9b9218 ffffffffffffffffffffffffffffffff 39472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -cfc4e04ca05ffb2730be85b813cf3bc9 5711492da652a4637f6c9781ecb4b386 ffffffffffffffffffffffffffffffff 39584 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -41f49ec3b2ce3f106c43a4003fcac3d5 a934077ed139414bb8d812ee84d117ac ffffffffffffffffffffffffffffffff 51968 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -cfc4e04ca051c19c30be85b813cf1752 a49b1d0858f0c3df4366fd814f84826d ffffffffffffffffffffffffffffffff 52336 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -41f49ec3ba403c816c43a4003fcad835 99512503d4688aac9ac694b8ea58d557 ffffffffffffffffffffffffffffffff 39568 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -cfc4e04ca8dfc20d30be85b813cf0cb2 e1cd3dcc8ad611b1343d9f5df8574cae ffffffffffffffffffffffffffffffff 40032 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -41f49ec3ba1092556c43a4003fca8ffa 1d9b45c10b50d3efe24967cf1ea784e3 ffffffffffffffffffffffffffffffff 99344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -cfc4e04ca88f6cd930be85b813cf5b7d 8a1f4c954309b05d14534c3cd15f8dbf ffffffffffffffffffffffffffffffff 105824 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -1b2a5b29ba9d985868da2a46ff06f488 938b3fdf7cc1a7b83e998c2df5062f73 ffffffffffffffffffffffffffffffff 1015004 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -00000000077611b4000000000000e578 41f49ec3b5bf2eaf6c43a4003fca1b9b ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth -00000000077611b4000000000000e578 cfc4e04ca720d02330be85b813cfcf1c ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth -000000004f0a19cd0000000000000030 32d2cc5a41e00bf1c7b68229426811c5 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 434b9e8908293ad5d73477ca173077ba ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -00000000000000000000000000000000 135056b04bbacc11ca8a8649aeeb2877 ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -00000000000000000000000000000000 2766745cb0b35c12ee92c246c863d42c ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -00000000000000000000000000000000 a689c4d14a4cf06c58da73cf86203088 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -00000000000000000000000000000000 c7fea678f5ad55770a22fa3082f7e22c ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -00000000000000000000000000000000 4f9a17073f384a631a0b57331f5e11b3 ffffffffffffffffffffffffffffffff 1601 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -00000000000000000000000000000000 53af4c31e414b382e748c352ca106010 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -00000000000000000000000000000000 0eb2245fae48e46f7fc23da0fe3c1ddb ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -00000000000000000000000000000000 d69623b42586a0e7a77bdc6b3db9a25b ffffffffffffffffffffffffffffffff 4174 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -00000000000000000000000000000000 69d459ff0fce61e08b901a4581295b87 ffffffffffffffffffffffffffffffff 2149 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -00000000000000000000000000000000 ae2101d928981cd4ebf971f2479d87cb ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h -00000000000000000000000000000000 84d197301f6feaa3a9bc5988c3ad37c3 ffffffffffffffffffffffffffffffff 3024 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -00000000000000000000000000000000 78d0797c1e982629b44e2630b827a16e ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -00000000000000000000000000000000 d019504419571a24515d592e5f08f04b ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h -00000000000000000000000000000000 67c2f60da643366245a35771986df9fe ffffffffffffffffffffffffffffffff 5344 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -00000000000000000000000000000000 0a0b806b8f45060393d0573e7f081622 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist -64c2c8162f7ac160810601d8bbef13d3 bef62aa282175619fd7c9f84c4926565 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers -00000000000000000000000000000000 64c2c8162f7ac160810601d8bbef13d3 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current -00000000000000000000000000000000 490a066f32c11330b9dc183e5feaa0a5 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL -00000000000000000000000000000000 b09b03c37c09d48ba9ff8655d655a691 ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap deleted file mode 100644 index 406d3bca..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist deleted file mode 100644 index c3f62e32..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - files - - - diagnostics - - - - \ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat deleted file mode 100644 index bd54a9b3..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat +++ /dev/null @@ -1,1690 +0,0 @@ -TSPMySQL.framework -v7 -r0 -t351386739.899509 -cCheck dependencies -cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A -cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources -cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers -cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h -cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 -cCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -cTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004C238B9B00000000000000EE -t1277397915 -s238 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h -c0000000040C4AA6800000000000001E5 -t1086630504 -s485 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h -c0000000047BAC506000000000000235B -t1203422470 -s9051 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration -c000000004B760CDC00000000000371FC -t1266027740 -s225788 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h -c0000000047E8839E0000000000000746 -t1206420382 -s1862 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h -c0000000047BA9932000000000000380F -t1203411250 -s14351 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h -c0000000047BA9930000000000000055B -t1203411248 -s1371 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib -c000000004B760D050000000000006EE8 -t1266027781 -s28392 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004E2DE5120000000000006560 -t1311630610 -s25952 - -N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings -c000000004F0A19CD0000000000000030 -t1326062029 -s48 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h -c000000004F130858000000000000070C -t1326647384 -s1804 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h -c000000004F13085800000000000005D0 -t1326647384 -s1488 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h -c000000004F13085800000000000083EB -t1326647384 -s33771 -i -i -i -i"mysql_version.h" -i"mysql_com.h" -i"mysql_time.h" -i"my_list.h" -i"typelib.h" -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h -c000000004F130858000000000000503F -t1326647384 -s20543 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h -c000000004F1308580000000000000831 -t1326647384 -s2097 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h -c000000004F130858000000000000032B -t1326647384 -s811 -i - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h -c000000004F13085800000000000005DD -t1326647384 -s1501 -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a -c000000004F13085B0000000000445164 -t1326647387 -s4477284 - -N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h -c000000004F3FDF050000000000000EFA -t1329585925 -s3834 -i"Ping & KeepAlive.h" -i"Locking.h" -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/SPMySQL.h -c000000004F40545B00000000000008AA -t1329615963 -s2218 -i"SPMySQLConstants.h" -i"SPMySQLStringAdditions.h" -i"SPMySQLConnectionDelegate.h" -i"SPMySQLConnectionProxy.h" -i"SPMySQLConnection.h" -i"Delegate & Proxy.h" -i"Databases & Tables.h" -i"Max Packet Size.h" -i"Querying & Preparation.h" -i"Encoding.h" -i"Server Info.h" -i"SPMySQLResult.h" -i"SPMySQLStreamingResult.h" -i"SPMySQLFastStreamingResult.h" -i"Field Definitions.h" -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h -c000000004F307BEF00000000000009A8 -t1328577519 -s2472 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -c000000004F307BE80000000000000EF3 -t1328577512 -s3827 -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h -c000000004F3800F70000000000000711 -t1329070327 -s1809 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -c000000004F3D0465000000000000245E -t1329398885 -s9310 -i"Databases & Tables.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h -c000000004F3452E5000000000000057E -t1328829157 -s1406 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -c000000004F3CFAE100000000000011ED -t1329396449 -s4589 -i"Delegate & Proxy.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h -c000000004F340C6A000000000000079C -t1328811114 -s1948 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -c000000004F330C610000000000003AAA -t1328745569 -s15018 -i"Encoding.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h -c000000004F307BFB00000000000005E6 -t1328577531 -s1510 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -c000000004F3CFAF70000000000000E61 -t1329396471 -s3681 -i"Locking.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h -c000000004F398B4100000000000005F3 -t1329171265 -s1523 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -c000000004F3CFAF30000000000001A0E -t1329396467 -s6670 -i"Max Packet Size.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h -c000000004F3172E100000000000007C2 -t1328640737 -s1986 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -c000000004F4184B40000000000001D1F -t1329693876 -s7455 -i"Ping & KeepAlive.h" -i"Locking.h" -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h -c000000004F40542D0000000000001194 -t1329615917 -s4500 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -c000000004F405438000000000000554B -t1329615928 -s21835 -i"SPMySQLConnection.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h -c000000004F3848660000000000000761 -t1329088614 -s1889 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -c000000004F3CFAEF0000000000001614 -t1329396463 -s5652 -i"Server Info.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h -c000000004F3D27C200000000000014E2 -t1329407938 -s5346 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -c000000004F4184A80000000000006ED3 -t1329693864 -s28371 -i"SPMySQL Private APIs.h" -i -i -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h -c000000004F36BCAB0000000000001041 -t1328987307 -s4161 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h -c000000004F327BDC0000000000000884 -t1328708572 -s2180 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h -c000000004F39B228000000000000092D -t1329181224 -s2349 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h -c000000004F417F8900000000000006A2 -t1329692553 -s1698 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -c000000004F41837B00000000000034CA -t1329693563 -s13514 -i"SPMySQLFastStreamingResult.h" -i"SPMySQL Private APIs.h" -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -c000000004F307C5D00000000000000E7 -t1328577629 -s231 -i -i"mysql.h" -i"SPMySQL.h" -i"SPMySQLUtilities.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h -c000000004F32785D00000000000006DB -t1328707677 -s1755 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -c000000004F3D044500000000000069C8 -t1329398853 -s27080 -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h -c000000004F307BB8000000000000059A -t1328577464 -s1434 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -c000000004F307BB10000000000004B47 -t1328577457 -s19271 -i"Field Definitions.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h -c000000004F415CF40000000000001137 -t1329683700 -s4407 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -c000000004F415CEF0000000000003B6C -t1329683695 -s15212 -i"SPMySQLResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h -c000000004F401EC60000000000000796 -t1329602246 -s1942 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -c000000004F415D940000000000001E81 -t1329683860 -s7809 -i"SPMySQLStreamingResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h -c000000004F32FAD700000000000005CE -t1328741079 -s1486 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -c000000004F32FB4B0000000000000823 -t1328741195 -s2083 -i"SPMySQLStringAdditions.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h -c000000004F307D2800000000000006F7 -t1328577832 -s1783 -i - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework -t1329693917 -s204 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources -t3 -s26 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -t1329398513 -s1809 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -t1329398513 -s1406 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h -t1329398513 -s1948 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -t1329398513 -s1434 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -t1329398513 -s1523 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -t1329685305 -s4500 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -t1329685305 -s2218 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -t1329613179 -s5346 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -t1329398513 -s4161 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -t1329398513 -s2180 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -t1329398513 -s2349 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -t1329693268 -s1698 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -t1329398513 -s1755 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -t1329685305 -s4407 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -t1329613179 -s1942 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h -t1329398513 -s1889 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1329398513 -s92 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist -t1329398513 -s1144 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL -t1329693917 -s2249976 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -t1329693271 -s19480 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -t1329693271 -s26136 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -t1329693271 -s20004 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -t1329693270 -s34248 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -t1329693271 -s37748 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o -t1329693271 -s17924 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -t1329693271 -s23584 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -t1329693917 -s24244 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -t1329693271 -s47608 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -t1329693917 -s1033464 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -c000000004F40497B0000000000000873 -t1329613179 -s2163 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -t1329693917 -s69624 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o -t1329693917 -s33152 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -t1329693271 -s39272 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -t1329693271 -s37432 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -t1329693271 -s27688 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -t1329693271 -s4668 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -t1329693270 -s23220 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -t1329693270 -s22616 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -t1329693270 -s33948 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -t1329693270 -s24696 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -t1329693270 -s41604 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -t1329693270 -s53824 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -t1329693270 -s20496 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -t1329693270 -s30528 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -t1329693917 -s29960 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -t1329693270 -s64748 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -t1329693917 -s1209176 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -c000000004F40497B0000000000000893 -t1329613179 -s2195 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -t1329693917 -s112588 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -t1329693917 -s43620 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -t1329693270 -s56344 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -t1329693270 -s53480 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -t1329693270 -s35972 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -t1329693270 -s6260 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -t1329693269 -s29120 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist -t1329693927 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist -t1329693928 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist -t1329693928 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist -t1329693927 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist -t1329693927 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist -t1329693928 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist -t1329693927 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist -t1329693927 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist -t1329693928 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist -t1329693939 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist -t1329693927 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist -t1329693928 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist -t1329693927 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist -t1329693927 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist -t1329693925 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist -t1329693925 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist -t1329693925 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist -t1329693925 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist -t1329693925 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist -t1329693925 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist -t1329693939 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist -t1329693926 -s276 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist -t1329693925 -s276 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth -t1329399806 -s10910168 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth -t1329693269 -s9978580 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth -t1329693269 -s10915724 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth -t1329399805 -s9973036 - -NResources/Info.plist -c000000004F0A20EC0000000000000357 -t1326063852 -s855 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -s351386726.931095 -e351386727.138087 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386726#351386727#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4456279696#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -s351386728.125354 -e351386728.328516 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386728#351386728#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4456279696#1854" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -s351386728.009400 -e351386728.206574 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386728#351386728#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4456279696#1850" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -s351386726.732878 -e351386726.930918 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386726#351386726#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4456279696#1832" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -s351386727.098607 -e351386727.324678 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386727#351386727#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4456279696#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -s351386727.826828 -e351386728.009261 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386727#351386728#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4456279696#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -s351386726.677071 -e351386726.890868 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386726#351386726#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4456279696#1850" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -s351386727.095184 -e351386727.316856 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386727#351386727#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4456279696#1862" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -s351386726.891006 -e351386727.095043 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386726#351386727#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4456279696#1840" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist" 0# - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -s351386727.441710 -e351386727.644236 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386727#351386727#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4456279696#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist" 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -s351386726.540458 -e351386727.098463 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386726#351386727#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4456279696#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -s351386727.325094 -e351386728.125033 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386727#351386728#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4456279696#1837" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -s351386727.317021 -e351386739.899284 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386727#351386739#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4456279696#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -s351386727.138427 -e351386727.441566 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386727#351386727#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4456279696#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -s351386728.206708 -e351386728.399588 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386728#351386728#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4456279696#1829" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist 0# - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -s351386727.644367 -e351386727.826673 -r1 -xAnalyze -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386727#351386727#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4456279696#1829" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist 0# - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies351386724#351386725#0(0"0(0#1#0"4456281408#0"0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.565348 -e351386071.886597 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386071#351386071#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.478164 -e351386071.590044 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386071#351386071#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4551671440#1832" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.379642 -e351386071.590384 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386071#351386071#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4551671440#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.461965 -e351386071.565181 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386071#351386071#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4551671440#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386717.310522 -e351386717.459785 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386717#351386717#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4554342032#1832" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.984552 -e351386071.267628 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386070#351386071#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4551671440#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.872194 -e351386070.984379 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386070#351386070#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4551671440#1822" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.555052 -e351386070.698435 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386070#351386070#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4551671440#1842" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.506238 -e351386070.611349 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386070#351386070#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4551671440#1838" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.319561 -e351386070.557323 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386070#351386070#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.435380 -e351386070.554868 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386070#351386070#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386717.012572 -e351386717.310364 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386717#351386717#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4554342032#1838" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386069.976557 -e351386070.262717 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386069#351386070#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4551671440#1850" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386069.859589 -e351386069.966150 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386069#351386069#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4551671440#1828" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.923556 -e351386071.031146 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386070#351386071#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4551671440#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.698596 -e351386070.902717 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386070#351386070#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4551671440#1814" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.031939 -e351386071.108496 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386071#351386071#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4551671440#1812" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386717.018001 -e351386717.514378 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386717#351386717#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4554342032#1801" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386717.361867 -e351386717.525838 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386717#351386717#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4554342032#1819" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.205736 -e351386071.887209 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386071#351386071#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4551671440#1805" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.108629 -e351386071.423703 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386071#351386071#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4551671440#1793" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.590640 -e351386071.886979 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386071#351386071#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386071.423866 -e351386071.477982 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386071#351386071#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386069.966522 -e351386070.087669 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386069#351386070#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4551671440#1824" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386069.858167 -e351386070.028025 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386069#351386070#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4551671440#1820" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.031108 -e351386070.115713 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386070#351386070#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4551671440#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386717.010711 -e351386717.532164 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386717#351386717#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4554342032#1807" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386717.015019 -e351386717.356926 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386717#351386717#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4554342032#1825" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.115858 -e351386070.798434 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386070#351386070#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.088098 -e351386070.319385 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386070#351386070#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4551671440#1799" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.557464 -e351386070.688127 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386070#351386070#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4551671440#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386070.378888 -e351386070.435210 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386070#351386070#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4551671440#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# - -CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s351091313.342511 -e351091313.395429 -r1 -xCopyStringsFile -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4566089360#367" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" -s351091313.320298 -e351091313.333153 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -xSource/SPMySQLConnection Categories/Databases & Tables.h -lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351091313#351091313#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4566089360#405" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" -s351091313.319420 -e351091313.342371 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -xSource/SPMySQLConnection Categories/Delegate & Proxy.h -lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351091313#351091313#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4566089360#403" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" -s351091313.310565 -e351091313.325376 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -xSource/SPMySQLResult Categories/Field Definitions.h -lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351091313#351091313#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4566089360#400" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" -s351091313.318441 -e351091313.333420 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -xSource/SPMySQLConnection Categories/Max Packet Size.h -lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351091313#351091313#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4566089360#402" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" -s351378105.959192 -e351378105.972769 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -xSource/SPMySQLConnection Categories/Querying & Preparation.h -lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351378105#351378105#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4544564880#409" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" -s351091313.289711 -e351091313.310342 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h -xSource/SPMySQLConnection Categories/Server Info.h -lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351091313#351091313#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4566089360#398" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" -s351091313.288896 -e351091313.317405 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h -xSource/SPMySQLConnection Categories/Encoding.h -lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351091313#351091313#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4566089360#395" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h -s351378105.960224 -e351378105.973137 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -xSPMySQL.h -lSLF07#2@14"Copy SPMySQL.h351378105#351378105#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4544564880#356" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -s351305979.657134 -e351305979.678654 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -xSource/SPMySQLConnection.h -lSLF07#2@31"Copy Source/SPMySQLConnection.h351305979#351305979#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4456279696#373" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h -s351091313.291285 -e351091313.321567 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -xSource/SPMySQLConnectionDelegate.h -lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351091313#351091313#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4566089360#381" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h -s351091313.313233 -e351091313.331649 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -xSource/SPMySQLConnectionProxy.h -lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -s351091313.287583 -e351091313.316981 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -xSource/SPMySQLConstants.h -lSLF07#2@30"Copy Source/SPMySQLConstants.h351091313#351091313#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4566089360#372" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h -s351386068.547227 -e351386068.558500 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h -xSource/SPMySQLFastStreamingResult.h -lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351386068#351386068#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4551671440#382" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h -s351091313.292835 -e351091313.321741 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -xSource/SPMySQLGeometryData.h -lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351091313#351091313#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4566089360#375" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h -s351378105.961194 -e351378105.973440 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -xSource/SPMySQLResult.h -lSLF07#2@27"Copy Source/SPMySQLResult.h351378105#351378105#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4544564880#369" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h -s351305979.661983 -e351305979.680356 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -xSource/SPMySQLStreamingResult.h -lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305979#351305979#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4456279696#378" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" -s351386717.931058 -e351386717.962365 -r1 -xCreateUniversalBinary -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL -xnormal -xx86_64 i386 -lSLF07#2@93"CreateUniversalBinary build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351386717#351386717#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864554342032#412" cd /Users/rowan/code/SPMySQLFramework /usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL 0# - -CGenerateDSYMFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL -r0 - -CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 -s351386717.526013 -e351386717.881233 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -xnormal -xi386 -lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351386717#351386717#0(0"0(0#0#0"4554342032#863" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 -s351386717.532291 -e351386717.930955 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -xnormal -xx86_64 -lSLF07#2@130"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351386717#351386717#0(0"0(0#0#0"4554342032#869" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL 0# - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -s351091313.283593 -e351091313.286836 -r1 -xProcessInfoPlistFile -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist -xResources/Info.plist -lSLF07#2@28"Process Resources/Info.plist351091313#351091313#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4566089472#232" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351092604.819745 -e351092606.154963 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -oclang: warning: argument unused during compilation: '-flto' -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092604#351092606#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4634766992#1681" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386068.558766 -e351386069.716248 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386068#351386069#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4551671440#1679" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351386068.559718 -e351386069.854468 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386068#351386069#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4551671440#1675" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351092604.818783 -e351092605.903013 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -oclang: warning: argument unused during compilation: '-flto' -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092604#351092605#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4634766992#1685" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers -s351091313.281056 -e351091313.283506 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers -xVersions/Current/Headers -lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources -s351091313.276568 -e351091313.280820 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources -xVersions/Current/Resources -lSLF07#2@84"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources351091313#351091313#0(0"0(0#0#0"4566089360#162" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -s351091313.277533 -e351091313.281810 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL -xVersions/Current/SPMySQL -lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A -s351091313.274448 -e351091313.280642 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current -xA -lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current351091313#351091313#0(0"0(0#0#0"4566089360#144" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current 0# - -CTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework -s351386717.962479 -e351386717.967053 -r1 -xTouch -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework -lSLF07#2@72"Touch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework351386717#351386717#0(0"0(0#0#0"4554342032#131" cd /Users/rowan/code/SPMySQLFramework /usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework 0# - diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat deleted file mode 100644 index 95153397..00000000 --- a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat +++ /dev/null @@ -1,1498 +0,0 @@ -TSPMySQL.framework -v7 -r0 -t351091318.239430 -cCheck dependencies -cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A -cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources -cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers -cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" -cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" -cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" -cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004C238B9B00000000000000EE -t1277397915 -s238 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h -c0000000040C4AA6800000000000001E5 -t1086630504 -s485 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h -c0000000047BAC506000000000000235B -t1203422470 -s9051 - -N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration -c000000004B760CDC00000000000371FC -t1266027740 -s225788 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h -c0000000047E8839E0000000000000746 -t1206420382 -s1862 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h -c0000000047BA9932000000000000380F -t1203411250 -s14351 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h -c0000000047BA9930000000000000055B -t1203411248 -s1371 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib -c000000004B760D050000000000006EE8 -t1266027781 -s28392 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004E2DE5120000000000006560 -t1311630610 -s25952 - -N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings -c000000004F0A19CD0000000000000030 -t1326062029 -s48 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h -c000000004F130858000000000000070C -t1326647384 -s1804 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h -c000000004F13085800000000000005D0 -t1326647384 -s1488 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h -c000000004F13085800000000000083EB -t1326647384 -s33771 -i -i -i -i"mysql_version.h" -i"mysql_com.h" -i"mysql_time.h" -i"my_list.h" -i"typelib.h" -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h -c000000004F130858000000000000503F -t1326647384 -s20543 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h -c000000004F1308580000000000000831 -t1326647384 -s2097 - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h -c000000004F130858000000000000032B -t1326647384 -s811 -i - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h -c000000004F13085800000000000005DD -t1326647384 -s1501 -i"my_alloc.h" - -N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a -c000000004F13085B0000000000445164 -t1326647387 -s4477284 - -N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h -c000000004F3CFACC0000000000000B54 -t1329396428 -s2900 -i"Ping & KeepAlive.h" -i"Locking.h" -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/SPMySQL.h -c000000004F3D02A50000000000000865 -t1329398437 -s2149 -i"SPMySQLConstants.h" -i"SPMySQLStringAdditions.h" -i"SPMySQLConnectionDelegate.h" -i"SPMySQLConnectionProxy.h" -i"SPMySQLConnection.h" -i"Delegate & Proxy.h" -i"Databases & Tables.h" -i"Max Packet Size.h" -i"Querying & Preparation.h" -i"Encoding.h" -i"Server Info.h" -i"SPMySQLResult.h" -i"SPMySQLStreamingResult.h" -i"Field Definitions.h" -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h -c000000004F307BEF00000000000009A8 -t1328577519 -s2472 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -c000000004F307BE80000000000000EF3 -t1328577512 -s3827 -i"Conversion.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h -c000000004F3800F70000000000000711 -t1329070327 -s1809 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -c000000004F3CFAE50000000000002446 -t1329396453 -s9286 -i"Databases & Tables.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h -c000000004F3452E5000000000000057E -t1328829157 -s1406 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -c000000004F3CFAE100000000000011ED -t1329396449 -s4589 -i"Delegate & Proxy.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h -c000000004F340C6A000000000000079C -t1328811114 -s1948 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -c000000004F330C610000000000003AAA -t1328745569 -s15018 -i"Encoding.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h -c000000004F307BFB00000000000005E6 -t1328577531 -s1510 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -c000000004F3CFAF70000000000000E61 -t1329396471 -s3681 -i"Locking.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h -c000000004F398B4100000000000005F3 -t1329171265 -s1523 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -c000000004F3CFAF30000000000001A0E -t1329396467 -s6670 -i"Max Packet Size.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h -c000000004F3172E100000000000007C2 -t1328640737 -s1986 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -c000000004F3293B20000000000001CFD -t1328714674 -s7421 -i"Ping & KeepAlive.h" -i"Locking.h" -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h -c000000004F3D01090000000000000BD0 -t1329398025 -s3024 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -c000000004F3D02C600000000000041D0 -t1329398470 -s16848 -i"SPMySQLConnection.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h -c000000004F3848660000000000000761 -t1329088614 -s1889 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -c000000004F3CFAEF0000000000001614 -t1329396463 -s5652 -i"Server Info.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h -c000000004F3CF21A00000000000014E0 -t1329394202 -s5344 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -c000000004F3CFADD0000000000006DD3 -t1329396445 -s28115 -i"SPMySQL Private APIs.h" -i -i -i - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h -c000000004F36BCAB0000000000001041 -t1328987307 -s4161 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h -c000000004F327BDC0000000000000884 -t1328708572 -s2180 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h -c000000004F39B228000000000000092D -t1329181224 -s2349 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -c000000004F307C5D00000000000000E7 -t1328577629 -s231 -i -i"mysql.h" -i"SPMySQL.h" -i"SPMySQLUtilities.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h -c000000004F32785D00000000000006DB -t1328707677 -s1755 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -c000000004F307BA400000000000069C8 -t1328577444 -s27080 -i"SPMySQLGeometryData.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h -c000000004F307BB8000000000000059A -t1328577464 -s1434 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -c000000004F307BB10000000000004B47 -t1328577457 -s19271 -i"Field Definitions.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h -c000000004F3CF545000000000000104E -t1329395013 -s4174 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -c000000004F3CFAB500000000000032DC -t1329396405 -s13020 -i"SPMySQLResult.h" -i"SPMySQL Private APIs.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h -c000000004F3C36140000000000000641 -t1329346068 -s1601 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -c000000004F3C37DE000000000000087F -t1329346526 -s2175 -i"SPMySQLStreamingResult.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h -c000000004F32FAD700000000000005CE -t1328741079 -s1486 - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -c000000004F32FB4B0000000000000823 -t1328741195 -s2083 -i"SPMySQLStringAdditions.h" - -N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h -c000000004F307D2800000000000006F7 -t1328577832 -s1783 -i - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources -t3 -s26 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL -t3 -s24 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -t1329398513 -s1809 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -t1329398513 -s1406 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h -t1329398513 -s1948 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -t1329398513 -s1434 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -t1329398513 -s1523 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -t1329398513 -s3024 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -t1329398513 -s2149 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -t1329398513 -s5344 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -t1329398513 -s4161 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -t1329398513 -s2180 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -t1329398513 -s2349 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -t1329398513 -s1755 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -t1329398513 -s4174 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -t1329398513 -s1601 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h -t1329398513 -s1889 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1329398513 -s92 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist -t1329398513 -s1144 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current -t3 -s1 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -t1329398515 -s33872 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -t1329398515 -s42192 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -t1329398515 -s34272 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -t1329398515 -s51968 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -t1329398515 -s49184 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o -t1329398515 -s32128 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -t1329398515 -s39328 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -t1329398515 -s39568 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -t1329398515 -s60496 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -t1329398517 -s1015004 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -c000000004F3D02F100000000000007E2 -t1329398513 -s2018 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -t1329398515 -s99344 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -t1329398515 -s44352 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -t1329398515 -s51056 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -t1329398515 -s31104 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -t1329398515 -s5184 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -t1329398515 -s39472 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -t1329398515 -s33488 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -t1329398515 -s42336 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -t1329398515 -s34592 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -t1329398514 -s52336 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -t1329398515 -s49888 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -t1329398515 -s32080 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -t1329398515 -s39696 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -t1329398514 -s40032 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -t1329398515 -s62272 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -c000000004F3D02F10000000000000800 -t1329398513 -s2048 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -t1329398515 -s105824 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -t1329398515 -s47472 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -t1329398515 -s51472 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -t1329398515 -s31472 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -t1329398515 -s4752 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -t1329398514 -s39584 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist -t2 -s0 - -N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist -t2 -s0 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth -t1329398514 -s10910168 - -N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth -t1329398514 -s9973036 - -NResources/Info.plist -c000000004F0A20EC0000000000000357 -t1326063852 -s855 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -r0 - -CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -r0 - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -r0 - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -r0 - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -r0 - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -r0 - -CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -r0 - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies351091313#351091313#0(0"0(0#1#0"4566091072#0"0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.877088 -e351091315.939689 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:129:52:{129:52-129:81}{129:18-129:19}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] -o databaseList = [NSMutableArray arrayWithCapacity:[databaseResult numberOfRows]]; -o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:219:49:{219:49-219:75}{219:15-219:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] -o tableList = [NSMutableArray arrayWithCapacity:[tableResult numberOfRows]]; -o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~ -o2 warnings generated. -lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351091315#351091316#0(926"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:129:52:{129:52-129:81}{129:18-129:19}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] databaseList = [NSMutableArray arrayWithCapacity:[databaseResult numberOfRows]]; ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:219:49:{219:49-219:75}{219:15-219:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] tableList = [NSMutableArray arrayWithCapacity:[tableResult numberOfRows]]; ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. 2(22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#0#264#0(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#52#0#0#0"2(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#52#129#81#6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#18#129#19#22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#458#264#0(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#49#0#0#0"2(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#49#219#75#6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#15#219#16#0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.845386 -e351091315.898295 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351091315#351091316#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1838" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.743682 -e351091315.845212 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351091315#351091315#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.802289 -e351091315.876908 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351091315#351091315#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1836" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.420747 -e351091315.517376 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351091315#351091315#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1838" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.595894 -e351091315.715091 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:115:88:{115:88-115:107}: warning: incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') -o const char *cQueryString = _cStringForStringWithEncoding(theQueryString, theEncoding, &cQueryStringLength); -o ^~~~~~~~~~~~~~~~~~~ -oIn file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: -oIn file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:49:117: note: passing argument to parameter 'cStringLengthPointer' here -o static inline const char* _cStringForStringWithEncoding(NSString* aString, NSStringEncoding anEncoding, NSUInteger *cStringLengthPointer) -o ^ -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:153:78:{153:78-153:106}{153:34-153:35}: warning: implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int') [-Wconversion] -o if (lastQueryWasCancelled && ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) { -o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:343:129:{343:129-343:152}: warning: incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') -o const char *killQueryCString = [SPMySQLConnection _cStringForString:killQuery usingEncoding:aStringEncoding returningLengthAs:&killQueryCStringLength]; -o ^~~~~~~~~~~~~~~~~~~~~~~ -oIn file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: -oIn file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:38:130: note: passing argument to parameter 'cStringLengthPointer' here -o + (const char *)_cStringForString:(NSString *)aString usingEncoding:(NSStringEncoding)anEncoding returningLengthAs:(NSUInteger *)cStringLengthPointer; -o ^ -o3 warnings generated. -lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091315#351091315#0(2845"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:115:88:{115:88-115:107}: warning: incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') const char *cQueryString = _cStringForStringWithEncoding(theQueryString, theEncoding, &cQueryStringLength); ^~~~~~~~~~~~~~~~~~~ In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:49:117: note: passing argument to parameter 'cStringLengthPointer' here static inline const char* _cStringForStringWithEncoding(NSString* aString, NSStringEncoding anEncoding, NSUInteger *cStringLengthPointer) ^ /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:153:78:{153:78-153:106}{153:34-153:35}: warning: implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int') [-Wconversion] if (lastQueryWasCancelled && ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) { ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:343:129:{343:129-343:152}: warning: incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') const char *killQueryCString = [SPMySQLConnection _cStringForString:killQuery usingEncoding:aStringEncoding returningLengthAs:&killQueryCStringLength]; ^~~~~~~~~~~~~~~~~~~~~~~ In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:38:130: note: passing argument to parameter 'cStringLengthPointer' here + (const char *)_cStringForString:(NSString *)aString usingEncoding:(NSStringEncoding)anEncoding returningLengthAs:(NSUInteger *)cStringLengthPointer; ^ 3 warnings generated. 5(22@111"Incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *')351091315#0#242#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#115#88#0#0#28"incompatible pointer types *1(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#115#88#115#107#13@57"Passing argument to parameter 'cStringLengthPointer' here351091315#680#156#3(7@83"In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40:351091315#596#84#0(6@57"/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h351089228#40#0#40#0#0"0(7@121"In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35:351091315#474#122#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#35#0#35#0#0"0(13@144"Passing argument to parameter 'cStringLengthPointer' here in /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h351091315#18446744073709551615#0#0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#49#117#0#0#0"0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#49#117#0#0#0"0(22@81"Implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int')351091315#1095#242#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#78#0#0#0"2(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#78#153#106#6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#34#153#35#22@111"Incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *')351091315#1597#244#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#343#129#0#0#28"incompatible pointer types *1(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#343#129#343#152#13@57"Passing argument to parameter 'cStringLengthPointer' here351091315#2383#156#3(7@83"In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40:351091315#18446744073709551615#0#0(6@57"/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h351089228#40#0#40#0#0"0(7@121"In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35:351091315#18446744073709551615#0#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#35#0#35#0#0"0(13@144"Passing argument to parameter 'cStringLengthPointer' here in /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h351091315#18446744073709551615#0#0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#38#130#0#0#0"0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#38#130#0#0#0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1850" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.519976 -e351091315.589298 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351091315#351091315#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1828" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.376687 -e351091315.460709 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351091315#351091315#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1848" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.347177 -e351091315.420334 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351091315#351091315#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.263236 -e351091315.376520 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351091315#351091315#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.320220 -e351091315.389086 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351091315#351091315#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091314.746206 -e351091314.990027 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351091314#351091314#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1844" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091314.987517 -e351091315.263012 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091314#351091315#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1856" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" 0# - -CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091314.748573 -e351091314.984806 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351091314#351091314#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1834" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.587346 -e351091315.642216 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351091315#351091315#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1824" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.460885 -e351091315.587192 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351091315#351091315#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1820" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.601304 -e351091315.659779 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351091315#351091315#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1818" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.389247 -e351091315.601015 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351091315#351091315#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1807" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.659964 -e351091315.878948 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m:767:10:{767:10-767:17}{767:3-767:9}: warning: implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int') [-Wconversion] -o return geoType; -o ~~~~~~ ^~~~~~~ -o1 warning generated. -lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351091315#351091315#0(309"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m:767:10:{767:10-767:17}{767:3-767:9}: warning: implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int') [-Wconversion] return geoType; ~~~~~~ ^~~~~~~ 1 warning generated. 1(22@97"Implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int')351091315#0#223#0(6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#10#0#0#0"2(6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#10#767#17#6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#3#767#9#0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1811" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.642626 -e351091315.743521 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m:353:19:{353:19-353:46}{353:3-353:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] -o itemsToReturn = numberOfRows - state->state; -o ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -o1 warning generated. -lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351091315#351091315#0(373"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m:353:19:{353:19-353:46}{353:3-353:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] itemsToReturn = numberOfRows - state->state; ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. 1(22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#0#229#0(6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#19#0#0#0"2(6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#19#353#46#6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#3#353#16#0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1799" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.715443 -e351091315.763302 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] -o } -o ^ -o1 warning generated. -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351091315#351091315#0(166"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ 1 warning generated. 1(22@40"Control reaches end of non-void function351091315#0#139#0(6@66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351039326#55#1#0#0#40"control reaches end of non-void function0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.763478 -e351091315.802101 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351091315#351091315#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091314.985444 -e351091315.239722 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351091314#351091315#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1830" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091314.747075 -e351091314.987361 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351091314#351091314#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1826" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091314.990338 -e351091315.259622 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351091314#351091315#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1824" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091314.745139 -e351091315.104285 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351091314#351091315#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.239879 -e351091315.589604 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351091315#351091315#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.104440 -e351091315.319957 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351091315#351091315#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1805" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.259780 -e351091315.304425 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] -o } -o ^ -o1 warning generated. -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351091315#351091315#0(166"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ 1 warning generated. 1(22@40"Control reaches end of non-void function351091315#0#139#0(6@66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351039326#55#1#0#0#40"control reaches end of non-void function0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o 0# - -CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091315.304845 -e351091315.346992 -r1 -xCompileC -xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o -x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351091315#351091315#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o 0# - -CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s351091313.342511 -e351091313.395429 -r1 -xCopyStringsFile -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4566089360#367" cd /Users/rowan/code/SPMySQLFramework setenv ICONV /usr/bin/iconv /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" -s351091313.320298 -e351091313.333153 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h -xSource/SPMySQLConnection Categories/Databases & Tables.h -lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351091313#351091313#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4566089360#405" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" -s351091313.319420 -e351091313.342371 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h -xSource/SPMySQLConnection Categories/Delegate & Proxy.h -lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351091313#351091313#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4566089360#403" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" -s351091313.310565 -e351091313.325376 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h -xSource/SPMySQLResult Categories/Field Definitions.h -lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351091313#351091313#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4566089360#400" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" -s351091313.318441 -e351091313.333420 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h -xSource/SPMySQLConnection Categories/Max Packet Size.h -lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351091313#351091313#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4566089360#402" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" -s351091313.288166 -e351091313.317229 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h -xSource/SPMySQLConnection Categories/Querying & Preparation.h -lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351091313#351091313#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4566089360#409" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" -s351091313.289711 -e351091313.310342 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h -xSource/SPMySQLConnection Categories/Server Info.h -lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351091313#351091313#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4566089360#398" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" -s351091313.288896 -e351091313.317405 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h -xSource/SPMySQLConnection Categories/Encoding.h -lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351091313#351091313#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4566089360#395" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h -s351091313.290545 -e351091313.317984 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h -xSPMySQL.h -lSLF07#2@14"Copy SPMySQL.h351091313#351091313#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4566089360#356" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h -s351091313.286917 -e351091313.310077 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h -xSource/SPMySQLConnection.h -lSLF07#2@31"Copy Source/SPMySQLConnection.h351091313#351091313#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4566089360#373" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h -s351091313.291285 -e351091313.321567 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h -xSource/SPMySQLConnectionDelegate.h -lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351091313#351091313#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4566089360#381" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h -s351091313.313233 -e351091313.331649 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h -xSource/SPMySQLConnectionProxy.h -lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h -s351091313.287583 -e351091313.316981 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h -xSource/SPMySQLConstants.h -lSLF07#2@30"Copy Source/SPMySQLConstants.h351091313#351091313#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4566089360#372" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h -s351091313.292835 -e351091313.321741 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h -xSource/SPMySQLGeometryData.h -lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351091313#351091313#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4566089360#375" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h -s351091313.292092 -e351091313.318145 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h -xSource/SPMySQLResult.h -lSLF07#2@27"Copy Source/SPMySQLResult.h351091313#351091313#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4566089360#369" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h -s351091313.293654 -e351091313.321896 -r1 -xCpHeader -xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h -xSource/SPMySQLStreamingResult.h -lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers 0# - -CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" -r0 - -CGenerateDSYMFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL -r0 - -CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 -s351091315.939785 -e351091317.535719 -r1 -xLd -x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -xnormal -xi386 -lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351091315#351091317#0(0"0(0#0#0"4566089360#863" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL 0# - -CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 -s351091315.589725 -e351091318.239354 -r0 -xLd -x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL -xnormal -xx86_64 -oclang: error: linker command failed due to signal 11 (use -v to see invocation) -lSLF07#2@130"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351091315#351091318#0(139"clang: error: linker command failed due to signal 11 (use -v to see invocation) Command /Developer/usr/bin/clang failed with exit code 245 1(4@58"Command /Developer/usr/bin/clang failed with exit code 245351091318#18446744073709551615#0#0(1@0"0(0#0#0"4566089360#869" cd /Users/rowan/code/SPMySQLFramework setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL 245# - -CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist -s351091313.283593 -e351091313.286836 -r1 -xProcessInfoPlistFile -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist -xResources/Info.plist -lSLF07#2@28"Process Resources/Info.plist351091313#351091313#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4566089472#232" cd /Users/rowan/code/SPMySQLFramework builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091313.396535 -e351091314.745028 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xi386 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -oclang: warning: argument unused during compilation: '-flto' -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351091313#351091314#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4566089360#1681" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth 0# - -CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler -s351091313.395598 -e351091314.653079 -r1 -xProcessPCH -x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth -xSource/SPMySQLFramework_Prefix.pch -xnormal -xx86_64 -xobjective-c -xcom.apple.compilers.llvm.clang.1_0.compiler -oclang: warning: argument unused during compilation: '-flto' -lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351091313#351091314#0(60"clang: warning: argument unused during compilation: '-flto' 0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4566089360#1685" cd /Users/rowan/code/SPMySQLFramework setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers -s351091313.281056 -e351091313.283506 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers -xVersions/Current/Headers -lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources -s351091313.276568 -e351091313.280820 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources -xVersions/Current/Resources -lSLF07#2@84"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources351091313#351091313#0(0"0(0#0#0"4566089360#162" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL -s351091313.277533 -e351091313.281810 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL -xVersions/Current/SPMySQL -lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL 0# - -CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A -s351091313.274448 -e351091313.280642 -r1 -xSymLink -x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current -xA -lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current351091313#351091313#0(0"0(0#0#0"4566089360#144" cd /Users/rowan/code/SPMySQLFramework /bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current 0# - -CTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework -r0 - diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree deleted file mode 100644 index b4877a47..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree deleted file mode 100644 index 91a20ee0..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree deleted file mode 100644 index 2c7cd864..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree deleted file mode 100644 index 6f89e86f..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree deleted file mode 100644 index 1458d578..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header deleted file mode 100644 index ca471eb9..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree deleted file mode 100644 index 594062a4..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree deleted file mode 100644 index 21992b05..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control deleted file mode 100644 index b173c993..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings deleted file mode 100644 index e4f988c0..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree deleted file mode 100644 index d2a453bd..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree and /dev/null differ diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols deleted file mode 100644 index 24afea1c..00000000 Binary files a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols and /dev/null differ -- cgit v1.2.3 From a889340b9cb1eca0d3ff022e8e6e2c718480bf44 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Mon, 20 Feb 2012 22:19:09 +0000 Subject: - Add missing libmysqlclient.a to build SPMySQL (ignored during initial add as it's a binary file?) - Add svn:ignore propsets for build, pbxuser and project mode files --- .../MySQL Client Libraries/lib/libmysqlclient.a | Bin 0 -> 4477284 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a (limited to 'Frameworks') diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a b/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a new file mode 100644 index 00000000..5b7d405a Binary files /dev/null and b/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a differ -- cgit v1.2.3 From 05f1612cbb7e33cf9135a346fc2505cc0e87e853 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Thu, 23 Feb 2012 02:13:56 +0000 Subject: Warning: this branch commit is largely untested, and known to throw exceptions as database structure retrieval is currently missing! Further work on SPMySQLFramework integration: - Improve SPMySQL framework build settings including correct ppc builds and a Distribution configuration for the build distributions to match - Add new convenience querying and result methods to the framework - Amend Sequel Pro source to use the new SPMySQL.framework methods everywhere, replacing MCPKit methods where they differ and improving some functions - Remove MCPKit from the source - Fix a number of warnings on Release-style builds --- Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.h | 106 - Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.m | 466 --- .../MCPClassDescription+MCPEntreprise.h | 47 - .../MCPClassDescription+MCPEntreprise.m | 186 -- .../MCPEntrepriseKit/MCPClassDescription+Private.h | 45 - .../MCPKit/MCPEntrepriseKit/MCPClassDescription.h | 93 - .../MCPKit/MCPEntrepriseKit/MCPClassDescription.m | 373 --- .../MCPEntrepriseKit/MCPEntrepriseNotifications.h | 36 - .../MCPEntrepriseKit/MCPEntrepriseNotifications.m | 34 - Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.h | 74 - Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.m | 183 -- .../MCPEntrepriseKit/MCPModel+MCPEntreprise.h | 35 - .../MCPEntrepriseKit/MCPModel+MCPEntreprise.m | 57 - Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.h | 84 - Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.m | 230 -- Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.h | 127 - Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m | 1342 -------- .../MCPKit/MCPEntrepriseKit/MCPRelation+Private.h | 46 - Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.h | 112 - Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.m | 486 --- Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h | 282 -- Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m | 3402 -------------------- .../MCPFoundationKit/MCPConnectionDelegate.h | 81 - .../MCPKit/MCPFoundationKit/MCPConnectionProxy.h | 70 - Frameworks/MCPKit/MCPFoundationKit/MCPConstants.h | 82 - .../MCPKit/MCPFoundationKit/MCPFastQueries.h | 46 - .../MCPKit/MCPFoundationKit/MCPFastQueries.m | 113 - .../MCPKit/MCPFoundationKit/MCPGeometryData.h | 65 - .../MCPKit/MCPFoundationKit/MCPGeometryData.m | 785 ----- Frameworks/MCPKit/MCPFoundationKit/MCPKit.h | 44 - Frameworks/MCPKit/MCPFoundationKit/MCPNull.h | 35 - Frameworks/MCPKit/MCPFoundationKit/MCPNull.m | 43 - Frameworks/MCPKit/MCPFoundationKit/MCPNumber.h | 83 - Frameworks/MCPKit/MCPFoundationKit/MCPNumber.m | 301 -- Frameworks/MCPKit/MCPFoundationKit/MCPResult.h | 86 - Frameworks/MCPKit/MCPFoundationKit/MCPResult.m | 1354 -------- Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.h | 42 - Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.m | 188 -- .../MCPKit/MCPFoundationKit/MCPStreamingResult.h | 74 - .../MCPKit/MCPFoundationKit/MCPStreamingResult.m | 566 ---- .../MCPKit/MCPFoundationKit/MCPStringAdditions.h | 46 - .../MCPKit/MCPFoundationKit/MCPStringAdditions.m | 50 - Frameworks/MCPKit/MySQL/include/my_alloc.h | 51 - Frameworks/MCPKit/MySQL/include/my_list.h | 45 - Frameworks/MCPKit/MySQL/include/mysql.h | 870 ----- Frameworks/MCPKit/MySQL/include/mysql_com.h | 532 --- Frameworks/MCPKit/MySQL/include/mysql_embed.h | 29 - Frameworks/MCPKit/MySQL/include/mysql_time.h | 55 - Frameworks/MCPKit/MySQL/include/mysql_version.h | 30 - Frameworks/MCPKit/MySQL/include/typelib.h | 39 - Frameworks/MCPKit/MySQL/lib/libmysqlclient.a | Bin 4560292 -> 0 bytes Frameworks/MCPKit/MySQL/lib/libmysqlclient_r.a | Bin 4594252 -> 0 bytes .../MCPKit/Support files/NSNotificationAdditions.h | 35 - .../MCPKit/Support files/NSNotificationAdditions.m | 97 - .../SPMySQLFramework.xcodeproj/project.pbxproj | 76 +- Frameworks/SPMySQLFramework/Source/SPMySQL.h | 3 +- .../Querying & Preparation.h | 6 +- .../Querying & Preparation.m | 21 + .../SPMySQLFramework/Source/SPMySQLConnection.h | 2 +- .../Source/SPMySQLConnectionDelegate.h | 2 + .../Source/SPMySQLConnectionProxy.h | 2 +- .../SPMySQLFramework/Source/SPMySQLConstants.h | 2 +- .../SPMySQLResult Categories/Convenience Methods.h | 38 + .../SPMySQLResult Categories/Convenience Methods.m | 71 + Frameworks/SPMySQLFramework/Source/SPMySQLResult.h | 3 +- 65 files changed, 218 insertions(+), 13791 deletions(-) delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.m delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+MCPEntreprise.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+MCPEntreprise.m delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+Private.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription.m delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPEntrepriseNotifications.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPEntrepriseNotifications.m delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.m delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPModel+MCPEntreprise.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPModel+MCPEntreprise.m delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.m delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation+Private.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.h delete mode 100644 Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPConnectionDelegate.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPConnectionProxy.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPConstants.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPFastQueries.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPFastQueries.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPGeometryData.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPGeometryData.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPKit.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPNull.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPNull.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPNumber.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPNumber.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPResult.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPResult.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPStringAdditions.h delete mode 100644 Frameworks/MCPKit/MCPFoundationKit/MCPStringAdditions.m delete mode 100644 Frameworks/MCPKit/MySQL/include/my_alloc.h delete mode 100644 Frameworks/MCPKit/MySQL/include/my_list.h delete mode 100644 Frameworks/MCPKit/MySQL/include/mysql.h delete mode 100644 Frameworks/MCPKit/MySQL/include/mysql_com.h delete mode 100644 Frameworks/MCPKit/MySQL/include/mysql_embed.h delete mode 100644 Frameworks/MCPKit/MySQL/include/mysql_time.h delete mode 100644 Frameworks/MCPKit/MySQL/include/mysql_version.h delete mode 100644 Frameworks/MCPKit/MySQL/include/typelib.h delete mode 100644 Frameworks/MCPKit/MySQL/lib/libmysqlclient.a delete mode 100644 Frameworks/MCPKit/MySQL/lib/libmysqlclient_r.a delete mode 100644 Frameworks/MCPKit/Support files/NSNotificationAdditions.h delete mode 100644 Frameworks/MCPKit/Support files/NSNotificationAdditions.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.m (limited to 'Frameworks') diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.h deleted file mode 100644 index 469d0808..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.h +++ /dev/null @@ -1,106 +0,0 @@ -// -// $Id$ -// -// MCPAttribute.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -@class MCPModel; -@class MCPClassDescription; -@class MCPRelation; -@class MCPJoin; - -@interface MCPAttribute : NSObject < NSCoding > -{ -@protected - MCPClassDescription *classDescription; // ClassDescription of which the attribute is attribute - NSString *name; // Name of the attribute (Obj-C side) - Class valueClass; // Class used by the attribute (or NULL if the internal type is not an object) - NSString *internalType; // Name of the class, or type used for the class definition - NSString *externalName; // Name of the corresponding column in the DB - NSString *externalType; // Type used to store the attribute (in the DB) - NSUInteger width; // Width (for storing by the DB) - BOOL allowsNull; // Attribute can be null - BOOL autoGenerated; // Attribute is auto generated by the DB - BOOL isPartOfKey; // Attribute is part of theprimary key of the class description - BOOL isPartOfIdentity; // Attribute is part of the idclass description of the class description - BOOL hasAccessor; // Does this attribute have an accessor - id defaultValue; // Default value of the attribute - NSMutableArray *joins; // An array of the joins using this attribute -} - -#pragma mark Class methods -+ (void) initialize; - -#pragma mark Life cycle -- (id) initForClassDescription:(MCPClassDescription *) iClassDescription withName:(NSString *) iName; -- (void) dealloc; - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder; -- (void) encodeWithCoder:(NSCoder *) encoder; - -#pragma mark Setters -- (void) setName:(NSString *) iName; -- (void) setValueClass:(Class) iValueClass; -- (void) setInternalType:(NSString *) iInternalType; -- (void) setExternalType:(NSString *) iExternalType; -- (void) setExternalName:(NSString *) iExternalName; -- (void) setWidth:(NSUInteger) iWidth; -- (void) setAllowsNull:(BOOL) iAllowsNull; -- (void) setAutoGenerated:(BOOL) iAutoGenerated; -- (void) setIsPartOfKey:(BOOL) iIsPartOfKey; -- (void) setIsPartOfIdentity:(BOOL) iIsPartOfIdentity; -- (void) setHasAccessor:(BOOL) iHasAccessor; -- (void) setDefaultValue:(id) iDefaultValue; -- (void) insertObject:(MCPJoin *) iJoin inJoinsAtIndex:(NSUInteger) index; -- (void) removeObjectFromJoinsAtIndex:(NSUInteger) index; -//- (void) addRelation:(MCPRelation *) iRelation; -//- (void) removeRelation:(MCPRelation *) iRelation; - -#pragma mark Getters -- (MCPClassDescription *) classDescription; -- (NSString *) name; -- (Class) valueClass; -- (NSString *) valueClassName; -- (NSString *) internalType; -- (NSString *) externalName; -- (NSString *) externalType; -- (NSUInteger) width; -- (BOOL) allowsNull; -- (BOOL) autoGenerated; -- (BOOL) isPartOfKey; -- (BOOL) isPartOfIdentity; -- (BOOL) hasAccessor; -- (id) defaultValue; -- (NSUInteger) countOfJoins; -- (MCPJoin *) objectInJoinsAtIndex:(NSUInteger) index; -- (NSUInteger) indexOfJoinIdenticalTo:(id) iJoin; - -#pragma mark Some general methods: -- (BOOL) isEqual:(id) iObject; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.m deleted file mode 100644 index 085c1114..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPAttribute.m +++ /dev/null @@ -1,466 +0,0 @@ -// -// $Id$ -// -// MCPAttribute.m -// MCPkit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPAttribute.h" - -#import "MCPEntrepriseNotifications.h" - -#import "MCPModel.h" -#import "MCPClassDescription.h" -#import "MCPRelation.h" -#import "MCPJoin.h" - -static NSArray *MCPRecognisedInternalType; - -@interface MCPAttribute (Private) - -- (void)setValueClassName:(NSString *) iClassName; - -@end - -@implementation MCPAttribute - -#pragma mark Class methods -+ (void) initialize -{ - if (self == [MCPAttribute class]) { - [self setVersion:010101]; // Ma.Mi.Re -> MaMiRe - MCPRecognisedInternalType = [[NSArray alloc] initWithObjects:@"NSCalendarDate", @"NSData", @"NSNumber", @"NSString", nil]; - [self setKeys:[NSArray arrayWithObject:@"internalType"] triggerChangeNotificationsForDependentKey:@"valueClassName"]; - [self setKeys:[NSArray arrayWithObject:@"valueClassName"] triggerChangeNotificationsForDependentKey:@"internalType"]; - } - return; -} - - -#pragma mark Life cycle -- (id) initForClassDescription:(MCPClassDescription *) iClassDescription withName:(NSString *) iName -{ - self = [super init]; - { - classDescription = iClassDescription; - [self setName:iName]; -// relations = (NSMutableArray *)(CFArrayCreateMutable (kCFAllocatorDefault, 0, NULL)); - joins = [[NSMutableArray alloc] init]; - } - return self; -} - -- (void) dealloc -{ -// NSArray *theRelations; -// unsigned int i; - - [name release]; - [internalType release]; - [externalName release]; - [externalType release]; - [defaultValue release]; -/* - while ([relations count]) { - [(MCPRelation *)[relations objectAtIndex:0] unjoinAttribute:self]; - } -// By now relation should be empty anyway... - [relations release]; - */ - while ([joins count]) { - [[self objectInJoinsAtIndex:0] invalidate]; - } - // By now the joins array should be empty - [joins release]; - [super dealloc]; -} - - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder -{ - self = [super init]; - if ((self) && ([decoder allowsKeyedCoding])) { - NSString *theClassName = [decoder decodeObjectForKey:@"MCPvalueClassName"]; - - classDescription = [decoder decodeObjectForKey:@"MCPclassDescription"]; - [self setName:[decoder decodeObjectForKey:@"MCPname"]]; - if (theClassName) { - [self setValueClass:NSClassFromString(theClassName)]; - } - [self setInternalType:[decoder decodeObjectForKey:@"MCPinternalType"]]; - [self setExternalName:[decoder decodeObjectForKey:@"MCPexternalName"]]; - [self setExternalType:[decoder decodeObjectForKey:@"MCPexternalType"]]; - [self setWidth:(NSUInteger)[decoder decodeInt32ForKey:@"MCPwidth"]]; - [self setAllowsNull:[decoder decodeBoolForKey:@"MCPallowsNull"]]; - [self setAutoGenerated:[decoder decodeBoolForKey:@"MCPautoGenerated"]]; - [self setIsPartOfKey:[decoder decodeBoolForKey:@"MCPisPartOfKey"]]; - [self setIsPartOfIdentity:[decoder decodeBoolForKey:@"MCPisPartOfIdentity"]]; - [self setHasAccessor:[decoder decodeBoolForKey:@"MCPhasAccessor"]]; - [self setDefaultValue:[decoder decodeObjectForKey:@"MCPdefaultValue"]]; -// Not sure that the next line is working (getting an array holding weak references), hence doing the thing expelcitly: -// relations = [[decoder decodeObjectForKey:@"MCPrelations"] retain]; -// relations = (NSMutableArray *)(CFArrayCreateMutable (kCFAllocatorDefault, 0, NULL)); -// [relations addObjectsFromArray:[decoder decodeObjectForKey:@"MCPrelations"]]; - joins = [[NSMutableArray alloc] init]; // Will be filled in when the relations are read in. - } - else { - NSLog(@"For some reason, unable to decode MCPAttribute from the coder!!!"); - } -// NSLog(@"MAKING a new object : %@", self); - return self; -} - -- (void) encodeWithCoder:(NSCoder *) encoder -{ - NSString *theValueClassName; - - if (! [encoder allowsKeyedCoding]) { - NSLog(@"In MCPAttribute -encodeWithCoder : Unable to encode to a non-keyed encoder!!, will not perform encoding!!"); - return; - } -// theValueClassName = (valueClass) ? [valueClass className] : nil; - theValueClassName = (valueClass) ? NSStringFromClass(valueClass) : nil; - [encoder encodeObject:[self classDescription] forKey:@"MCPclassDescription"]; - [encoder encodeObject:[self name] forKey:@"MCPname"]; - if (theValueClassName) { - [encoder encodeObject:theValueClassName forKey:@"MCPvalueClassName"]; - } - [encoder encodeObject:[self internalType] forKey:@"MCPinternalType"]; - [encoder encodeObject:[self externalName] forKey:@"MCPexternalName"]; - [encoder encodeObject:[self externalType] forKey:@"MCPexternalType"]; - [encoder encodeInt32:(int32_t)[self width] forKey:@"MCPwidth"]; - [encoder encodeBool:[self allowsNull] forKey:@"MCPallowsNull"]; - [encoder encodeBool:[self autoGenerated] forKey:@"MCPautoGenerated"]; - [encoder encodeBool:[self isPartOfKey] forKey:@"MCPisPartOfKey"]; - [encoder encodeBool:[self isPartOfIdentity] forKey:@"MCPisPartOfIdentity"]; - [encoder encodeBool:[self hasAccessor] forKey:@"MCPhasAccessor"]; - [encoder encodeObject:[self defaultValue] forKey:@"MCPdefaultValue"]; -// [encoder encodeObject:relations forKey:@"MCPrelation"]; - // We don't have to save the joins here ... the joins are saving there attributes. - // The links are recreated when the joins are decoded. -} - -#pragma mark Setters -- (void) setName:(NSString *) iName -{ - if (iName != name) { - [name release]; - name = [iName retain]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setValueClass:(Class) iValueClass -{ - if (iValueClass != valueClass) { - valueClass = iValueClass; - if (valueClass) { // Not nil : set the internalType accrodingly. - // [internalType release]; - // internalType = [[valueClass className] copy]; -// [self setValue:[NSString stringWithString:[valueClass className]] forKey:@"internalType"]; - [self setValue:[NSString stringWithString:NSStringFromClass(valueClass)] forKey:@"internalType"]; - } - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setInternalType:(NSString *) iInternalType -{ - if (iInternalType != internalType) { - [internalType release]; - internalType = [iInternalType retain]; - if ([MCPRecognisedInternalType containsObject:internalType]) { - [self setValueClass:NSClassFromString(internalType)]; -// By itself does NOT provide observers the update. -// but see setKeys:triggerChangeNotificationsForDependentKey... (in +initialize). - } - else { - [self setValueClass:nil]; - } - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setExternalType:(NSString *) iExternalType -{ - if (iExternalType != externalType) { - [externalType release]; - externalType = [iExternalType retain]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setExternalName:(NSString *) iExternalName -{ - if (iExternalName != externalName) { - [externalName release]; - externalName = [iExternalName retain]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setWidth:(NSUInteger) iWidth -{ - if (iWidth != width) { - width = iWidth; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setAllowsNull:(BOOL) iAllowsNull -{ - if (iAllowsNull != allowsNull) { - allowsNull = iAllowsNull; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setAutoGenerated:(BOOL) iAutoGenerated -{ - if (iAutoGenerated != autoGenerated) { - autoGenerated = iAutoGenerated; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setIsPartOfKey:(BOOL) iIsPartOfKey -{ - if (iIsPartOfKey != isPartOfKey) { - isPartOfKey = iIsPartOfKey; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setIsPartOfIdentity:(BOOL) iIsPartOfIdentity -{ - if (iIsPartOfIdentity != isPartOfIdentity) { - isPartOfIdentity = iIsPartOfIdentity; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setHasAccessor:(BOOL) iHasAccessor -{ - if (iHasAccessor != hasAccessor) { - hasAccessor = iHasAccessor; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) setDefaultValue:(id) iDefaultValue -{ - if (iDefaultValue != defaultValue) { - [defaultValue release]; - defaultValue = [iDefaultValue retain]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[classDescription model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:classDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPAttributeChangedNotification object:self]; - } -} - -- (void) insertObject:(MCPJoin *) iJoin inJoinsAtIndex:(NSUInteger) index -{ - [joins insertObject:iJoin atIndex:index]; -} - -- (void) removeObjectFromJoinsAtIndex:(NSUInteger) index -{ - [joins removeObjectAtIndex:index]; -} - -/* -- (void) addRelation:(MCPRelation *) iRelation -{ -// Following implementation make sure that a given relation is only added once... but I don't see the reason for that to be true. - /* if (NSNotFound == [relations indexOfObjectIdenticalTo:iRelation]) { - [relations addObject:iRelation]; - } - *//* - [relations addObject:iRelation]; -} - -- (void) removeRelation:(MCPRelation *) iRelation -{ -// Following implementation needs only one reference to a given relation to be working properly (not true) -// [relations removeObjectIdenticalTo:iRelation]; - unsigned int i; - - i = [relations indexOfObjectIdenticalTo:iRelation]; - if (NSNotFound != i) { - [relations removeObjectAtIndex:i]; - } -// If the relation is there more than once, remove it only once. -} -*/ - -#pragma mark Getters -- (MCPClassDescription *) classDescription -{ - return classDescription; -} - -- (NSString *) name -{ - return name; -} - -- (Class) valueClass -{ - return valueClass; -} - -- (NSString *) valueClassName -{ - return NSStringFromClass(valueClass); -} - -- (NSString *) internalType -{ - return internalType; -} - -- (NSString *) externalName -{ - return externalName; -} - -- (NSString *) externalType -{ - return externalType; -} - -- (NSUInteger) width -{ - return width; -} - -- (BOOL) allowsNull -{ - return allowsNull; -} - -- (BOOL) autoGenerated -{ - return autoGenerated; -} - -- (BOOL) isPartOfKey -{ - return isPartOfKey; -} - -- (BOOL) isPartOfIdentity -{ - return isPartOfIdentity; -} - -- (BOOL) hasAccessor -{ - return hasAccessor; -} - -- (id) defaultValue -{ - return defaultValue; -} - -- (NSUInteger) countOfJoins -{ - return [joins count]; -} - -- (MCPJoin *) objectInJoinsAtIndex:(NSUInteger) index -{ - return (MCPJoin *)((NSNotFound != index) ? [joins objectAtIndex:index] : nil); -} - -- (NSUInteger) indexOfJoinIdenticalTo:(id) iJoin -{ - return [joins indexOfObjectIdenticalTo:iJoin]; -} - -#pragma mark Some general methods: -- (BOOL) isEqual:(id) iObject -// Equal to another attribute, if they have the same name and same class description. -// Equal to a string (NSString), if the name of the attribute is equal to the string. -{ - if ([iObject isKindOfClass:[MCPAttribute class]]) { - MCPAttribute *theAttribute = (MCPAttribute *) iObject; - - return ([name isEqualToString:[theAttribute name]]) && ([classDescription isEqual:[theAttribute classDescription]]); - } - if ([iObject isKindOfClass:[NSString class]]) { - return [name isEqualToString:(NSString *)iObject]; - } - return NO; -} - -#pragma mark For debugging the retain counting -- (id) retain -{ - [super retain]; - return self; -} - -- (void) release -{ - [super release]; - return; -} - -@end - -@implementation MCPAttribute (Private) - -- (void)setValueClassName:(NSString *) iClassName -{ - if (NSClassFromString(iClassName) != valueClass) { - [self setValueClass:NSClassFromString(iClassName)]; - } -} - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+MCPEntreprise.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+MCPEntreprise.h deleted file mode 100644 index 052eeadb..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+MCPEntreprise.h +++ /dev/null @@ -1,47 +0,0 @@ -// -// $Id$ -// -// MCPClassDescription+MCPEntreprise.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 01/11/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import -#import "MCPClassDescription.h" - -@interface MCPClassDescription (MCPEntreprise) - -#pragma mark Pseudo getters (for NSClassDescription overload) -- (NSArray *) attributeKeys; -- (NSString *) inverseRelationshipKey:(NSString *) relationshipKey; -- (NSArray *) toManyRelationshipKeys; -- (NSArray *) toOneRelationshipKeys; - -#pragma mark Specifics for MCPObject -- (NSArray *) primaryKeyAttributes; -- (NSArray *) identityAttributes; -- (MCPAttribute *) attributeWithName: (NSString *) iName; -- (MCPRelation *) relationWithName:(NSString *) iRelationName; -- (BOOL) singleIntAutoGenKey; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+MCPEntreprise.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+MCPEntreprise.m deleted file mode 100644 index 71a25911..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+MCPEntreprise.m +++ /dev/null @@ -1,186 +0,0 @@ -// -// $Id$ -// -// MCPClassDescription+MCPEntreprise.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 01/11/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPClassDescription+MCPEntreprise.h" - -#import "MCPAttribute.h" -#import "MCPRelation.h" - -@implementation MCPClassDescription (MCPEntreprise) - -#pragma mark Pseudo getters (for NSClassDescription overload) -- (NSArray *) attributeKeys -{ - NSArray *theRet; - NSMutableArray *theKeys =[[NSMutableArray alloc] init]; - NSUInteger i; - - for (i=0; i != [self countOfAttributes]; ++i) { - [theKeys insertObject:[(MCPAttribute *)[self objectInAttributesAtIndex:i] name] atIndex:i]; - } - theRet = [NSArray arrayWithArray:theKeys]; - [theKeys release]; - return theRet; -} - -- (NSString *) inverseRelationshipKey:(NSString *) relationshipKey -{ - NSUInteger index = [self indexOfRelation:relationshipKey]; - - if (NSNotFound != index) { - MCPRelation *theRelation; - - theRelation = (MCPRelation *)[self objectInRelationsAtIndex:index]; - return [[theRelation inverseRelation] name]; - } - return nil; -} - -- (NSArray *) toManyRelationshipKeys -{ - NSArray *theRet; - NSMutableArray *theToManyRel = [[NSMutableArray alloc] init]; - NSUInteger i, j; - - j=0; - for (i=0; i != [self countOfRelations]; ++i) { - MCPRelation *theRelation = (MCPRelation *)[self objectInRelationsAtIndex:i]; - - if ([theRelation isToMany]) { - [theToManyRel insertObject:[theRelation name] atIndex:j]; - ++j; - } - } - theRet = [NSArray arrayWithArray:theToManyRel]; - [theToManyRel release]; - return theRet; -} - -- (NSArray *) toOneRelationshipKeys; -{ - NSArray *theRet; - NSMutableArray *theToOneRel = [[NSMutableArray alloc] init]; - NSUInteger i, j; - - j=0; - for (i=0; i != [self countOfRelations]; ++i) { - MCPRelation *theRelation = (MCPRelation *)[self objectInRelationsAtIndex:i]; - - if (! [theRelation isToMany]) { - [theToOneRel insertObject:[theRelation name] atIndex:j]; - ++j; - } - } - theRet = [NSArray arrayWithArray:theToOneRel]; - [theToOneRel release]; - return theRet; -} - -#pragma mark Specifics for MCPObject -- (NSArray *) primaryKeyAttributes -{ - NSMutableArray *theRet = [NSMutableArray array]; - NSUInteger i, j; - - j = 0; - for (i=0; i != [self countOfAttributes]; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *)[self objectInAttributesAtIndex:i]; - - if ([theAttribute isPartOfKey]) { - [theRet insertObject:theAttribute atIndex:j]; - ++j; - } - } - return (NSArray *)theRet; -} - -- (NSArray *) identityAttributes -{ - NSMutableArray *theRet = [NSMutableArray array]; - NSUInteger i, j; - - j = 0; - for (i=0; i != [self countOfAttributes]; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *)[self objectInAttributesAtIndex:i]; - - if ([theAttribute isPartOfIdentity]) { - [theRet insertObject:theAttribute atIndex:j]; - ++j; - } - } - return (NSArray *)theRet; -} - -- (MCPAttribute *) attributeWithName: (NSString *) iName -{ -// This type of implementation is NOT working : most likely the isEqual method is called on iName rather than on the objects of the array -/* - unsigned int index = [self indexOfAttribute:iName]; - - return (NSNotFound != index) ? (MCPAttribute *)[self objectInAttributesAtIndex:index] : nil ; -*/ - NSUInteger i; - - for (i = 0; [attributes count] != i; ++i) { - if ([[(MCPAttribute *)[attributes objectAtIndex:i] name] isEqualToString:iName]) { - return (MCPAttribute *)[attributes objectAtIndex:i]; - } - } - return nil; -} - -- (MCPRelation *) relationWithName:(NSString *) iRelationName -{ -// This type of implementation is NOT working : most likely the isEqual method is called on iName rather than on the objects of the array -/* unsigned int index = [relations indexOfObject:iRelationName]; - - return (NSNotFound != index) ? (MCPRelation *)[relations objectAtIndex:index] : nil; -*/ - NSUInteger i; - - for (i = 0; [relations count] != i; ++i) { - if ([[(MCPRelation *)[relations objectAtIndex:i] name] isEqualToString:iRelationName]) { - return (MCPRelation *)[relations objectAtIndex:i]; - } - } - return nil; -} - -- (BOOL) singleIntAutoGenKey -{ - NSArray *theKeys = [self primaryKeyAttributes]; - - if (1 == [theKeys count]) { - MCPAttribute *theSingleKey = (MCPAttribute *)[theKeys objectAtIndex:0]; - - return [theSingleKey autoGenerated] && [[theSingleKey externalType] isEqualToString:@"INT"]; - } - return NO; -} - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+Private.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+Private.h deleted file mode 100644 index df86b763..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription+Private.h +++ /dev/null @@ -1,45 +0,0 @@ -// -// $Id$ -// -// MCPClassDescription+Private.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPClassDescription.h" - -@interface MCPClassDescription (Private) - -#pragma mark Setters -- (void) setAttributes:(NSArray *) iAttributes; -- (void) setRelations:(NSArray *) iRelations; -- (void) insertObject:(MCPRelation *) iRelation inIncomingsAtIndex:(NSUInteger) index; -- (void) removeObjectFromIncomingsAtIndex:(NSUInteger) index; - -#pragma mark Getters -- (NSArray *) incomings; -- (NSUInteger) countOfIncomings; -- (MCPRelation *) objectInIncomingsAtIndex:(NSUInteger) index; -- (NSUInteger) indexOfIncoming:(id) iRelation; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription.h deleted file mode 100644 index cff3cf17..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription.h +++ /dev/null @@ -1,93 +0,0 @@ -// -// $Id$ -// -// MCPClassDescription.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -@class MCPModel; -@class MCPAttribute; -@class MCPRelation; -@class MCPRelation; - -@interface MCPClassDescription : NSClassDescription -{ -@protected - MCPModel *model; // The model where we stand - NSString *name; // Name of the class (can not use className, as it is already used by NSObject). - NSString *externalName; // Name of the table for storage - NSMutableArray *attributes; // array of the attributes of the class description - NSMutableArray *relations; // array of the relations of the class description (both origin and destination) - NSMutableArray *incomings; // array if the INCOMMING relation (just to be sure we are able to invalidate those if necessary) - Class representedClass; // the class object that the description represents. -} - -// This correspond to the method singleIntAutoGenKey in the category MCPEntreprise... which name should I change... - -#pragma mark Class methods -+ (void) initialize; - -#pragma mark Life cycle -- (id) initInModel:(MCPModel *) iModel withName:(NSString *) iName; -- (void) dealloc; - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder; -- (void) encodeWithCoder:(NSCoder *) encoder; - -#pragma mark Making new attributes and relations -- (MCPAttribute *) addNewAttributeWithName:(NSString *) iName inPosition:(NSInteger) index; -- (MCPRelation *) addNewRelationTo:(MCPClassDescription *) iTo name:(NSString *) iName inPostion:(NSInteger) index; - -#pragma mark Setters -- (void) setName:(NSString *) iName; -- (void) setExternalName:(NSString *) iExternalName; -- (void) insertObject:(MCPAttribute *) iAttribute inAttributesAtIndex:(NSUInteger) index; -- (void) removeObjectFromAttributesAtIndex:(NSUInteger) index; -- (void) insertObject:(MCPRelation *) iRelation inRelationsAtIndex:(NSUInteger) index; -- (void) removeObjectFromRelationsAtIndex:(NSUInteger) index; - -#pragma mark Getters -- (MCPModel *) model; -- (NSString *) name; -- (NSString *) externalName; -- (NSArray *) attributes; -- (NSUInteger) countOfAttributes; -- (MCPAttribute *) objectInAttributesAtIndex:(NSUInteger) index; -- (NSUInteger) indexOfAttribute:(id) iAttribute; -- (NSArray *) relations; -- (NSUInteger) countOfRelations; -- (MCPRelation *) objectInRelationsAtIndex:(NSUInteger) index; -- (NSUInteger) indexOfRelation:(id) iRelation; -- (Class) representedClass; - -#pragma mark Some general methods: -- (BOOL) isEqual:(id) iObject; - -#pragma mark Output for logging -- (NSString *) descriptionWithLocale:(NSDictionary *) locale; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription.m deleted file mode 100644 index 9f2ad18d..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPClassDescription.m +++ /dev/null @@ -1,373 +0,0 @@ -// -// $Id$ -// -// MCPClassDescription.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPClassDescription.h" -#import "MCPClassDescription+Private.h" - -#import "MCPEntrepriseNotifications.h" - -#import "MCPModel.h" -#import "MCPAttribute.h" -#import "MCPRelation.h" - -@implementation MCPClassDescription - -#pragma mark Class methods -+ (void) initialize -{ - if (self = [MCPClassDescription class]) { - [self setVersion:010101]; // Major.Minor.Revision -> MaMiRe - } - return; -} - -#pragma mark Life cycle -- (id) initInModel:(MCPModel *) iModel withName:(NSString *) iName -{ - self = [super init]; - if (self) { - model = iModel; - [self setName:iName]; - attributes = [[NSMutableArray alloc] init]; - relations = [[NSMutableArray alloc] init]; - incomings = [[NSMutableArray alloc] init]; - representedClass = nil; - // NSLog(@"MAKING a new object : %@", self); - } - return self; -} - -- (void) dealloc -{ -// NSArray *theRelations; -// unsigned int i; - - [name release]; - [externalName release]; - [attributes release]; - while ([relations count]) { - [(MCPRelation *)[relations objectAtIndex:0] invalidateRelation]; - } - [relations release]; - while ([incomings count]) { - [(MCPRelation *)[incomings objectAtIndex:0] invalidateRelation]; - } - [incomings release]; - [super dealloc]; -} - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder -{ - self = [super init]; - if ((self) && ([decoder allowsKeyedCoding])) { - model = [decoder decodeObjectForKey:@"MCPmodel"]; -// NSLog(@"in MCPClassDescription initWithCoder, model = %@ (pointer = %p)", model, model); - [self setName:[decoder decodeObjectForKey:@"MCPname"]]; - [self setExternalName:[decoder decodeObjectForKey:@"MCPexternalName"]]; - [self setAttributes:[decoder decodeObjectForKey:@"MCPattributes"]]; -// [self setRelations:[decoder decodeObjectForKey:@"MCPrelations"]]; - relations = [[NSMutableArray alloc] init]; - incomings = [[NSMutableArray alloc] init]; - representedClass = nil; - [decoder decodeObjectForKey:@"MCPrelations"]; // The relation get linked properly while initted. - } - else { - NSLog(@"For some reason, unable to decode MCPClassDescription from the coder!!!"); - } - - return self; -} - -- (void) encodeWithCoder:(NSCoder *) encoder -{ - if (! [encoder allowsKeyedCoding]) { - NSLog(@"In MCPClassDescription -encodeWithCoder : Unable to encode to a non-keyed encoder!!, will not perform encoding!!"); - return; - } -// [encoder encodeObject:[self model] forKey:@"MCPmodel"]; - [encoder encodeConditionalObject:[self model] forKey:@"MCPmodel"]; - [encoder encodeObject:[self name] forKey:@"MCPname"]; - [encoder encodeObject:[self externalName] forKey:@"MCPexternalName"]; - [encoder encodeObject:[self attributes] forKey:@"MCPattributes"]; - [encoder encodeObject:[self relations] forKey:@"MCPrelations"]; - [encoder encodeObject:@"1.1.1" forKey:@"MCPversion"]; - return; -} - -#pragma mark Making new attributes and relations -- (MCPAttribute *) addNewAttributeWithName:(NSString *) iName inPosition:(NSInteger) index -{ - MCPAttribute *theAttribute = [[MCPAttribute alloc] initForClassDescription:self withName:iName]; - -// [self addAttribute:theAttribute]; - [self insertObject:theAttribute inAttributesAtIndex:(index < 0) ? ([self countOfAttributes] + index + 1) : index]; - [theAttribute release]; - return theAttribute; -} - -- (MCPRelation *) addNewRelationTo:(MCPClassDescription *) iTo name:(NSString *) iName inPostion:(NSInteger) index -{ - MCPRelation *theRelation = [[MCPRelation alloc] initWithName:iName from:self to:iTo]; - - [theRelation release]; - return theRelation; -} - -#pragma mark Setters -- (void) setName:(NSString *) iName -{ - if (iName != name) { - [name release]; - name = [iName retain]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:model]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:self]; - representedClass = nil; - } -} - -- (void) setExternalName:(NSString *) iExternalName -{ - if (iExternalName != externalName) { - [externalName release]; - externalName = [iExternalName retain]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:model]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:self]; - } -} - -- (void) insertObject:(MCPAttribute *) iAttribute inAttributesAtIndex:(NSUInteger) index -{ - [attributes insertObject:iAttribute atIndex:index]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:model]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:self]; -} - -- (void) removeObjectFromAttributesAtIndex:(NSUInteger) index -{ - [attributes removeObjectAtIndex:index]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:model]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:self]; -} - -- (void) insertObject:(MCPRelation *) iRelation inRelationsAtIndex:(NSUInteger) index -{ - [relations insertObject:iRelation atIndex:index]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:model]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:self]; -} - -- (void) removeObjectFromRelationsAtIndex:(NSUInteger) index -{ - [relations removeObjectAtIndex:index]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:model]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:self]; -} - -#pragma mark Getters -- (MCPModel *) model -{ - return model; -} - -- (NSString *) name -{ - return name; -} - -- (NSString *) externalName -{ - return externalName; -} - -- (NSArray *) attributes -{ - return [NSArray arrayWithArray:attributes]; -} - -- (NSUInteger) countOfAttributes -{ - return [attributes count]; -} - -- (MCPAttribute *) objectInAttributesAtIndex:(NSUInteger) index -{ - return (MCPAttribute *)((NSNotFound != index) ? [attributes objectAtIndex:index] : nil); -} - -- (NSUInteger) indexOfAttribute:(id) iAttribute -{ - return [attributes indexOfObject:iAttribute]; -} - -- (NSArray *) relations -{ - return [NSArray arrayWithArray:relations]; -} - -- (NSUInteger) countOfRelations -{ - return [relations count]; -} - -- (MCPRelation *) objectInRelationsAtIndex:(NSUInteger) index -{ - return (MCPRelation *)((NSNotFound != index) ? [relations objectAtIndex:index] : nil); -} - -- (NSUInteger) indexOfRelation:(id) iRelation -{ - return [relations indexOfObject:iRelation]; -} - -- (Class) representedClass -{ - if (representedClass) { - return representedClass; - } - representedClass = NSClassFromString(name); - return representedClass; -} - -#pragma mark Some general methods: -- (BOOL) isEqual:(id) iObject -// Equal to another class description if they have the same name. -// Equal to a string if the string is equal to the className of the class description. -{ - if ([iObject isKindOfClass:[MCPClassDescription class]]) { - return [name isEqualToString:[(MCPClassDescription *)iObject name]]; - } - if ([iObject isKindOfClass:[NSString class]]) { - return [name isEqualToString:(NSString *)iObject]; - } - return NO; -} - -/* -- (NSString *) description -{ - return [NSString stringWithFormat:@"", [self name], self]; -} - -- (NSString *) descriptionWithLocale:(NSDictionary *) locale -{ - return [self description]; -} -*/ - -#pragma mark Output for logging - -- (NSString *)descriptionWithLocale:(NSDictionary *) locale -{ - NSUInteger i; - NSMutableString *theOutput = [NSMutableString string]; - - [theOutput appendFormat:@"MCPClassDescription for class : %@ (table : %@)\n", [self name], [self externalName]]; - for (i=0; [attributes count] != i; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *) [attributes objectAtIndex:i]; - - [theOutput appendFormat:@"attribute %u, name = %@, column = %@. Allows null : %c\n", i, [theAttribute name], [theAttribute externalName], ([theAttribute allowsNull] ? 'Y' : 'N')]; - } - return theOutput; -} - -#pragma mark For debugging the retain counting -- (id) retain -{ - [super retain]; - return self; -} - -- (void) release -{ - [super release]; - return; -} - -@end - -@implementation MCPClassDescription (Private) - -#pragma mark Setters -- (void) setAttributes:(NSArray *) iAttributes -{ - if (iAttributes != attributes) { - [attributes release]; - attributes = [[NSMutableArray alloc] initWithArray:iAttributes]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:model]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:self]; - } -} - -- (void) setRelations:(NSArray *) iRelations -{ - if (iRelations != relations) { - [relations release]; - relations = [[NSMutableArray alloc] initWithArray:iRelations]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:model]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:self]; - } -} - -- (void) insertObject:(MCPRelation *) iRelation inIncomingsAtIndex:(NSUInteger) index -{ - if ([iRelation destination] == self) { - [incomings insertObject:iRelation atIndex:index]; - } - else { - NSLog(@"in -[MCPClassDescription+Private insertObject:inIncomingsAtIndex:]. ERRROR : self is NOT the destination of the relation"); - } -} - -- (void) removeObjectFromIncomingsAtIndex:(NSUInteger) index -{ - [incomings removeObjectAtIndex:index]; -} - -#pragma mark Getters -- (NSArray *) incomings -{ - return [NSArray arrayWithArray:incomings]; -} - -- (NSUInteger) countOfIncomings -{ - return [incomings count]; -} - -- (MCPRelation *) objectInIncomingsAtIndex:(NSUInteger) index -{ - return (MCPRelation *)[incomings objectAtIndex:index]; -} - -- (NSUInteger) indexOfIncoming:(id) iRelation -{ - return [incomings indexOfObject:iRelation]; -} - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPEntrepriseNotifications.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPEntrepriseNotifications.h deleted file mode 100644 index 1bb903c4..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPEntrepriseNotifications.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// $Id$ -// -// MCPEnterpriseNotifications.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -#pragma mark Name for notification - -extern NSString *MCPModelChangedNotification; -extern NSString *MCPClassDescriptionChangedNotification; -extern NSString *MCPAttributeChangedNotification; -extern NSString *MCPRelationChangedNotification; diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPEntrepriseNotifications.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPEntrepriseNotifications.m deleted file mode 100644 index ec4f3793..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPEntrepriseNotifications.m +++ /dev/null @@ -1,34 +0,0 @@ -// -// $Id$ -// -// MCPEnterpriseNotifications.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -NSString *MCPModelChangedNotification = @"Model has changed"; -NSString *MCPClassDescriptionChangedNotification = @"ClassDescription has changed"; -NSString *MCPAttributeChangedNotification = @"Attribute has changed"; -NSString *MCPRelationChangedNotification = @"Relation has changed"; diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.h deleted file mode 100644 index 05e99f8d..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.h +++ /dev/null @@ -1,74 +0,0 @@ -// -// $Id$ -// -// MCPJoin.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 18/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -@class MCPModel; -@class MCPClassDescription; -@class MCPAttribute; -@class MCPRelation; -@class MCPRelation; - -@interface MCPJoin : NSObject -{ -@protected - // Note that NONE of these attributes are retained!!! - // Instead all these objects are notified of the existence of the join - // and are responsible to invalidate/delete it if necessary. - MCPRelation *relation; - MCPAttribute *origin; - MCPAttribute *destination; -} - -#pragma mark Class methods -+ (void) initialize; - -#pragma mark Life cycle -- (id) initForRelation:(MCPRelation *) iRelation from:(MCPAttribute *) iOrigin to:(MCPAttribute *) iDestination; -- (void) invalidate; -- (void) dealloc; - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder; -- (void) encodeWithCoder:(NSCoder *) encoder; - -#pragma mark Setters -// No setter for relation : should be set at init time! -- (void) setOrigin:(MCPAttribute *) iOrigin; -- (void) setDestination:(MCPAttribute *) iDestination; - -#pragma mark Getters -- (MCPRelation *) relation; -- (MCPAttribute *) origin; -- (MCPAttribute *) destination; -- (NSUInteger) index; - -#pragma mark Some general methods: -- (BOOL) isEqual:(id) iObject; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.m deleted file mode 100644 index 576b1e10..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPJoin.m +++ /dev/null @@ -1,183 +0,0 @@ -// -// $Id$ -// -// MCPJoin.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 18/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPJoin.h" - -#import "MCPModel.h" -#import "MCPClassDescription.h" -#import "MCPAttribute.h" -#import "MCPRelation.h" -#import "MCPRelation.h" - -@implementation MCPJoin - -#pragma mark Class methods -+ (void) initialize -{ - if (self = [MCPJoin class]) { - [self setVersion:010101]; // Ma.Mi.Re -> MaMiRe - } - return; -} - -#pragma mark Life cycle -- (id) initForRelation:(MCPRelation *) iRelation from:(MCPAttribute *) iOrigin to:(MCPAttribute *) iDestination; -{ - self = [super init]; - if (self) { - relation = iRelation; - [self setOrigin:iOrigin]; - [self setDestination:iDestination]; - } - return self; -} - -- (void) invalidate -{ - [self retain]; - NSLog(@"Enterring -[MCPJoin invalidate], retain count is %ld (after retaining : should be 4)", [self retainCount]); - [origin removeObjectFromJoinsAtIndex:[origin indexOfJoinIdenticalTo:self]]; - [destination removeObjectFromJoinsAtIndex:[destination indexOfJoinIdenticalTo:self]]; - [relation removeObjectFromJoinsAtIndex:[relation indexOfJoinIdenticalTo:self]]; - NSLog(@"Enterring -[MCPJoin invalidate], retain count is %ld (before releasing : should be 1)", [self retainCount]); - [self release]; - return; -} - -- (void) dealloc -{ - // Nothing to release, because the attributes are NOT retained. - [super dealloc]; -} - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder -{ - self = [super init]; - if ((self) && ([decoder allowsKeyedCoding])) { - relation = [decoder decodeObjectForKey:@"MCPrelation"]; - [self setOrigin:[decoder decodeObjectForKey:@"MCPorigin"]]; - [self setDestination:[decoder decodeObjectForKey:@"MCPdestination"]]; - } - else { - NSLog(@"For some reason, unable to decode MCPJoin from the coder!!!"); - } - return self; -} - -- (void) encodeWithCoder:(NSCoder *) encoder -{ - if (! [encoder allowsKeyedCoding]) { - NSLog(@"In MCPJoin -encodeWithCoder : Unable to encode to a non-keyed encoder!!, will not perform encoding!!"); - return; - } - [encoder encodeObject:[self relation] forKey:@"MCPrelation"]; - [encoder encodeObject:[self origin] forKey:@"MCPorigin"]; - [encoder encodeObject:[self destination] forKey:@"MCPdestination"]; -} - -#pragma mark Setters -- (void) setOrigin:(MCPAttribute *) iOrigin -{ - if (origin != iOrigin) { - if (origin) { - [origin removeObjectFromJoinsAtIndex:[origin indexOfJoinIdenticalTo:self]]; - } - origin = iOrigin; - if (origin) { - [origin insertObject:self inJoinsAtIndex:[origin countOfJoins]]; - } - } -} - -- (void) setDestination:(MCPAttribute *) iDestination -{ - if (destination != iDestination) { - if (destination) { - [destination removeObjectFromJoinsAtIndex:[destination indexOfJoinIdenticalTo:self]]; - } - destination = iDestination; - if (destination) { - [destination insertObject:self inJoinsAtIndex:[destination countOfJoins]]; - } - } -} - -#pragma mark Getters -- (MCPRelation *) relation -{ - return relation; -} - -- (MCPAttribute *) origin -{ - return origin; -} - -- (MCPAttribute *) destination -{ - return destination; -} - -- (NSUInteger) index -{ - return [relation indexOfJoinIdenticalTo:self]; -} - -#pragma mark Some general methods: -- (BOOL) isEqual:(id) iObject -{ - if ([iObject isKindOfClass:[MCPJoin class]]) { - MCPJoin *theJoin = (MCPJoin *)iObject; - - return ([relation isEqual:[theJoin relation]]) && ([origin isEqual:[theJoin origin]]) && ([destination isEqual:[theJoin destination]]); - } - if ([iObject isKindOfClass:[NSDictionary class]]) { - NSDictionary *theDict = (NSDictionary *)iObject; - - return ([relation isEqual:[theDict valueForKey:@"relation"]]) && ([origin isEqual:[theDict valueForKey:@"origin"]]) && ([destination isEqual:[theDict valueForKey:@"destination"]]); - } - return NO; -} - -#pragma mark For debugging the retain counting -- (id) retain -{ - [super retain]; - - return self; -} - -- (void) release -{ - [super release]; - - return; -} - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel+MCPEntreprise.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel+MCPEntreprise.h deleted file mode 100644 index 15aa9ed3..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel+MCPEntreprise.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// $Id$ -// -// MCPModel+MCPEntreprise.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 01/11/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at - -#import "MCPModel.h" - -@interface MCPModel (MCPEntreprise) - -- (void) registerAsClassDescriptionServer; -- (void) registerDescriptionForClass:(NSNotification *) notification; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel+MCPEntreprise.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel+MCPEntreprise.m deleted file mode 100644 index 2652f0dc..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel+MCPEntreprise.m +++ /dev/null @@ -1,57 +0,0 @@ -// -// $Id$ -// -// MCPModel+MCPEntreprise.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 01/11/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPModel+MCPEntreprise.h" - -#import "MCPObject.h" - -@implementation MCPModel (MCPEntreprise) - -#pragma mark Work as a class description server - -- (void) registerAsClassDescriptionServer -{ - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(registerDescriptionForClass:) name:NSClassDescriptionNeededForClassNotification object:nil]; -} - -- (void) registerDescriptionForClass:(NSNotification *) notification -{ - Class theClass = [notification object]; - - if ([theClass isSubclassOfClass:[MCPObject class]]) { - - NSString *theClassName = NSStringFromClass(theClass); - NSUInteger index = [self indexOfClassDescription:theClassName]; - - if (NSNotFound != index) { - [NSClassDescription registerClassDescription:(NSClassDescription *)[self objectInClassDescriptionsAtIndex:index] forClass:theClass]; - } - } -} - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.h deleted file mode 100644 index 0a6c6afd..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.h +++ /dev/null @@ -1,84 +0,0 @@ -// -// $Id$ -// -// MCPModel.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -@class MCPClassDescription; -@class MCPAttribute; -@class MCPRelation; - -@interface MCPModel : NSObject -{ -@protected - NSString *name; // Name of the model ... useless. - NSMutableArray *classDescriptions; // Order of the class descriptions in the model. - BOOL usesInnoDBTables; // The database should use InnoDB tables. - // Might add a string holding définition of tables. - // Might also add some sort of template for generated files (at least the header). -} - -#pragma mark Class methods -+ (void) initialize; - -#pragma mark Life cycle -- (id) initWithName:(NSString *) iName; -- (void) dealloc; - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder; -- (void) encodeWithCoder:(NSCoder *) encoder; - -#pragma mark Making new class description -- (MCPClassDescription *) addNewClassDescriptionWithName:(NSString *) iName inPosition:(NSInteger) index; - -#pragma mark Setters -- (void) setName:(NSString *) iName; -- (void) setClassDescriptions:(NSArray *) iClassDescriptions; -- (void) insertObject:(MCPClassDescription *) iClassDescription inClassDescriptionsAtIndex:(NSUInteger) index; -- (void) removeObjectFromClassDescriptionsAtIndex:(NSUInteger) index; -- (void) setUsesInnoDBTables:(BOOL) iUsesInnoDB; - -// Deprecated : non KVC -//- (void) removeClassDescription:(MCPClassDescription *) iClassDescription; -//- (void) addClassDescription:(MCPClassDescription *) iClassDescription; - -#pragma mark Getters -- (NSString *) name; -- (NSArray *) classDescriptions; -- (NSUInteger) countOfClassDescriptions; -- (MCPClassDescription *) objectInClassDescriptionsAtIndex:(NSUInteger) index; -- (NSUInteger) indexOfClassDescription:(id) iClassDescription; -- (BOOL) usesInnoDBTables; - -// Deprecated : non KVC -//- (MCPClassDescription *) classDescriptionWithClassName:(NSString *) iClassDescriptionClassName; - -#pragma mark Output for logging -- (NSString *) descriptionWithLocale:(NSDictionary *) locale; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.m deleted file mode 100644 index 7c73eff1..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPModel.m +++ /dev/null @@ -1,230 +0,0 @@ -// -// $Id$ -// -// MCPModel.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 09/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPModel.h" - -#import "MCPEntrepriseNotifications.h" - -#import "MCPClassDescription.h" -#import "MCPAttribute.h" -#import "MCPRelation.h" - -@implementation MCPModel - -#pragma mark Class methods -+ (void) initialize -{ - if (self = [MCPModel class]) { - [self setVersion:010101]; // Ma.Mi.Re -> MaMiRe - } - return; -} - -#pragma mark Life cycle -- (id) initWithName:(NSString *) iName -{ - self = [super init]; - if (self) { - [self setName:iName]; - classDescriptions = [[NSMutableArray alloc] init]; - } - - return self; -} - -- (void) dealloc -{ - [[NSNotificationCenter defaultCenter] removeObserver:self]; - [name release]; - [classDescriptions release]; - [super dealloc]; -} - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder -{ - self = [super init]; - if ((self) && ([decoder allowsKeyedCoding])) { - [self setName:[decoder decodeObjectForKey:@"MCPname"]]; - [self setClassDescriptions:[decoder decodeObjectForKey:@"MCPclassDescriptions"]]; - [self setUsesInnoDBTables:[decoder decodeBoolForKey:@"MCPusesInnoDBTables"]]; - } - else { - NSLog(@"For some reason, unable to decode MCPModel from the coder!!!"); - } - - return self; -} - -- (void) encodeWithCoder:(NSCoder *) encoder -{ - if (! [encoder allowsKeyedCoding]) { - NSLog(@"In MCPModel -encodeWithCoder : Unable to encode to a non-keyed encoder!!, will not perform encoding!!"); - return; - } -// [super encodeWithCoder:encoder]; - [encoder encodeObject:[self name] forKey:@"MCPname"]; - [encoder encodeObject:[self classDescriptions] forKey:@"MCPclassDescriptions"]; - [encoder encodeBool:[self usesInnoDBTables] forKey:@"MCPusesInnoDBTables"]; - [encoder encodeObject:@"1.1.1" forKey:@"MCPversion"]; - return; -} - -#pragma mark Making new class description -- (MCPClassDescription *) addNewClassDescriptionWithName:(NSString *) iName inPosition:(NSInteger) index; -{ - MCPClassDescription *theClassDescription = [[MCPClassDescription alloc] initInModel:self withName:iName]; - -// [self addClassDescription:theClassDescription]; - [self insertObject:theClassDescription inClassDescriptionsAtIndex:(index < 0) ? ([self countOfClassDescriptions] + index + 1) : index]; - [theClassDescription release]; - return theClassDescription; -} - -#pragma mark Setters -- (void) setName:(NSString *) iName -{ - if (iName != name) { - [name release]; - name = [iName retain]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:self]; - } -} - -- (void) setClassDescriptions:(NSArray *) iClassDescriptions -{ - if (iClassDescriptions != classDescriptions) { - [classDescriptions release]; - classDescriptions = [[NSMutableArray alloc] initWithArray:iClassDescriptions]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:self]; - } -} - -- (void) insertObject:(MCPClassDescription *) iClassDescription inClassDescriptionsAtIndex:(NSUInteger) index -{ - [classDescriptions insertObject:iClassDescription atIndex:index]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:self]; -} - -- (void) removeObjectFromClassDescriptionsAtIndex:(NSUInteger) index -{ - [classDescriptions removeObjectAtIndex:index]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:self]; -} - -- (void) setUsesInnoDBTables:(BOOL) iUsesInnoDB -{ - usesInnoDBTables = iUsesInnoDB; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:self]; -} - -// Deprecated : non KVC -/* -- (void) removeClassDescription:(MCPClassDescription *) iClassDescription -{ - [classDescriptions removeObject:iClassDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:self]; -} - - - (void) addClassDescription:(MCPClassDescription *) iClassDescription - { - [classDescriptions addObject:iClassDescription]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:self]; - } - - */ - -#pragma mark Getters -- (NSString *) name -{ - return name; -// return [NSString stringWithString:name]; -} - -- (NSArray *) classDescriptions -{ - return [NSArray arrayWithArray:classDescriptions]; -} - -- (NSUInteger) countOfClassDescriptions -{ - return [classDescriptions count]; -} - -- (MCPClassDescription *) objectInClassDescriptionsAtIndex:(NSUInteger) index -{ - return (MCPClassDescription *)((NSNotFound != index) ? [classDescriptions objectAtIndex:index] : nil); -} - -- (MCPClassDescription *) classDescriptionWithClassName:(NSString *) iClassDescriptionClassName -{ -// Given the implementation of isEqual: for the MCPClassDescription, one should be able to use NSArray method directly: - /* unsigned int i; - - for (i=0; ([classDescriptions count] != i) && (! [iClassDescriptionClassName isEqualToString:[(MCPClassDescription *) [classDescriptions objectAtIndex:i] className]]); ++i ) { - } - return (i == [classDescriptions count]) ? nil : (MCPClassDescription *)[classDescriptions objectAtIndex:i]; - */ - NSUInteger theIndex = [classDescriptions indexOfObject:iClassDescriptionClassName]; - return (NSNotFound == theIndex) ? nil : [classDescriptions objectAtIndex:theIndex]; -} - -- (NSUInteger) indexOfClassDescription:(id) iClassDescription -{ - return [classDescriptions indexOfObject:iClassDescription]; -} - -- (BOOL) usesInnoDBTables -{ - return usesInnoDBTables; -} - -// Deprecated : non KVC - -#pragma mark Output for logging -- (NSString *) descriptionWithLocale:(NSDictionary *) locale -{ - return [NSString stringWithFormat:@"", [self name], self]; -} - -#pragma mark For debugging the retain counting -- (id) retain -{ - [super retain]; - - return self; -} - -- (void) release -{ - [super release]; - - return; -} - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.h deleted file mode 100644 index 4f126928..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.h +++ /dev/null @@ -1,127 +0,0 @@ -// -// $Id$ -// -// MCPObject.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 19/05/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -/*" Possible return code on some operations of the database interaction. "*/ -enum { - MCPDBReturnUnknown = 0, /*"Unknown state, should not happen."*/ - MCPDBReturnDeleted = 1, /*"The entry have been successfuly deleted from DB."*/ - MCPDBReturnUsed = 2, /*"The entry can not be removed, because some entries are still connected to it (some delete restrict/inhibit delete)."*/ - MCPDBReturnNone = 3, /*"No entry exist with this Id."*/ - MCPDBReturnNew = 4, /*"The entry was indeed new and inserted in the database."*/ - MCPDBReturnUpdated = 5, /*"The entry was updated in the DB."*/ - MCPDBReturnIncompleteKey = 6, /*"Part of the primary key is missing, action not taken."*/ - MCPDBReturnMultiple = 7, /*"Multiple rows are found with a query supposed to return at most one row."*/ - MCPDBReturnNoIdentity = 8, /*"The object does not have attributes that defines identity."*/ - MCPDBReturnNoKey = 9, /*"There is no primary key defined for this entity."*/ - MCPDBReturnNoConnection = 10, /*"The MCPObject is not having a connection."*/ - MCPDBReturnWrongRelationOrigin = 11, /*"Looking for a relation not which origin is not of the specified class."*/ - MCPDBReturnWrongRelationCardinality = 12, /*"Using a method assuming a cardinality of the relation while the relation as the other one."*/ - MCPDBReturnNoSuchRelation = 13, /*"There is no relation with such a name starting from this class."*/ - MCPDBReturnNotTarget = 14, /*"Tried to remove an object from a relation, while the objects does NOT belong to the relation."*/ - MCPDBReturnOK = 100 /*"Everything went OK."*/ -}; -typedef NSUInteger MCPDBReturnCode; - -@class MCPConnection; -@class MCPClassDescription; -@class MCPRelation; - -@interface MCPObject : NSObject { - MCPClassDescription *classDescription; - MCPConnection *connection; -} - -#pragma mark Life of the Object -/*" Life of the object "*/ -- (id) init; -- (id) initWithDictionary:(NSDictionary *) dictionary; - -- (void) dealloc; - -- (void) setAttributesToDefault; - -#pragma mark Accessors -/*" Accessor(s) "*/ -- (MCPClassDescription *) classDescription; -- (MCPConnection *) connection; - -- (void) setConnection:(MCPConnection *) iConnection; - -#pragma mark Database interface -/*" Database interface "*/ -- (id) readFromDBRow:(NSDictionary *) iDictionary withTableName:(NSString *) iTableName; -- (MCPDBReturnCode) setPrimaryKey:(id) iDictionary andFetchFromDB:(MCPConnection *) iConnection; -//- (MCPDBReturnCode) setPrimaryKey:(NSDictionary *) iDictionary andFetchFromDB:(MCPConnection *) iConnection; -- (NSDictionary *) checkDBId; // the returned dictionary contains a MCPDBReturnCode key with the return code. -- (NSDictionary *) saveInDB; // the returned dictionary contains a MCPDBReturnCode key with the return code. -- (MCPDBReturnCode) getAutoGenerated; -- (MCPDBReturnCode) updateInDB; -- (MCPDBReturnCode) deleteInDB; -+ (MCPDBReturnCode) deleteInDBUsingConnection:(MCPConnection *) iConnection withId:(id) iId; - -#pragma mark Handling relations -/*" Handling realtions "*/ -- (id) getTargetOfRelation:(MCPRelation *) iRelation; -- (id) getTargetOfRelationNamed:(NSString *) iRelationName; -- (MCPDBReturnCode) setTarget:(id) iTarget forRelation:(MCPRelation *) iRelation; -- (MCPDBReturnCode) setTarget:(id) iTarget forRelationNamed:(NSString *) iRelationName; -- (NSUInteger) countTargetForRelation:(MCPRelation *) iRelation; -- (NSUInteger) countTargetForRelationNamed:(NSString *) iRelationName; -- (MCPObject *) getTargetOfRelation:(MCPRelation *) iRelation atIndex:(NSUInteger) iIndex; -- (MCPObject *) getTargetOfRelationNamed:(NSString *) iRelationName atIndex:(NSUInteger) iIndex; -- (MCPDBReturnCode) addTarget:(MCPObject *) iTarget toRelation:(MCPRelation *) iRelation; -- (MCPDBReturnCode) addTarget:(MCPObject *) iTarget toRelationNamed:(NSString *) iRelationName; -- (MCPDBReturnCode) removeTarget:(MCPObject *) iTarget toRelation:(MCPRelation *) iRelation; -- (MCPDBReturnCode) removeTarget:(MCPObject *) iTarget toRelationNamed:(NSString *) iRelationName; -- (MCPDBReturnCode) removeTargetToRelation:(MCPRelation *) iRelation atIndex:(NSUInteger) iIndex; -- (MCPDBReturnCode) removeTargetToRelationNamed:(NSString *) iRelationName atIndex:(NSUInteger) iIndex; -- (NSUInteger) indexOfTarget:(MCPObject *) iTarget inRelation:(MCPRelation *) iRelation; -- (NSUInteger) indexOfTarget:(MCPObject *) iTarget inRelationNamed:(NSString *) iRelationName; - -#pragma mark Utilities -/*" Utility methods "*/ -- (id) defaultValueForKey:(NSString *) iKey; -- (NSDictionary *) primaryKey; - -/*" Testing equality (VERY important for relation management)"*/ -- (BOOL) isEqual:(id) iObject; - -#pragma mark Output -/*" Output : "*/ -- (NSString *) description; -- (NSString *) descriptionWithLocale:(NSDictionary *) locale; - -#pragma mark Ordering the array for relations -- (NSString *) orderSQLForClassDescription:(MCPClassDescription *) iClassDescription; - -/*" Anti-crash method... "*/ -- (void) setNilValueForKey:(NSString *) iKey; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m deleted file mode 100644 index dba963c6..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m +++ /dev/null @@ -1,1342 +0,0 @@ -// -// $Id$ -// -// MCPObject.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 19/05/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPObject.h" - -#import - -#import "MCPClassDescription.h" -#import "MCPClassDescription+MCPEntreprise.h" -#import "MCPAttribute.h" -#import "MCPRelation.h" -#import "MCPJoin.h" - -@implementation MCPObject - -#pragma mark Life of the object -- (id) init -/*" Taking care of getting the class description for self (after passing the message up). "*/ -{ -// NSArray theAttributes; -// unsigned int i; - - if (self = [super init]) { - classDescription = [[NSClassDescription classDescriptionForClass:[self class]] retain]; - [self setAttributesToDefault]; -/* - theAttributes = [classDescription attributeKeys]; - for (i=0; [theAttributes count] != i; ++i) { // setting the attributtes with proper defaults. - NSString *theKey = (NSString *) [theAttributes objectAtIndex:i]; - - [self setValue:[self defaultValueForKey:theKey] forKey:theKey]; - } - */ - } - return self; -} - -- (id) initWithDictionary:(NSDictionary *) dictionary -/*" This method will use the class description to fetch in the dictionary the values of the attributes of the object.... - Should try to get this description a bit clearer."*/ -{ - self = [super init]; - if (self) { - NSUInteger i; - NSArray *attrArray; - - classDescription = [[NSClassDescription classDescriptionForClass:[self class]] retain]; - [self setAttributesToDefault]; - attrArray = [classDescription attributes]; - for (i=0; [attrArray count] != i; ++i) { - MCPAttribute *currentAttribute = (MCPAttribute *)[attrArray objectAtIndex:i]; - id currentValue = [dictionary objectForKey:[currentAttribute name]]; - - if (! currentValue) { - currentValue = [dictionary objectForKey:[currentAttribute externalName]]; - } - if (currentValue) { - [self setValue:currentValue forKey:[currentAttribute name]]; - } - } - } - return self; -} - -- (void) dealloc -/*" Deallocating the class description, then passes the message to super. "*/ -{ -// unsigned int i; -// NSArray *tmpAttributes = [classDescription attributes]; - -/* for (i=0; [tmpAttributes count] != i; ++i) { - MCPAttribute *tmpAttr = [tmpAttributes objectAtIndex:i]; - if ([tmpAttr valueClass]) { - [self setValue:nil forKey:[tmpAttr name]]; - } - } -*/ - [classDescription release]; - [connection release]; - [super dealloc]; -} - -- (void) setAttributesToDefault -/*" Set all the attributes to default values, except for auto-generated and primary key attributes, which are set to NULL. - - NOTE : !! In the current version the auto-generated and key are ALSO set to default values!!. - "*/ -{ - NSArray *theAttributes = [classDescription attributes]; -// NSArray *thePrimKeys = [classDescription primaryKeyAttributes]; - NSUInteger i; - - for (i=0; [theAttributes count] != i; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *) [theAttributes objectAtIndex:i]; - NSString *theKey = [theAttribute name]; - - if (! [theAttribute autoGenerated]) { - [self setValue:[self defaultValueForKey:theKey] forKey:theKey]; - } - else { // Auto-generated attribute ... set it to NULL: - [self setValue:[self defaultValueForKey:theKey] forKey:theKey]; - } - } -/* - for (i=0; [thePrimKeys count] != i; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *) [thePrimKeys objectAtIndex:i]; - if (! [theAttribute autoGenerated]) { - NSString *theKey = [theAttribute name]; - - [[self valueForKey:theKey] release]; - [self setValue:NULL forKey:theKey]; - } - } - */ - return; -} - -#pragma mark Accessor(s) -- (MCPClassDescription *) classDescription -{ - return classDescription; -} - -- (MCPConnection *) connection -{ - if ((! connection) || (! [connection checkConnection])) { - [self setConnection:nil]; - } - return connection; -} - -- (void) setConnection:(MCPConnection *) iConnection -{ - if (iConnection != connection) { - [connection release]; - connection = [iConnection retain]; - } -} - - - -#pragma mark Database interface -- (id) readFromDBRow:(NSDictionary *) iDictionary withTableName:(NSString *) iTableName -/*" Uses a query result row (described as a NSDictionary) to set the instance variables of self. If - the result contains columns from multiple tables, the iTableName can be used to specify the alias - used for the table name corresponding to the class. - -If iTableName == nil, the columns will be searched first without table name (column_name) and if - not found then with the table name in front (from the class description : table_name.column_name). - -Otherwise, the search will be performed in the following order : iTableName.column_name, column_name, - table_name.column_name. - "*/ -{ - NSArray *theAttributeKeys = [classDescription attributeKeys]; - NSArray *thePrefixArray; - NSUInteger i; - -// Depending on the value of iTableName, get the search order. - if ((nil == iTableName) || ([@"" isEqualToString:iTableName])) { - thePrefixArray = [NSArray arrayWithObjects:@"", [NSMutableString stringWithFormat:@"%@.", [classDescription externalName]], nil]; - } - else { - thePrefixArray = [NSArray arrayWithObjects:[NSString stringWithFormat:@"%@.", iTableName], [NSMutableString stringWithFormat:@"%@.", [classDescription externalName]], @"", nil]; - } - for (i=0; [theAttributeKeys count] != i; ++i) { - id theValue = nil; - MCPAttribute *theAttribute = [classDescription attributeWithName:[theAttributeKeys objectAtIndex:i]]; - NSUInteger j; - - for (j=0; [thePrefixArray count] != j; ++j) { - if (theValue = [iDictionary objectForKey:[NSString stringWithFormat:@"%@%@", [thePrefixArray objectAtIndex:j], [theAttribute externalName]]]) { - break; - } - } - if (theValue) { - [self takeValue:theValue forKey:[theAttribute name]]; - } - } - return self; -} - - -//- (MCPDBReturnCode) setPrimaryKey:(NSDictionary *) iDictionary andFetchFromDB:(MCPConnection *) iConnection -- (MCPDBReturnCode) setPrimaryKey:(id) iDictionary andFetchFromDB:(MCPConnection *) iConnection -/*" This method is used to retrieve an object from the DB given its precise primary key. It will return self. - If the object is not found in the DB, then all instance variable are set to the default - (and autogenerated/primary-key attributes are set to null)."*/ -{ - BOOL missingKey = NO; - NSArray *theKeyAttr = [classDescription primaryKeyAttributes]; - NSUInteger i; - NSMutableString *query = [NSMutableString stringWithFormat:@"SELECT * FROM %@ WHERE ", [classDescription externalName]]; - MCPResult *result; - NSDictionary *row; - - [self setConnection:iConnection]; - if (! iConnection) { - return MCPDBReturnNoConnection; - } - for (i=0; [theKeyAttr count] != i; ++i) { - MCPAttribute *theAttr = [classDescription attributeWithName:[(MCPAttribute *)[theKeyAttr objectAtIndex:i] name]]; - id theKeyValue; - -// if (theKeyValue = [iDictionary objectForKey:[theAttr name]]) { - if (theKeyValue = [iDictionary valueForKey:[theAttr name]]) { - if (i != 0) { - [query appendString:@" and "]; - } -// Implies the iDictionary IS a dictionary: -// [query appendFormat:@"(%@ = %@)", [theAttr externalName], [iConnection quoteObject:[iDictionary objectForKey:[theAttr name]]]]; -// If the iDictionary is just an object complying with NSValueCodeing: - [query appendFormat:@"(%@ = %@)", [theAttr externalName], [iConnection quoteObject:theKeyValue]]; - } - else { // Part of the primary key is missing... look for the DB name of the attribute - if (theKeyValue = [iDictionary valueForKey:[theAttr externalName]]) { - if (i != 0) { - [query appendString:@" and "]; - } - [query appendFormat:@"(%@ = %@)", [theAttr externalName], [iConnection quoteObject:theKeyValue]]; - } - else { // Not able to find the value for this attribute !!! - missingKey = YES; - NSLog(@"Unable to find the value for attribute %@ of object of class %@, will make it default", [theAttr name], [self className]); - break; - } - } - } // Now the query is prepared... or a key part is missing: - if (missingKey) { - [self setAttributesToDefault]; - return MCPDBReturnIncompleteKey; - } - result = [iConnection queryString:query]; - if ([result numOfRows] == 0) { - [self setAttributesToDefault]; - return MCPDBReturnNone; - } - row = [result fetchRowAsDictionary]; - [self readFromDBRow:row withTableName:@""]; - if ([result numOfRows] != 1) { - NSLog(@"Got more than one row when querying : %@.... will take only the first one!!! that an IMPORTANT flaw in your data model!!!", query); - return MCPDBReturnMultiple; - } - return MCPDBReturnOK; -} - - -- (NSDictionary *) checkDBId -/*" Using the identity properties of the class, this method will check if self already exists in the DB, - in which case it will set the primary key attributes to match the DB entry. If the object is not present - in the DB, the primary key attributes are set to null if they are declared as aut-generated (untouched otherwise). - -The returned dictionary contains the values of the primary key attributes. It also contains one entry with - key MCPDBReturnCode, which contains the result of the operation (was the object in DB?). - -If the identityAttributes of the class description is empty, the entry will always be considered not to be - in the DB, AND the primary key attributes of the object will be left unchnaged and returned as they are at - call time."*/ -{ - NSArray *theIdAttr = [classDescription identityAttributes]; - NSMutableDictionary *theKeys = [NSMutableDictionary dictionary]; - NSArray *theKeyAttr = [classDescription primaryKeyAttributes]; - MCPConnection *theConnection = [self connection]; - MCPResult *theResult; - NSUInteger i; - - if (! theConnection) { - return [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInteger:MCPDBReturnNoConnection], @"MCPDBReturnCode", nil]; - } - if (! [theKeyAttr count]) { // There is no primary key for this object. - [theKeys setObject:[NSNumber numberWithInteger:MCPDBReturnNoKey] forKey:@"MCPDBReturnCode"]; - return [NSDictionary dictionaryWithDictionary:theKeys]; - } - if (! [theIdAttr count]) { // Identity is not defined for this object. - [theKeys setObject:[NSNumber numberWithInteger:MCPDBReturnNoIdentity] forKey:@"MCPDBReturnCode"]; - for (i=0; [theKeyAttr count] != i; ++i) { - NSString *theKey = [(MCPAttribute*)[theKeyAttr objectAtIndex:i] name]; - [theKeys setObject:[self valueForKey:theKey] forKey:theKey]; - } - return [NSDictionary dictionaryWithDictionary:theKeys]; - } -// Do the fetch in the DB. - NSMutableString *theQuery = [NSMutableString stringWithString:@"SELECT "]; - - for (i = 0; [theKeyAttr count] != i; ++i) { - if (i) { - [theQuery appendString:@", "]; - } - [theQuery appendString:[(MCPAttribute *)[theKeyAttr objectAtIndex:i] externalName]]; - } - [theQuery appendFormat:@" FROM %@ WHERE ", [classDescription externalName]]; - for (i = 0; [theIdAttr count] != i; ++i) { - if (i) { - [theQuery appendString:@" AND "]; - } -/* - if ([[(MCPAttribute *)[theIdAttr objectAtIndex:i] valueClass] isSubclassOfClass:[NSString class]]) { - if ([(MCPAttribute *)[theIdAttr objectAtIndex:i] width] != 0) { - [theQuery appendFormat:@"(BINARY %@ = SUBSTRING(%@ FROM 1 FOR %u)", [(MCPAttribute *)[theIdAttr objectAtIndex:i] externalName], [theConnection quoteObject:[self valueForKey:[(MCPAttribute *)[theIdAttr objectAtIndex:i] name]]], [(MCPAttribute *)[theIdAttr objectAtIndex:i] width]]; - } - else { - [theQuery appendFormat:@"(BINARY %@ = %@)", [(MCPAttribute *)[theIdAttr objectAtIndex:i] externalName], [theConnection quoteObject:[self valueForKey:[(MCPAttribute *)[theIdAttr objectAtIndex:i] name]]]]; - } - } - */ - if (([[(MCPAttribute *)[theIdAttr objectAtIndex:i] valueClass] isSubclassOfClass:[NSString class]]) && ([(MCPAttribute *)[theIdAttr objectAtIndex:i] width] != 0)) { - [theQuery appendFormat:@"(%@ = SUBSTRING(%@ FROM 1 FOR %ld))", [(MCPAttribute *)[theIdAttr objectAtIndex:i] externalName], [theConnection quoteObject:[self valueForKey:[(MCPAttribute *)[theIdAttr objectAtIndex:i] name]]], [(MCPAttribute *)[theIdAttr objectAtIndex:i] width]]; - } - else { - [theQuery appendFormat:@"(%@ = %@)", [(MCPAttribute *)[theIdAttr objectAtIndex:i] externalName], [theConnection quoteObject:[self valueForKey:[(MCPAttribute *)[theIdAttr objectAtIndex:i] name]]]]; - } - } - [theQuery appendString:@" ORDER BY "]; - for (i = 0; [theKeyAttr count] != i; ++i) { - if (i) { - [theQuery appendString:@", "]; - } - [theQuery appendString:[(MCPAttribute *)[theKeyAttr objectAtIndex:i] externalName]]; - } - theResult = [theConnection queryString:theQuery]; - if ([theResult numOfRows]) { // the object was found. - NSDictionary *theFirstRow = [theResult fetchRowAsDictionary]; - if ([theResult numOfRows] != 1) { - NSLog(@"in MCPObject -checkDBIdWithConnection: method.... not only one (as expected) but %ld results were found, will take the first one."); - [theKeys setObject:[NSNumber numberWithInteger:MCPDBReturnMultiple] forKey:@"MCPDBReturnCode"]; - } - else { - [theKeys setObject:[NSNumber numberWithInteger:MCPDBReturnOK] forKey:@"MCPDBReturnCode"]; - } - [theKeys addEntriesFromDictionary:theFirstRow]; -// Setting the value of self for the primary key to the one just found. - for (i=0; [theKeyAttr count] != i; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *) [theKeyAttr objectAtIndex:i]; - - [self setValue:[theFirstRow objectForKey:[theAttribute externalName]] forKey:[theAttribute name]]; - } - } - else { // Object not found in the DB. - for (i = 0; [theKeyAttr count] != i; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *)[theKeyAttr objectAtIndex:i]; - - if ([theAttribute autoGenerated]) { - [self setValue:[self defaultValueForKey:[theAttribute name]] forKey:[theAttribute name]]; - } - [theKeys setObject:[self valueForKey:[theAttribute name]] forKey:[theAttribute name]]; - } - [theKeys setObject:[NSNumber numberWithInteger:MCPDBReturnNone] forKey:@"MCPDBReturnCode"]; -// Setting the value of self for the primary key to the default values. -/* - for (i=0; [theKeyAttr count] != i; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *) [theKeyAttr objectAtIndex:i]; - - [self setValue:[self defaultValueForKey:[theAttribute name]] forKey:[theAttribute name]]; - } -*/ - } - return [NSDictionary dictionaryWithDictionary:theKeys]; -} - - -- (NSDictionary *) saveInDB -/*" First will use the checkDBIdWithConnection method to check if the entry is already in the database. If this is the case, - it will use the updateInDB... method to update the current DB instance. Otherwise it will make an insert into the database - to save the entry, than it makes a select to get the value of autogenerated column, and use them (if necessary) to return - the primary key (as NSDictionary). - - As for checkDBId... the returned dictionary also have a MCPDBReturnCode key with a NSNumber as value containing the - return code of the operation."*/ -{ - MCPConnection *theConnection = [self connection]; - NSDictionary *theCheckReturn = [self checkDBId]; - NSMutableDictionary *theRet; - NSInteger theCheckCode = [(NSNumber *)[theCheckReturn objectForKey:@"MCPDBReturnCode"] integerValue]; - NSUInteger i; - NSUInteger j; - NSMutableString *theQuery = [NSMutableString string]; - NSArray *theAttr = [classDescription attributes]; - - switch (theCheckCode) { - case MCPDBReturnNoIdentity : // For this object the identity is not set... so we try to save. - break; - - case MCPDBReturnOK : // Object already in the DB (found using checkDBId... method). - // NSLog(@"in saveUsingConnection: the entry already existed so will update the one with key : %@", theCheckReturn); - theCheckCode = [self updateInDB]; - theRet = [NSMutableDictionary dictionaryWithDictionary:[self primaryKey]]; - [theRet setObject:[NSNumber numberWithInteger:theCheckCode] forKey:@"MCPDBReturnCode"]; - return [NSDictionary dictionaryWithDictionary:theRet]; - break; - - case MCPDBReturnMultiple : // Multiple were found, the first one will be updated. - NSLog(@"Multiple entries found with the same identity ... will update the first one."); - theCheckCode = [self updateInDB]; - theRet = [NSMutableDictionary dictionaryWithDictionary:[self primaryKey]]; - [theRet setObject:[NSNumber numberWithInteger:theCheckCode] forKey:@"MCPDBReturnCode"]; - return [NSDictionary dictionaryWithDictionary:theRet]; - break; - - case MCPDBReturnNone : // The entry is not already in the DB, save it... - break; - - case MCPDBReturnNoConnection : // Self does not have a connection. - NSLog(@"Can not save when the connection is not working..."); - break; - - default : // We should not arrive here anyway. - NSLog(@"For some resons we got a unexpected result from checkDBId : %ld", theCheckCode); - break; - } - -// Generate the INSERT query: - [theQuery appendFormat:@"INSERT INTO %@ (", [classDescription externalName]]; - j = 0; - for (i=0; [theAttr count] != i; ++i) { - if (! [(MCPAttribute *)[theAttr objectAtIndex:i] autoGenerated]) { - if (j) { - [theQuery appendString:@", "]; - } - [theQuery appendString:[(MCPAttribute *)[theAttr objectAtIndex:i] externalName]]; - ++j; - } - } - [theQuery appendString:@") VALUES ("]; - j = 0; - for (i=0; [theAttr count] != i; ++i) { - if (! [(MCPAttribute *)[theAttr objectAtIndex:i] autoGenerated]) { - if (j) { - [theQuery appendString:@", "]; - } - [theQuery appendString:[theConnection quoteObject:[self valueForKey:[(MCPAttribute *)[theAttr objectAtIndex:i] name]]]]; - ++j; - } - } - [theQuery appendString:@")"]; -// Finished preparing the query. - -// Now we perform the query... - [theConnection queryString:theQuery]; - if (1 != (i = [theConnection affectedRows])) { // More than one row affected ... Should NEVER occure. - NSLog(@"Problem while saving a MCPObject to the database : number of inserted rows is : %ld !!!", i); - NSLog(@"Maybe there is an error : %@ ", [theConnection getLastErrorMessage]); - NSLog(@"The class of the object is : %@, and it's description is :\n%@", [self className], [self descriptionWithLocale:nil]); - theCheckCode = (i == 0) ? MCPDBReturnNone : MCPDBReturnMultiple; - } - else { - theCheckCode = MCPDBReturnOK; - } - -// Finally we get the primary key of the inserted object: - if ([classDescription singleIntAutoGenKey]) { - NSString *thePrimKey = [(MCPAttribute *) [[classDescription primaryKeyAttributes] objectAtIndex:0] name]; - - [self setValue:[NSNumber numberWithLongLong:[theConnection insertId]] forKey:thePrimKey]; - } - [self getAutoGenerated]; - theRet = [NSMutableDictionary dictionaryWithDictionary:[self primaryKey]]; - [theRet setObject:[NSNumber numberWithInteger:theCheckCode] forKey:@"MCPDBReturnCode"]; - - return [NSDictionary dictionaryWithDictionary:theRet]; -} - - - -- (MCPDBReturnCode) getAutoGenerated -/*" This method will use the Identity attributes of the object to retrieve the autogenerated -attributes from the database. - -If the identity is not defined for this class/entity, then it will try to use the primary key -to get the auto-generated values. - -Obviously this might generate a bug if one of the Identity attributes is autogenerated. -This will create a trouble if some object does not have an identity defined but still contains -some auto-generated attributes. -"*/ -{ - NSMutableArray *theAutoAttr = [NSMutableArray array]; - NSArray *theAttr = [classDescription attributes]; - NSArray *theKeyAttr = [classDescription primaryKeyAttributes]; - NSUInteger i,j; - NSMutableString *theQuery; - NSInteger theCheckCode; - MCPResult *theResult; - NSDictionary *theRow; - MCPConnection *theConnection = [self connection]; - - if (! theConnection) { - return MCPDBReturnNoConnection; - } - - if (0 != [[classDescription identityAttributes] count]) { - theCheckCode = [(NSNumber *)[[self checkDBId] objectForKey:@"MCPDBReturnCode"] integerValue]; - if ((MCPDBReturnOK != theCheckCode) && (MCPDBReturnMultiple != theCheckCode)) { - NSLog(@"Unable to get the primary key for the object, will abort now the fetch of autoGenerated attributes (left unchanged)!"); - return theCheckCode; - } - if (MCPDBReturnMultiple == theCheckCode) { - NSLog(@"Will get the autoGenerated values for the first entry...."); - } - } - j = 0; - for (i=0; [theAttr count] != i; ++i) { // generate the array with autoGenerated attributes. - if ([(MCPAttribute *)[theAttr objectAtIndex:i] autoGenerated]) { - [theAutoAttr insertObject:[theAttr objectAtIndex:i] atIndex:j]; - ++j; - } - } - if (0 == [theAutoAttr count]) { - return MCPDBReturnOK; - } - -// Make the query: - theQuery = [NSMutableString stringWithString:@"SELECT "]; - for (i=0; [theAutoAttr count] != i; ++i) { - if (i) { - [theQuery appendString:@", "]; - } - [theQuery appendString:[(MCPAttribute *)[theAutoAttr objectAtIndex:i] externalName]]; - } - [theQuery appendFormat:@" FROM %@ WHERE ", [classDescription externalName]]; -// Preparing the Where Clause: - for (i=0; [theKeyAttr count] != i; ++i) { - if (i) { - [theQuery appendString:@" AND "]; - } - [theQuery appendFormat:@"( %@ = %@ )", [(MCPAttribute*)[theKeyAttr objectAtIndex:i] externalName], [theConnection quoteObject:[self valueForKey:[(MCPAttribute*)[theKeyAttr objectAtIndex:i] name]]]]; - } -// Query is ready: - theResult = [theConnection queryString:theQuery]; - if (! theResult) { - NSLog(@"While fetching the auto-generated part of the object, got an error -a nil MCPResult-. Will report that as a MCPDBReturnNone."); - return MCPDBReturnNone; - } - if (0 == [theResult numOfRows]) { // The entry was not found in the DB. - if (0 == [[classDescription identityAttributes] count]) { - NSLog(@"It seems that the object is not in the DB... but the identity is not defined so there might be a trouble with having the proper ID."); - } - return MCPDBReturnNone; - } -// Getting the values from the DB select: - theRow = [theResult fetchRowAsDictionary]; - for (i=0; [theAutoAttr count] != i; ++i) { - [self setValue:[theRow objectForKey:[(MCPAttribute*)[theAutoAttr objectAtIndex:i] externalName]] forKey:[(MCPAttribute*)[theAutoAttr objectAtIndex:i] name]]; - } -// Returning the proper value: - if (1 != [theResult numOfRows]) { - NSLog(@"Multiple entries (or none : %llu), got the values for the first one...", [theResult numOfRows]); - return MCPDBReturnMultiple; - } - return MCPDBReturnOK; -} - - -- (MCPDBReturnCode) updateInDB -/*"This method will use the primary key value held by the object to modify the object that is saved in the DB. - - (NO YET IMPLEMENTED) If the primary key is not complete (some of the attributes are to null or 0) and the identityAttributes - (from class description) is not an empty list then it will perform a checkDBId... to try to retrieve the - missing part of the primary key. - "*/ -{ - NSArray *theAttributes = [classDescription attributes]; - NSArray *thePrimKeyAttributes = [classDescription primaryKeyAttributes]; - NSMutableString *theQuery = [NSMutableString string]; - NSInteger theCheckCode; - NSUInteger i, j; - MCPConnection *theConnection = [self connection]; - - if (! theConnection) { - return MCPDBReturnNoConnection; - } -// Generate the query - [theQuery appendFormat:@"UPDATE %@ SET ", [classDescription externalName]]; - // Prepare the value key pairs: - j=0; - for (i=0 ; [theAttributes count] != i; ++i) { - id theValue = [self valueForKey:[(MCPAttribute *)[theAttributes objectAtIndex:i] name]]; - - if ((theValue) && (! [(MCPAttribute *)[theAttributes objectAtIndex:i] autoGenerated])) { - if (j) { - [theQuery appendString:@", "]; - } - [theQuery appendFormat:@"%@ = %@ ", [(MCPAttribute *)[theAttributes objectAtIndex:i] externalName], [theConnection quoteObject:theValue]]; - ++j; - } - } - if (0 == j) { // Nothing has to be updated in this entry.... - NSLog(@"Tried to update a row from an object that does NOT contain any information!!"); - return MCPDBReturnNone; - } - // Prepare the WHERE clause: - [theQuery appendFormat:@" WHERE "]; - j = 0; - for (i=0; [thePrimKeyAttributes count] != i; ++i) { - id theValue = [self valueForKey:[(MCPAttribute *)[thePrimKeyAttributes objectAtIndex:i] name]]; - - if (j) { - [theQuery appendString:@" AND "]; - } - if (theValue) { - [theQuery appendFormat:@"%@ = %@", [(MCPAttribute *)[thePrimKeyAttributes objectAtIndex:i] externalName], [theConnection quoteObject:theValue]]; - ++j; - } - } -// Perform the update: - if (j == [thePrimKeyAttributes count]) { - [theConnection queryString:theQuery]; - i = [theConnection affectedRows]; - switch (i) { - case 0 : - theCheckCode = MCPDBReturnNone; - break; - case 1 : - theCheckCode = MCPDBReturnOK; - break; - default : - theCheckCode = MCPDBReturnMultiple; - break; - } - } - else { - NSDictionary *theKeyCheck = [self checkDBId]; - NSInteger theIdCheckCode = [(NSNumber *) [theKeyCheck objectForKey:@"MCPDBReturnCode"] integerValue]; - - if (MCPDBReturnOK == theIdCheckCode) { - theCheckCode = [self updateInDB]; - } - else { - theCheckCode = MCPDBReturnNoKey; - } - } -// Return proper code: - return theCheckCode; -} - - -- (MCPDBReturnCode) deleteInDB -/*" Uses the connection to delete the object from the DB. In this process the autoGenerated attributes are set to null. - If the primary key is not completely set, this method calls checkDBId... method to try to complete it - (if the identityAttributes of the class description is not empty)."*/ -{ - NSArray *theKeyAttributes = [classDescription primaryKeyAttributes]; - NSArray *theAttributes = [classDescription attributes]; - NSUInteger i; -// NSMutableDictionary *theKeyValue = [NSMutableDictionary dictionary]; - NSInteger theCheckCode = MCPDBReturnOK; - MCPConnection *theConnection = [self connection]; - - if (! theConnection) { - return MCPDBReturnNoConnection; - } -// Get the value of the primary key: - for (i=0; [theKeyAttributes count] != i; ++i) { - id theValue = [self valueForKey:[(MCPAttribute*) [theKeyAttributes objectAtIndex:i] name]]; - if ((! theValue) || ([theValue isKindOfClass:[NSNumber class]] && (0 == [theValue integerValue]))) { - theCheckCode = MCPDBReturnIncompleteKey; - break; - } - } -// If incomplete, try to find the rest, and perform again: - if (MCPDBReturnIncompleteKey == theCheckCode) { - if (MCPDBReturnOK == [(NSNumber *)[[self checkDBId] objectForKey:@"MCPDBReturnCode"] integerValue]) { - return [self deleteInDB]; - } - else { - return MCPDBReturnIncompleteKey; - } - } - -// Perform the deletion from the DB: - theCheckCode = [[self class] deleteInDBUsingConnection:theConnection withId:self]; - -// set the auto-generated attributes to proper values: - for (i=0 ; [theAttributes count] != i; ++i) { - MCPAttribute *theAttribute = (MCPAttribute *) [theAttributes objectAtIndex:i]; - if ([theAttribute autoGenerated]) { -// [self setValue:NULL forKey:[theAttribute name]]; - [self setValue:[self defaultValueForKey:[theAttribute name]] forKey:[theAttribute name]]; - } - } - -// Finished... just have to return the proper value: - return theCheckCode; -} - - -+ (MCPDBReturnCode) deleteInDBUsingConnection:(MCPConnection *) iConnection withId:(id) iId -/*" Uses the connection to remove from the DB the entry corresponding to the primary key id given by iId. - If any part of the primary key is missing, nothing is done."*/ -{ - NSMutableString *theQuery = [NSMutableString string]; - MCPClassDescription *theClassDescription = (MCPClassDescription *) [NSClassDescription classDescriptionForClass:[self class]]; - NSArray *theKeyAttributes = [theClassDescription primaryKeyAttributes]; - NSUInteger i; - - if (! [iConnection checkConnection]) { - return MCPDBReturnNoConnection; - } -// Generate the query: - [theQuery appendFormat:@"DELETE FROM %@ WHERE ", [theClassDescription externalName]]; -// Prepare the WHERE STATEMENT: - for (i=0; [theKeyAttributes count] != i; ++i) { - if (i) { - [theQuery appendString:@" AND "]; - } -// [theQuery appendFormat:@"( %@ = %@ )", [(MCPAttribute*)[theKeyAttributes objectAtIndex:i] externalName], [iConnection quoteObject:[iId objectForKey:[(MCPAttribute*)[theKeyAttributes objectAtIndex:i] name]]]]; - [theQuery appendFormat:@"( %@ = %@ )", [(MCPAttribute*)[theKeyAttributes objectAtIndex:i] externalName], [iConnection quoteObject:[iId valueForKey:[(MCPAttribute*)[theKeyAttributes objectAtIndex:i] name]]]]; - } -// Perform the query: - [iConnection queryString:theQuery]; -// Return the proper code: - i = [iConnection affectedRows]; - - if (1 < i) { - return MCPDBReturnMultiple; - } - if (0 == i) { - return MCPDBReturnNone; - } - return MCPDBReturnOK; -} - - -#pragma mark Handling realtions -- (id) getTargetOfRelation:(MCPRelation *) iRelation -/*" This method is using the information from iRelation to fetch the targe of the relation in the DB. - -If iRelation is flagged as a to-one, then the return type is the type of the target object (value might be nil, if the target was not found). -If iRelation is flagged as a to-many, then the return type is NSArray (and might be empty if no target were found). - -In any case this method is first checking that iRelation is starting from the class of self, and that self is connected to the DB. -Also the returned object is ALWAYS autoreleased before being returned. -"*/ -{ - NSMutableString *query; - MCPClassDescription *destinationDesc; - NSArray *joins; - NSArray *keys; - NSArray *ids; - MCPResult *result; - NSUInteger i; - NSDictionary *theRow; - id theRet; - - if (! iRelation) { - NSLog(@"Tried to get the target of a relation... but the relation object is nil"); - } - else { -// NSLog(@"Trying to get the target of the realtion : %@", [iRelation descriptionWithLocale:nil]); - } - if ((! [connection isConnected]) || (! [classDescription isEqual:[iRelation origin]])) { // Error condition. - return nil; - } -// Generating the query: - destinationDesc = [iRelation destination]; - keys = [destinationDesc primaryKeyAttributes]; - joins = [iRelation joins]; - ids = [destinationDesc identityAttributes]; - query = [[NSMutableString alloc] initWithString:@"SELECT "]; - for (i=0; [keys count] != i; ++i) { - if (i) { - [query appendString:@", "]; - } - [query appendString:[(MCPAttribute *)[keys objectAtIndex:i] externalName]]; - } - [query appendFormat:@" FROM %@ WHERE ", [destinationDesc externalName]]; - for (i=0; [joins count] != i; ++i) { - MCPJoin *theJoin = (MCPJoin *)[joins objectAtIndex:i]; - - if (i) { - [query appendString:@" and "]; - } - [query appendFormat:@"(%@ = %@)", [[theJoin destination] externalName], [connection quoteObject:[self valueForKey:[[theJoin origin] name]]]]; - } -// NSLog(@"in -[MCPObject getTargetOfRelation:%@]; query is %@...", [iRelation descriptionWithLocale:nil], query); - [query appendString:[self orderSQLForClassDescription:destinationDesc]]; -// NSLog(@"in -[MCPObject getTargetOfRelation:%@]; query is %@...", [iRelation descriptionWithLocale:nil], query); -/* - [query appendString:@" ORDER BY "]; - for (i=0; [ids count] != i; ++i) { // Generating the order : - if (i) { - [query appendString:@", "]; - } - [query appendString:[(MCPAttribute *)[ids objectAtIndex:i] externalName]]; - } -*/ - result = [connection queryString:query]; - [query release]; - -// Getting the results in proper objects: - if ([iRelation isToMany]) { // To-Many relation - NSMutableArray *theArrayRet = [[NSMutableArray alloc] init]; - - theRet = theArrayRet; - while (theRow = [result fetchRowAsDictionary]) { - MCPObject *theTarget = [[[destinationDesc representedClass] alloc] init]; - - [theTarget setPrimaryKey:theRow andFetchFromDB:connection]; - [theArrayRet insertObject:theTarget atIndex:[theArrayRet count]]; - [theTarget release]; - } - } - else { // To-One relation - theRow = [result fetchRowAsDictionary]; - if (theRow) { - theRet = [[[destinationDesc representedClass] alloc] init]; - [theRet setPrimaryKey:theRow andFetchFromDB:connection]; - } - else { - theRet = nil; - } - } - [theRet autorelease]; - return theRet; -} - -- (id) getTargetOfRelationNamed:(NSString *) iRelationName -{ - MCPRelation *theRelation = [classDescription relationWithName:iRelationName]; - return (theRelation) ? [self getTargetOfRelation:theRelation] : nil; -} - -- (MCPDBReturnCode) setTarget:(id) iTarget forRelation:(MCPRelation *) iRelation -/*" This method will modify the DB content so that the corresponding relation is deleted. - If any value corresping to an attribute of self is modified in the DB, then it will update all attributes of self to reflect DB status. - -Obviuosly this method is taking care of only to-one relation. It will hence check that iRelation is a to-one relation starting from self. -Finally, you can use setTarget:nil forRelation:... to 'delete' a previously establlished relation (if the model and DB permit it)."*/ -{ - NSUInteger i; - MCPObject *oldTarget; - - if (! [connection isConnected]) { - return MCPDBReturnNoConnection; - } - if (! [classDescription isEqual:[iRelation origin]]) { - return MCPDBReturnWrongRelationOrigin; - } - if ([iRelation isToMany]) { - return MCPDBReturnWrongRelationCardinality; - } - - oldTarget = [self getTargetOfRelation:iRelation]; - if ((oldTarget) && ([iTarget isEqual:oldTarget])) { // No need to change the relation's target. - return MCPDBReturnOK; - } - for (i=0; [iRelation countOfJoins] != i; ++i) { - MCPJoin *theJoin = [iRelation objectInJoinsAtIndex:i]; - - if (([[theJoin origin] isPartOfKey]) && (![[theJoin destination] isPartOfKey])) { // Will change the destination... - [iTarget setValue:[self valueForKey:[[theJoin origin] name]] forKey:[[theJoin destination] name]]; - [oldTarget setValue:[oldTarget defaultValueForKey:[[theJoin destination] name]] forKey:[[theJoin destination] name]]; - } - else { // Will change the origin - [self setValue:[iTarget valueForKey:[[theJoin destination] name]] forKey:[[theJoin origin] name]]; - } - } - if ([iRelation ownsDestination]) { - [oldTarget deleteInDB]; - } - return MCPDBReturnOK; -} - -- (MCPDBReturnCode) setTarget:(id) iTarget forRelationNamed:(NSString *) iRelationName -{ - MCPRelation *theRelation = [classDescription relationWithName:iRelationName]; - return (theRelation) ? [self setTarget:iTarget forRelation:theRelation] : MCPDBReturnNoSuchRelation; -} - -- (NSUInteger) countTargetForRelation:(MCPRelation *) iRelation -{ - NSMutableString *theQuery; - NSUInteger i; - NSArray *theJoinArray; - MCPResult *theResult; - NSDictionary *theRow; - - if ((! [connection isConnected]) || (! [classDescription isEqual:[iRelation origin]])){ - return 0; - } - theJoinArray = [iRelation joins]; - theQuery = [[NSMutableString alloc] initWithFormat:@"SELECT COUNT(1) FROM %@ WHERE ", [[iRelation destination] externalName]]; - for (i=0; [theJoinArray count] != i; ++i) { - MCPJoin *theJoin = (MCPJoin *)[theJoinArray objectAtIndex:i]; - if (i) { - [theQuery appendString:@" AND "]; - } - [theQuery appendFormat:@"( %@ = %@ )", [[theJoin destination] externalName], [connection quoteObject:[self valueForKey:[[theJoin origin] name]]]]; - } - theResult = [connection queryString:theQuery]; - [theQuery release]; - theRow = [theResult fetchRowAsDictionary]; - return [(NSNumber *)[theRow objectForKey:@"COUNT(1)"] unsignedIntegerValue]; -} - -- (NSUInteger) countTargetForRelationNamed:(NSString *) iRelationName -{ - MCPRelation *theRelation = [classDescription relationWithName:iRelationName]; - return (theRelation) ? [self countTargetForRelation:theRelation] : 0; -} - - -- (MCPObject *) getTargetOfRelation:(MCPRelation *) iRelation atIndex:(NSUInteger) iIndex -/*" This method will return the specific object which is the iIndex'th object of th relation (after ordering the object using the destination identity). - -This method (like other assuming order in the relation targets) will be doubtfull if the class does NOT have a single identity attribute."*/ -{ - NSMutableString *query; - MCPClassDescription *destinationDesc; - NSArray *joins; - NSArray *keys; - NSArray *ids; - MCPResult *result; - NSUInteger i; - NSDictionary *theRow; - MCPObject *theRet; - - if (! iRelation) { - NSLog(@"Tried to get the target of a relation... but the relation object is nil"); - } - else { -// NSLog(@"Trying to get the target of the realtion : %@", [iRelation descriptionWithLocale:nil]); - } - if ((! [connection isConnected]) || (! [classDescription isEqual:[iRelation origin]])) { // Error condition. - return nil; - } - if (! [iRelation isToMany]) { - NSLog(@"Tried to use the -[MCPObject getTargetOfRelation:atIndex:] on a to-one relation... this does NOT works!!! You should use -[MCPObject getTargetOfRelation:] instead!!!"); - return [self getTargetOfRelation:iRelation]; - } -// Generating the query: - destinationDesc = [iRelation destination]; - keys = [destinationDesc primaryKeyAttributes]; - joins = [iRelation joins]; - ids = [destinationDesc identityAttributes]; - query = [[NSMutableString alloc] initWithString:@"SELECT "]; - for (i=0; [keys count] != i; ++i) { - if (i) { - [query appendString:@", "]; - } - [query appendString:[(MCPAttribute *)[keys objectAtIndex:i] externalName]]; - } - [query appendFormat:@" FROM %@ WHERE ", [destinationDesc externalName]]; - for (i=0; [joins count] != i; ++i) { - MCPJoin *theJoin = (MCPJoin *)[joins objectAtIndex:i]; - - if (i) { - [query appendString:@" and "]; - } - [query appendFormat:@"(%@ = %@)", [[theJoin destination] externalName], [connection quoteObject:[self valueForKey:[[theJoin origin] name]]]]; - } - [query appendString:[self orderSQLForClassDescription:destinationDesc]]; -/* - [query appendString:@" ORDER BY "]; - for (i=0; [ids count] != i; ++i) { // Generating the order : - if (i) { - [query appendString:@", "]; - } - [query appendString:[(MCPAttribute *)[ids objectAtIndex:i] externalName]]; - } -*/ - [query appendFormat:@" LIMIT 1 OFFSET %ld", iIndex]; - result = [connection queryString:query]; - [query release]; - -// Getting the results in proper objects: - theRow = [result fetchRowAsDictionary]; - if (theRow) { - theRet = (MCPObject *)[[[destinationDesc representedClass] alloc] init]; - [theRet setPrimaryKey:theRow andFetchFromDB:connection]; - [theRet autorelease]; - } - else { - theRet = nil; - } - return theRet; -} - -- (MCPObject *) getTargetOfRelationNamed:(NSString *) iRelationName atIndex:(NSUInteger) iIndex -/*"This is the equivalent of the getTargetOfRelation:atIndex:, but giving a relation name instead of the MCPRelation object itself."*/ -{ - MCPRelation *theRelation = [classDescription relationWithName:iRelationName]; - return (theRelation) ? [self getTargetOfRelation:theRelation atIndex:iIndex]: nil; -} - -- (MCPDBReturnCode) addTarget:(MCPObject *) iTarget toRelation:(MCPRelation *) iRelation -/*" This method will modify the DB content so that the corresponding relation is added. -If any value corresping to an attribute of self i modified in the DB, then it will update all attributes of self to reflect DB status. - -Obviuosly this method is taking care of only to-many relation. It will hence check that iRelation is a to-many relation starting from self."*/ -{ - NSArray *joins; - NSUInteger i; - NSDictionary *saveReturn; - - if (! [connection isConnected]) { - return MCPDBReturnNoConnection; - } - if (! [classDescription isEqual:[iRelation origin]]) { - return MCPDBReturnWrongRelationOrigin; - } - if (! [iRelation isToMany]) { - return MCPDBReturnWrongRelationCardinality; - } - joins = [iRelation joins]; - for (i=0; [joins count] != i; ++i) { // Will change only values of iTarget, because it is a to-many relation. - MCPJoin *join = (MCPJoin *)[joins objectAtIndex:i]; - - [iTarget setValue:[self valueForKey:[[join origin] name]] forKey:[[join destination] name]]; - } - if (! [[iTarget connection] isConnected]) { - [iTarget setConnection:connection]; - } - saveReturn = [iTarget saveInDB]; - return (MCPDBReturnCode)[(NSNumber *)[saveReturn objectForKey:@"MCPDBReturnCode"] unsignedIntegerValue]; -} - -- (MCPDBReturnCode) addTarget:(MCPObject *) iTarget toRelationNamed:(NSString *) iRelationName -{ - MCPRelation *theRelation = [classDescription relationWithName:iRelationName]; - return (theRelation) ? [self addTarget:iTarget toRelation:theRelation] : MCPDBReturnNoSuchRelation; -} - -- (MCPDBReturnCode) removeTarget:(MCPObject *) iTarget toRelation:(MCPRelation *) iRelation -/*" This method will modify the DB content so that the corresponding relation is removed. -If any value corresping to an attribute of self i modified in the DB, then it will update all attributes of self to reflect DB status. - -Obviuosly this method is taking care of only to-many relation. It will hence check that iRelation is a to-many relation starting from self."*/ -{ - NSArray *joins; - NSUInteger i; -// NSDictionary *saveReturn; - BOOL targetIsTarget = YES; - MCPDBReturnCode returnCode; - - if (! [connection isConnected]) { - return MCPDBReturnNoConnection; - } - if (! [classDescription isEqual:[iRelation origin]]) { - return MCPDBReturnWrongRelationOrigin; - } - if (! [iRelation isToMany]) { - return MCPDBReturnWrongRelationCardinality; - } - joins = [iRelation joins]; - for (i=0; [joins count] != i; ++i) { - MCPJoin *join = (MCPJoin *)[joins objectAtIndex:i]; - targetIsTarget = targetIsTarget && [[iTarget valueForKey:[[join destination] name]] isEqual:[self valueForKey:[[join origin] name]]]; - } - if (! targetIsTarget) { - return MCPDBReturnNotTarget; - } - if ([iRelation ownsDestination]) { // just delete the target from the DB. - returnCode = [iTarget deleteInDB]; - } - for (i=0; [joins count] != i; ++i) { // Put all the destination to default... - MCPJoin *join = (MCPJoin *)[joins objectAtIndex:i]; - - [iTarget setValue:[[join destination] defaultValue] forKey:[[join destination] name]]; - } - if (! [iRelation ownsDestination]) { - returnCode = [(NSNumber *)[[iTarget saveInDB] objectForKey:@"MCPDBReturnCode"] unsignedIntegerValue]; - } - return returnCode; -} - -- (MCPDBReturnCode) removeTarget:(MCPObject *) iTarget toRelationNamed:(NSString *) iRelationName -{ - MCPRelation *theRelation = [classDescription relationWithName:iRelationName]; - return (theRelation) ? [self removeTarget:iTarget toRelation:theRelation] : MCPDBReturnNoSuchRelation; -} - -- (MCPDBReturnCode) removeTargetToRelation:(MCPRelation *) iRelation atIndex:(NSUInteger) iIndex -/*" This method will use an index t first query the object that it should remove from the relation, then uses the -[MCPObject removeTarget:toRelation:] - method to remove the object from the relation. If the index is out of bound (the returned object is nil), it will return MCPDBReturnNone, to signal - there was no object with this index in the relation."*/ -{ - MCPObject *target; - - if (! [connection isConnected]) { - return MCPDBReturnNoConnection; - } - if (! [classDescription isEqual:[iRelation origin]]) { - return MCPDBReturnWrongRelationOrigin; - } - if (! [iRelation isToMany]) { - return MCPDBReturnWrongRelationCardinality; - } - target = [self getTargetOfRelation:iRelation atIndex:iIndex]; - if (target) { - return [self removeTarget:target toRelation:iRelation]; - } - else { - return MCPDBReturnNone; - } -} - -- (MCPDBReturnCode) removeTargetToRelationNamed:(NSString *) iRelationName atIndex:(NSUInteger) iIndex -{ - MCPRelation *theRelation = [classDescription relationWithName:iRelationName]; - return (theRelation) ? [self removeTargetToRelation:theRelation atIndex:iIndex] : MCPDBReturnNoSuchRelation; -} - -- (NSUInteger) indexOfTarget:(MCPObject *) iTarget inRelation:(MCPRelation *) iRelation -/*" Returns the index of the target object within the relation. Return NSNotFound if the objkect is NOT in the relation!!"*/ -{ - NSMutableString *query; - NSArray *joins; - NSArray *keys; - NSArray *ids; - NSUInteger i; - MCPResult *result; - NSDictionary *row; - NSMutableDictionary *targetKey; - BOOL targetIsTarget = YES; - - if ((! [connection isConnected]) || (! [classDescription isEqual:[iRelation origin]]) || (! [iRelation isToMany])) { // Checking the realtion object. - return NSNotFound; - } - query = [[NSMutableString alloc] initWithString:@"SELECT "]; - joins = [iRelation joins]; -// keys = [[iRelation destination] attributeKeys]; - keys = [[iRelation destination] primaryKeyAttributes]; - ids = [[iRelation destination] identityAttributes]; - for (i=0; [keys count] != i; ++i) { - if (i) { - [query appendString:@", "]; - } - [query appendString:[(MCPAttribute *)[keys objectAtIndex:i] externalName]]; - } - [query appendFormat:@"FROM %@ WHERE ", [[iRelation destination] externalName]]; - for (i=0; [joins count] != i; ++i) { - MCPJoin *join = (MCPJoin *)[joins objectAtIndex:i]; - - targetIsTarget = targetIsTarget && [[iTarget valueForKey:[[join destination] name]] isEqual:[self valueForKey:[[join origin] name]]]; - if (i) { - [query appendString:@" AND "]; - } - [query appendFormat:@"( %@ = %@ )", [[join destination] externalName], [connection quoteObject:[self valueForKey:[[join origin] name]]]]; - } - if (! targetIsTarget) { // Checking that iTarget belongs to the relation. - [query release]; - return NSNotFound; - } - [query appendString:[self orderSQLForClassDescription:[iRelation destination]]]; -/* - [query appendString:@" ORDER BY "]; - for (i=0; [ids count] != i; ++i) { - if (i) { - [query appendString:@", "]; - } - [query appendString:[(MCPAttribute *)[ids objectAtIndex:i] externalName]]; - } -*/ - targetKey = [[NSMutableDictionary alloc] init]; - for (i=0; [keys count] != i; ++i) { // Setting the targetKey to the row that should gives the target. - MCPAttribute *attribute = (MCPAttribute *)[keys objectAtIndex:i]; - - [targetKey setObject:[iTarget valueForKey:[attribute name]] forKey:[attribute externalName]]; - } - result = [connection queryString:query]; - [query release]; - i = 0; - while (row = [result fetchRowAsDictionary]) { - if ([targetKey isEqualToDictionary:row]) { // We have found the proper object return i (after cleaning up); - [targetKey release]; - return i; - } - ++i; - } - return NSNotFound; -} - -- (NSUInteger) indexOfTarget:(MCPObject *) iTarget inRelationNamed:(NSString *) iRelationName -/*" The equivalent of -[MCPObject indexOfTarget:inRelation:] but using relation name instead of a MCPRelation -object. Indeed after getting the MCPRelation object corresponding to the name, this method will only return -the result of the corresponding call to -[MCPObject indexOfTarget:inRelation:]."*/ -{ - MCPRelation *theRelation = [classDescription relationWithName:iRelationName]; - return (theRelation) ? [self indexOfTarget:iTarget inRelation:theRelation] : NSNotFound; -} - -#pragma mark Utility methods -- (id) defaultValueForKey:(NSString *) iKey -/*" This method will return the default value (object) for the given key."*/ -{ - MCPAttribute *theAttribute = [classDescription attributeWithName:iKey]; - - if ([theAttribute allowsNull]) { -// return [NSNull null]; - return nil; - } - else { - Class theAttrClass = [theAttribute valueClass]; - id theRet; - - if ([theAttrClass isSubclassOfClass:[NSNumber class]]) { - return [NSNumber numberWithInteger:0]; - } - theRet = [[[theAttrClass alloc] init] autorelease]; - if (nil == theRet) { - NSLog(@"in MCPObject defaultValueForKey:%@ , for object of class %@, (attribute of class %@) the return value will be nil!!!", iKey, [self className], theAttrClass); - } - return theRet; - } -} - - -- (NSDictionary *) primaryKey -/*" Returns a dictionary with the values of the primary key. "*/ -{ - NSMutableDictionary *theRet = [NSMutableDictionary dictionary]; - NSArray *theIdAttr = [classDescription primaryKeyAttributes]; - NSUInteger i; - - for (i=0; [theIdAttr count] != i; ++i) { - NSString *theKey = [(MCPAttribute *)[theIdAttr objectAtIndex:i] name]; - - if ([self valueForKey:theKey]) { - [theRet setObject:[self valueForKey:theKey] forKey:theKey]; - } - else { - [theRet setObject:[NSNull null] forKey:theKey]; - } - } - return [NSDictionary dictionaryWithDictionary:theRet]; -} - -#pragma mark Testing equality (VERY important for relation management) -- (BOOL) isEqual:(id) iObject -{ - NSArray *theIdAttr; - NSUInteger i; - BOOL theRet; - - if (self == iObject) { - return YES; - } - if ([self class] != [iObject class]) { - return NO; - } - theIdAttr = [classDescription identityAttributes]; - for (i = 0; [theIdAttr count] != i; ++i) { - MCPAttribute *theAttr = [theIdAttr objectAtIndex:i]; - - theRet = theRet && [[self valueForKey:[theAttr name]] isEqual:[iObject valueForKey:[theAttr name]]]; - } - return theRet; -} - - -#pragma mark Output -- (NSString *) description -{ - return [self descriptionWithLocale:nil]; -} - -- (NSString *) descriptionWithLocale:(NSDictionary *) locale -{ - NSMutableString *theOutput = [NSMutableString string]; - NSUInteger i; - NSArray *theAttributes = [classDescription attributes]; - BOOL trunc = [MCPConnection truncateLongField]; - - [theOutput appendFormat:@"MCPObject subclass : %@\n", [self className]]; - - for (i = 0; [theAttributes count] != i; ++i) - { - MCPAttribute *theAttribute = (MCPAttribute *) [theAttributes objectAtIndex:i]; - id theValue = [self valueForKey:[theAttribute name]]; - - if (trunc) { - if (([theValue isKindOfClass:[NSString class]]) && (kLengthOfTruncationForLog < [(NSString *)theValue length])) { - theValue = [theValue substringToIndex:kLengthOfTruncationForLog]; - } - else if (([theValue isKindOfClass:[NSData class]]) && (kLengthOfTruncationForLog < [(NSData *)theValue length])) { - theValue = [NSData dataWithBytes:[theValue bytes] length:kLengthOfTruncationForLog]; - } - } - - [theOutput appendFormat:@"\tAttribute %ld : name = %@, value = %@\n", i, [theAttribute name], theValue]; - } - - [theOutput appendString:@"\n"]; - - return theOutput; -} - -#pragma mark Ordering the array for relations -- (NSString *) orderSQLForClassDescription:(MCPClassDescription *) iClassDescription -{ - NSMutableArray *theAttributes = [[NSMutableArray alloc] initWithArray:[iClassDescription identityAttributes]]; - NSMutableString *theReturn = [NSMutableString string]; - NSUInteger i; - - for (i = 0; [[iClassDescription primaryKeyAttributes] count] != i; ++i) { - [theAttributes insertObject:[[iClassDescription primaryKeyAttributes] objectAtIndex:i] atIndex:[theAttributes count]]; - } - for (i = 0; [theAttributes count] != i; ++i) { - if (i) { - [theReturn appendString:@", "]; - } - else { - [theReturn appendString:@" ORDER BY "]; - } - [theReturn appendString:[(MCPAttribute *)[theAttributes objectAtIndex:i] externalName]]; - } - return theReturn; -} - -#pragma mark Anti-crash method... -- (void) setNilValueForKey:(NSString *) iKey -{ - NSLog(@"Try to set %@ to nil .... not possible, will set it to zero instead...", iKey); - [self setValue:[NSNumber numberWithInteger:0] forKey:iKey]; -} - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation+Private.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation+Private.h deleted file mode 100644 index 2d3a7d8d..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation+Private.h +++ /dev/null @@ -1,46 +0,0 @@ -// -// $Id$ -// -// MCPRelation+Private.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 11/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPRelation.h" - -@interface MCPRelation (Private) - -#pragma mark Making some work -- (void) invalidateJoins; // Check that the joins are realistics. - -#pragma mark Setters -- (void) setOrigin:(MCPClassDescription *) iOrigin; -//- (void) setJoins:(NSArray *) iJoins; - -#pragma mark Getters -- (MCPModel *) model; - -#pragma mark Fro the controller layer and the UI -- (void) addNewDefaultJoin; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.h b/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.h deleted file mode 100644 index 118734eb..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.h +++ /dev/null @@ -1,112 +0,0 @@ -// -// $Id$ -// -// MCPRelation.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 11/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -@class MCPModel; -@class MCPClassDescription; -@class MCPAttribute; -@class MCPJoin; - -typedef enum { - OnDeleteNullify = 1, - OnDeleteDeny = 2, - OnDeleteCascade = 3, - OnDeleteDefault = 4, - OnDeleteNoAction = 5 -} MCPRelationDeleteRule; - -@interface MCPRelation : NSObject -{ -@protected - NSString *name; // Name of the relation - MCPRelationDeleteRule deleteRule; // Delete rule : what to do of the destination when origin is deleted - MCPRelation *inverseRelation; // The inverse relation (or nil if no inverse present) - MCPClassDescription *origin; // The class description from which the relation originate - MCPClassDescription *destination; // The class description to which the relation arrives - NSMutableArray *joins; // Joining attributes (array of MCPJoin) - BOOL isToMany; // Is the relation to many (or to one) - BOOL isMandatory; // Is the relation mandatory for the class description (origin) - BOOL ownsDestination; // The origin class description owns the destination class description(ies) -} - -#pragma mark Class methods -+ (void) initialize; - -+ (NSArray *) existingDeleteRules; -- (NSArray *) existingDeleteRules; - -#pragma mark Life cycle -- (id) initWithName:(NSString *) iName from:(MCPClassDescription *) iFrom to:(MCPClassDescription *) iTo; -- (void) invalidateRelation; -- (void) dealloc; - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder; -- (void) encodeWithCoder:(NSCoder *) encoder; - -#pragma mark Managing joins -//- (MCPJoin *) addNewJoin; -- (MCPJoin *) addJoinFrom:(MCPAttribute *) iFrom to:(MCPAttribute *) iTo; -- (void) removeJoinFrom:(MCPAttribute *) iFrom to:(MCPAttribute *) iTo; -//- (void) unjoinAttribute:(MCPAttribute *) iAttribute; - -#pragma mark Setters -- (void) setDestination:(MCPClassDescription *) iDestination; -- (void) setName:(NSString *) iName; -- (void) setDeleteRule:(MCPRelationDeleteRule) iDeleteRule; -- (void) setInverseRelation:(MCPRelation *) iInverseRelation; -- (void) insertObject:(MCPJoin *) iJoin inJoinsAtIndex:(NSUInteger) index; -- (void) removeObjectFromJoinsAtIndex:(NSUInteger) index; -- (void) setIsToMany:(BOOL) iIsToMany; -- (void) setIsMandatory:(BOOL) iIsMandatory; -- (void) setOwnsDestintation:(BOOL) iOwnsDestination; - -#pragma mark Getters -- (NSString *) name; -- (MCPRelationDeleteRule) deleteRule; -- (MCPRelation *) inverseRelation; -- (MCPClassDescription *) origin; -- (MCPClassDescription *) destination; -- (NSArray *) joins; -- (NSUInteger) countOfJoins; -- (MCPJoin *) objectInJoinsAtIndex:(NSUInteger) index; -- (NSUInteger) indexOfJoinIdenticalTo:(id) iJoin; -- (BOOL) isToMany; -- (BOOL) isMandatory; -- (BOOL) ownsDestination; - -#pragma mark Some Usefull methods -- (MCPAttribute *) destinationAttributeForOrigin:(MCPAttribute *) iFrom; -- (MCPAttribute *) originAttributeForDestination:(MCPAttribute *) iTo; - -#pragma mark Some general methods: -- (BOOL) isEqual:(id) iObject; -- (NSString *) descriptionWithLocale:(NSDictionary *) locale; - -@end diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.m deleted file mode 100644 index 6d1e58f4..00000000 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPRelation.m +++ /dev/null @@ -1,486 +0,0 @@ -// -// $Id$ -// -// MCPRelation.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 11/08/04. -// Copyright (c) 2004 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPRelation.h" -#import "MCPRelation+Private.h" - -#import "MCPEntrepriseNotifications.h" - -#import "MCPModel.h" -#import "MCPClassDescription.h" -#import "MCPClassDescription+Private.h" -#import "MCPAttribute.h" - -#import "MCPJoin.h" - -static NSArray *MCPexistingDeleteRules; - -@implementation MCPRelation - -#pragma mark Class methods -+ (void) initialize -{ - if (self = [MCPRelation class]) { - NSMutableArray *theExistingDeleteRules = [[NSMutableArray alloc] init]; - - [self setVersion:010101]; // Ma.Mi.Re -> MaMiRe - - [theExistingDeleteRules addObject:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithUnsignedInteger:OnDeleteNullify], @"tag", @"Nullify", @"name", nil]]; - [theExistingDeleteRules addObject:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithUnsignedInteger:OnDeleteDeny], @"tag", @"Deny", @"name", nil]]; - [theExistingDeleteRules addObject:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithUnsignedInteger:OnDeleteCascade], @"tag", @"Cascade", @"name", nil]]; - [theExistingDeleteRules addObject:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithUnsignedInteger:OnDeleteDefault], @"tag", @"Default", @"name", nil]]; - [theExistingDeleteRules addObject:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithUnsignedInteger:OnDeleteNoAction], @"tag", @"No Action", @"name", nil]]; - MCPexistingDeleteRules = [[NSArray alloc] initWithArray:theExistingDeleteRules]; - [theExistingDeleteRules release]; - } - return; -} - -+ (NSArray *) existingDeleteRules -{ - return MCPexistingDeleteRules; -} - -- (NSArray *) existingDeleteRules -{ - return [MCPRelation existingDeleteRules]; -} - - -#pragma mark Life cycle -- (id) initWithName:(NSString *) iName from:(MCPClassDescription *) iFrom to:(MCPClassDescription *) iTo -{ - self = [super init]; - if (self) { - [self setName:iName]; - [self setOrigin:iFrom]; - [self setDestination:iTo]; - joins = [[NSMutableArray alloc] init]; - } - return self; -} - -- (void) invalidateRelation -{ - [self retain]; // To be sure not to be released before the end of the method - [self invalidateJoins]; // Remove each of the joins (so that attributes get notified) -/* - [origin removeObjectFromRelationsAtIndex:[[origin relations] indexOfObjectIdenticalTo:self]]; - origin = nil; - [destination removeObjectFromIncomingsAtIndex:[[destination incomings] indexOfObjectIdenticalTo:self]]; - destination = nil; -*/ - [self setOrigin:nil]; - [self setDestination:nil]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - [self release]; -} - -- (void) dealloc -{ - [joins release]; // Should be empty by now... - [name release]; -// The inverse relation don't have an inverse relation any more... -// [inverseRelation setInverseRelation:nil]; - [self setInverseRelation:nil]; -// Other are weak references. - [super dealloc]; -} - -#pragma mark NSCoding protocol -- (id) initWithCoder:(NSCoder *) decoder -{ - self = [super init]; - if ((self) && ([decoder allowsKeyedCoding])) { - [self setName:[decoder decodeObjectForKey:@"MCPname"]]; - [self setDeleteRule:(MCPRelationDeleteRule)[decoder decodeInt32ForKey:@"MCPdeleteRule"]]; - if ([decoder containsValueForKey:@"MCPinverseRelation"]) { - [self setInverseRelation:[decoder decodeObjectForKey:@"MCPinverseRelation"]]; - } - else { - [self setInverseRelation:nil]; - } - [self setOrigin:[decoder decodeObjectForKey:@"MCPorigin"]]; - [self setDestination:[decoder decodeObjectForKey:@"MCPdestination"]]; -// [self setJoins:[decoder decodeObjectForKey:@"MCPjoins"]]; - joins = [[NSMutableArray alloc] initWithArray:[decoder decodeObjectForKey:@"MCPjoins"]]; - [self setIsToMany:[decoder decodeBoolForKey:@"MCPisToMany"]]; - [self setIsMandatory:[decoder decodeBoolForKey:@"MCPisMandatory"]]; - [self setOwnsDestintation:[decoder decodeBoolForKey:@"MCPownsDestination"]]; - } - - return self; -} - -- (void) encodeWithCoder:(NSCoder *) encoder -{ - if (! [encoder allowsKeyedCoding]) { - NSLog(@"In MCPRelation -encodeWithCoder : Unable to encode to a non-keyed encoder!!, will not perform encoding!!"); - return; - } - [encoder encodeObject:[self name] forKey:@"MCPname"]; - [encoder encodeInt32:(int32_t)[self deleteRule] forKey:@"MCPdeleteRule"]; - if ([self inverseRelation]) { - [encoder encodeObject:[self inverseRelation] forKey:@"MCPinverseRelation"]; - } - [encoder encodeObject:[self origin] forKey:@"MCPorigin"]; - [encoder encodeObject:[self destination] forKey:@"MCPdestination"]; - [encoder encodeObject:[self joins] forKey:@"MCPjoins"]; - [encoder encodeBool:[self isToMany] forKey:@"MCPisToMany"]; - [encoder encodeBool:[self isMandatory] forKey:@"MCPisMandatory"]; - [encoder encodeBool:[self ownsDestination] forKey:@"MCPownsDestination"]; -} - -#pragma mark Making new joins -/* -- (MCPJoin *) addNewJoin // Usefull for the interface, to be able to create a new join by just using a binding. -{ - [self addJoinFrom:[origin objectInAttributesAtIndex:0] to:[destination objectInAttributesAtIndex:0]]; -} -*/ - -- (MCPJoin *) addJoinFrom:(MCPAttribute *) iFrom to:(MCPAttribute *) iTo -{ - MCPJoin *theJoin; - - if ([iFrom classDescription] != [self origin]) { - NSLog(@"Tried to make a join starting from an attribute (%@) that does NOT belong to the origin class description (%@)! Will not perform the link", iFrom, [self origin]); - return nil; - } - if ([iTo classDescription] != [self destination]) { - NSLog(@"Tried to make a join arriving to an attribute (%@) that does NOT belong to the destination class description (%@)! Will not perform the link", iTo, [self destination]); - return nil; - } - theJoin = [[MCPJoin alloc] initForRelation:self from:iFrom to:iTo]; -// theJoin = [[MCPJoin alloc] initFrom:iFrom to:iTo]; -// [joins addObject:theJoin]; - [joins insertObject:theJoin atIndex:[joins count]]; - [theJoin release]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - return theJoin; -} - -- (void) removeJoinFrom:(MCPAttribute *) iFrom to:(MCPAttribute *) iTo -{ - NSDictionary *theJoinDict = [[NSDictionary alloc] initWithObjectsAndKeys:self, @"relation", iFrom, @"origin", iTo, @"destination", nil]; - NSUInteger i = [joins indexOfObject:theJoinDict]; - - if (NSNotFound != i) { - [[self objectInJoinsAtIndex:i] invalidate]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - } - [theJoinDict release]; -} - -/* -- (void) unjoinAttribute:(MCPAttribute *) iAttribute -{ - unsigned int i = 0; - -#warning HAVE to rewrite this code!!! - if ([[iAttribute classDescription] isEqual:origin]) { - for (i=0; ([joins count] != i) && ([iAttribute isEqual:[(MCPJoin *)[joins objectAtIndex:i] origin]]); ++i) { - } - } - if ([[iAttribute classDescription] isEqual:destination]) { - for (i=0; ([joins count] != i) && ([iAttribute isEqual:[(MCPJoin *)[joins objectAtIndex:i] destination]]); ++i) { - } - } - if ((0 == i) || ([joins count] == i)) { // No joins found using this attribute. - return; - } - [self removeJoinFrom:[(MCPJoin *)[joins objectAtIndex:i] origin] to:[(MCPJoin *)[joins objectAtIndex:i] destination]]; -} -*/ - -#pragma mark Setters -- (void) setDestination:(MCPClassDescription *) iDestination -{ - if (iDestination != destination) { - [destination removeObjectFromIncomingsAtIndex:[[destination incomings] indexOfObjectIdenticalTo:self]]; - destination = iDestination; - [destination insertObject:self inIncomingsAtIndex:0]; - [self invalidateJoins]; - } -} - - -- (void) setName:(NSString *) iName -{ - if (iName != name) { - [name release]; - name = [iName retain]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[origin model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:origin]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - } -} - -- (void) setDeleteRule:(MCPRelationDeleteRule) iDeleteRule -{ - if (iDeleteRule != deleteRule) { // Don't do the notification for nothing!!! - deleteRule = iDeleteRule; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[origin model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:origin]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - } -} - -- (void) setInverseRelation:(MCPRelation *) iInverseRelation -{ - if (iInverseRelation != inverseRelation) { - [inverseRelation release]; - inverseRelation = [iInverseRelation retain]; - [inverseRelation setInverseRelation:self]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[origin model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:origin]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - } -} - -- (void) insertObject:(MCPJoin *) iJoin inJoinsAtIndex:(NSUInteger) index -{ - [joins insertObject:iJoin atIndex:index]; -} - -- (void) removeObjectFromJoinsAtIndex:(NSUInteger) index -{ - [joins removeObjectAtIndex:index]; -} - -- (void) setIsToMany:(BOOL) iIsToMany -{ - if (iIsToMany != isToMany) { // Don't do the notification for nothing!!! - isToMany = iIsToMany; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[origin model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:origin]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - } -} - -- (void) setIsMandatory:(BOOL) iIsMandatory -{ - if (iIsMandatory != isMandatory) { // Don't do the notification for nothing!!! - isMandatory = iIsMandatory; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[origin model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:origin]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - } -} - -- (void) setOwnsDestintation:(BOOL) iOwnsDestination -{ - if (iOwnsDestination != ownsDestination) { // Don't do the notification for nothing!!! - ownsDestination = iOwnsDestination; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPModelChangedNotification object:[origin model]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPClassDescriptionChangedNotification object:origin]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - } -} - -#pragma mark Getters -- (NSString *) name -{ - return name; -} - -- (MCPRelationDeleteRule) deleteRule -{ - return deleteRule; -} - -- (MCPRelation *) inverseRelation -{ - return inverseRelation; -} - -- (MCPClassDescription *) origin -{ - return origin; -} - -- (MCPClassDescription *) destination -{ - return destination; -} - -- (NSArray *) joins -{ - return [NSArray arrayWithArray:joins]; -} - -- (NSUInteger) countOfJoins -{ - return [joins count]; -} - -- (MCPJoin *) objectInJoinsAtIndex:(NSUInteger) index -{ - return (MCPJoin *)((NSNotFound != index) ? [joins objectAtIndex:index] : nil); -} - -- (NSUInteger) indexOfJoinIdenticalTo:(id) iJoin -{ - return [joins indexOfObjectIdenticalTo:iJoin]; -} - -- (BOOL) isToMany -{ - return isToMany; -} - -- (BOOL) isMandatory -{ - return isMandatory; -} - -- (BOOL) ownsDestination -{ - return ownsDestination; -} - -#pragma mark Some Usefull methods - -- (MCPAttribute *) destinationAttributeForOrigin:(MCPAttribute *) iFrom -{ - NSUInteger i; - - for (i=0; ([joins count] != i) && ([[(MCPJoin *)[joins objectAtIndex:i] origin] isEqual:iFrom]); ++i) { - } - return ([joins count] == i) ? nil : [(MCPJoin *)[joins objectAtIndex:i] destination]; -} - -- (MCPAttribute *) originAttributeForDestination:(MCPAttribute *) iTo -{ - NSUInteger i; - - for (i=0; ([joins count] != i) && ([[(MCPJoin *)[joins objectAtIndex:i] destination] isEqual:iTo]); ++i) { - } - return ([joins count] == i) ? nil : [(MCPJoin *)[joins objectAtIndex:i] origin]; -} - - -#pragma mark Some general methods: -- (BOOL) isEqual:(id) iObject -// Equal to another relation, if they have the same name and same origin and destination class descriptions (they have the same names). -// Equal to a string (NSString), if the name of the relation is equal to the string. -{ - if ([iObject isKindOfClass:[MCPRelation class]]) { - MCPRelation *theRelation = (MCPRelation *) iObject; - - return ([name isEqualToString:[theRelation name]]) && ([[self origin] isEqual:[theRelation origin]]) && ([[self destination] isEqual:[theRelation destination]]); - } - if ([iObject isKindOfClass:[NSString class]]) { - return [name isEqualToString:(NSString *)iObject]; - } - return NO; -} - -- (NSString *) descriptionWithLocale:(NSDictionary *) locale -{ - NSMutableString *theRet = [NSMutableString stringWithFormat:@"MCPRelation named %@, going from %@ to %@. Joins :\n", name, [origin name], [destination name]]; - NSUInteger i; - - for (i = 0; [joins count] != i; ++i) { - MCPJoin *tmpJoin = (MCPJoin *)[joins objectAtIndex:i]; - [theRet appendFormat:@"\t\t%@ == %@\n", [[tmpJoin origin] name], [[tmpJoin destination] name]]; - } - return theRet; -} - - -#pragma mark For debugging the retain counting -- (id) retain -{ - [super retain]; - return self; -} - -- (void) release -{ - [super release]; - return; -} - -@end - -@implementation MCPRelation (Private) - -#pragma mark Making some work -- (void) invalidateJoins -{ - while ([joins count]) { - [[self objectInJoinsAtIndex:0] invalidate]; - } - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; -} - -#pragma mark Setters -- (void) setOrigin:(MCPClassDescription *) iOrigin -{ - if (iOrigin != origin) { - [origin removeObjectFromRelationsAtIndex:[[origin relations] indexOfObjectIdenticalTo:self]]; - origin = iOrigin; - [origin insertObject:self inRelationsAtIndex:[origin countOfRelations]]; - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - [self invalidateJoins]; - } -} - -/* -- (void) setJoins:(NSArray *) iJoins -{ - if (iJoins != joins) { - unsigned int i; - if (joins) { - [self invalidateJoins]; - } - else { - joins = [[NSMutableArray alloc] init]; - } - for (i=0; [iJoins count] != i; ++i) { - [self addJoinFrom:[(MCPJoin *)[iJoins objectAtIndex:i] origin] to:[(MCPJoin *)[iJoins objectAtIndex:i] destination]]; - } - [[NSNotificationCenter defaultCenter] postNotificationName:MCPRelationChangedNotification object:self]; - } -} -*/ - -#pragma mark Getters -- (MCPModel *) model -{ - return [origin model]; -} - -#pragma mark Fro the controller layer and the UI -- (void) addNewDefaultJoin // Usefull for the interface, to be able to create a new join by just using a binding. -{ - [self addJoinFrom:[origin objectInAttributesAtIndex:0] to:[destination objectInAttributesAtIndex:0]]; -} - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h deleted file mode 100644 index 0b3f932b..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h +++ /dev/null @@ -1,282 +0,0 @@ -// -// $Id$ -// -// MCPConnection.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 08/12/2001. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import -#import - -#import "MCPConstants.h" -#import "mysql.h" - -typedef struct { - MYSQL *mySQLConnection; - BOOL *pingActivePointer; - BOOL *lastPingSuccessPointer; -} MCPConnectionPingDetails; - -@class MCPResult, MCPStreamingResult; -@protocol MCPConnectionProxy, MCPConnectionDelegate; - -@interface MCPConnection : NSObject -{ - MYSQL *mConnection; - BOOL mConnected; - NSStringEncoding mEncoding; - NSTimeZone *mTimeZone; - NSUInteger mConnectionFlags; - - id delegate; - - // Anything that performs a mysql_net_read is not thread-safe: mysql queries, pings - // Always lock the connection first. Don't use this lock directly, use the lockConnection method! - NSConditionLock *connectionLock; - - BOOL useKeepAlive; - BOOL isDisconnecting; - BOOL isReconnecting; - BOOL userTriggeredDisconnect; - NSInteger connectionTimeout; - CGFloat keepAliveInterval; - - NSObject *connectionProxy; - NSString *connectionLogin; - NSString *connectionPassword; - NSString *connectionHost; - NSUInteger connectionPort; - NSString *connectionSocket; - NSUInteger maxAllowedPacketSize; - unsigned long connectionThreadId; - - BOOL useSSL; - NSString *sslKeyFilePath; - NSString *sslCertificatePath; - NSString *sslCACertificatePath; - - NSString *encoding, *previousEncoding; - NSStringEncoding stringEncoding; - BOOL encodingUsesLatin1Transport, previousEncodingUsesLatin1Transport; - - NSInteger currentProxyState; - - double lastQueryExecutionTime; - double lastQueryExecutedAtTime; - NSString *lastQueryErrorMessage; - NSUInteger lastQueryErrorId; - my_ulonglong lastQueryAffectedRows; - MCPConnectionCheck lastDelegateDecisionForLostConnection; - - BOOL isMaxAllowedPacketEditable; - - NSString *serverVersionString; - NSMutableDictionary *structure; - NSMutableArray *allKeysofDbStructure; - - pthread_t pingThread; - NSInteger pingFailureCount; - BOOL pingThreadActive; - BOOL lastPingSuccess; - BOOL lastPingBlocked; - NSTimer *keepAliveTimer; - double lastKeepAliveTime; - uint64_t connectionStartTime; - - BOOL retryAllowed; - BOOL queryCancelled; - BOOL queryCancelUsedReconnect; - BOOL delegateQueryLogging; - BOOL delegateResponseToWillQueryString; - BOOL delegateSupportsConnectionLostDecisions; - NSInteger isQueryingDbStructure; - BOOL cancelQueryingDbStructure; - BOOL lockQuerying; - NSInteger automaticReconnectAttempts; - - // Pointers - IMP cStringPtr; - IMP willQueryStringPtr; - IMP timeConnectedPtr; - - // Selectors - SEL cStringSEL; - SEL willQueryStringSEL; - SEL timeConnectedSEL; -} - -// Readonly properties -@property (readonly) double lastQueryExecutionTime; - -// Read/write properties -@property (readwrite, assign) BOOL useKeepAlive; -@property (readwrite, assign) BOOL delegateQueryLogging; -@property (readwrite, assign) NSInteger connectionTimeout; -@property (readwrite, assign) CGFloat keepAliveInterval; - -// Initialisation -- (id)initToHost:(NSString *)host withLogin:(NSString *)login usingPort:(NSUInteger)port; -- (id)initToSocket:(NSString *)socket withLogin:(NSString *)login; - -// Delegate -- (id)delegate; -- (void)setDelegate:(id)connectionDelegate; -- (MCPConnectionCheck)delegateDecisionForLostConnection; - -// Connection details -- (BOOL)setPort:(NSUInteger)thePort; -- (BOOL)setPassword:(NSString *)thePassword; -- (void) setSSL:(BOOL)shouldUseSSL usingKeyFilePath:(NSString *)keyFilePath certificatePath:(NSString *)certificatePath certificateAuthorityCertificatePath:(NSString *)caCertificatePath; - -// Proxy -- (BOOL)setConnectionProxy:(id )proxy; -- (void)connectionProxyStateChange:(id )proxy; - -// Connection -- (BOOL)connect; -- (void)disconnect; -- (BOOL)reconnect; -- (BOOL)isConnected; -- (BOOL)isConnectedViaSSL; -- (BOOL)userTriggeredDisconnect; -- (BOOL)checkConnection; -- (void)restoreConnectionDetails; -- (void)setAllowQueryRetries:(BOOL)allow; -- (double)timeConnected; - -// Pinging and keepalive -- (BOOL)pingConnectionUsingLoopDelay:(NSUInteger)loopDelay; -void backgroundPingTask(void *ptr); -void forceThreadExit(int signalNumber); -void pingThreadCleanup(void *pingDetails); -- (void)keepAlive:(NSTimer *)theTimer; -- (void)threadedKeepAlive; - -// Server versions -- (NSString *)serverVersionString; -- (NSInteger)serverMajorVersion; -- (NSInteger)serverMinorVersion; -- (NSInteger)serverReleaseVersion; - -// MySQL defaults -+ (NSDictionary *)getMySQLLocales; -+ (NSStringEncoding)encodingForMySQLEncoding:(const char *)mysqlEncoding; -+ (NSString *) mySQLEncodingForStringEncoding:(NSStringEncoding)stringEncoding; -+ (NSStringEncoding)defaultMySQLEncoding; -+ (BOOL)isErrorNumberConnectionError:(NSInteger)theErrorNumber; - -// Class maintenance -+ (void)setTruncateLongFieldInLogs:(BOOL)iTruncFlag; -+ (BOOL)truncateLongField; -- (BOOL)setConnectionOption:(NSInteger)option toValue:(BOOL)value; -- (BOOL)connectWithLogin:(NSString *)login password:(NSString *)pass host:(NSString *)host port:(NSUInteger)port socket:(NSString *)socket; - -- (BOOL)selectDB:(NSString *)dbName; - -// Error information -- (BOOL)queryErrored; -- (NSString *)getLastErrorMessage; -- (void)setLastErrorMessage:(NSString *)theErrorMessage; -- (NSUInteger)getLastErrorID; -+ (BOOL)isErrorNumberConnectionError:(NSInteger)theErrorNumber; -- (void)updateErrorStatuses; - -// Queries -- (NSString *)prepareBinaryData:(NSData *)theData; -- (NSString *)prepareString:(NSString *)theString; -- (NSString *)quoteObject:(id)theObject; -- (MCPResult *)queryString:(NSString *)query; -- (MCPStreamingResult *)streamingQueryString:(NSString *)query; -- (MCPStreamingResult *)streamingQueryString:(NSString *)query useLowMemoryBlockingStreaming:(BOOL)fullStream; -- (id)queryString:(NSString *)query usingEncoding:(NSStringEncoding)encoding streamingResult:(NSInteger)streamResult; -- (my_ulonglong)affectedRows; -- (my_ulonglong)insertId; -- (void)cancelCurrentQuery; -- (BOOL)queryCancelled; -- (BOOL)queryCancellationUsedReconnect; -- (void)flushMultiResults; - -// Locking -- (void)lockConnection; -- (BOOL)tryLockConnection; -- (void)unlockConnection; - -// Database structure -- (MCPResult *)listDBs; -- (MCPResult *)listDBsLike:(NSString *)dbsName; -- (MCPResult *)listTables; -- (MCPResult *)listTablesLike:(NSString *)tablesName; -- (NSArray *)listTablesFromDB:(NSString *)dbName; -- (NSArray *)listTablesFromDB:(NSString *)dbName like:(NSString *)tablesName; -- (MCPResult *)listFieldsFromTable:(NSString *)tableName; -- (MCPResult *)listFieldsFromTable:(NSString *)tableName like:(NSString *)fieldsName; - -// Structure querying -- (void)queryDbStructureWithUserInfo:(NSDictionary*)userInfo; -- (NSDictionary *)getDbStructure; -- (NSArray *)getAllKeysOfDbStructure; -- (BOOL)isQueryingDatabaseStructure; -- (void)incrementQueryingDbStructure; -- (void)decrementQueryingDbStructure; -- (void)lockQuerying; -- (void)unlockQuerying; -- (void)updateGlobalVariablesWith:(NSDictionary*)object; - -// Server information -- (NSString *)clientInfo; -- (NSString *)hostInfo; -- (NSString *)serverInfo; -- (NSNumber *)protoInfo; -- (MCPResult *)listProcesses; -- (BOOL)killProcess:(unsigned long)pid; -- (NSString *)findSocketPath; - -// Encoding -- (BOOL)setEncoding:(NSString *)theEncoding; -- (NSString *)encoding; -- (NSStringEncoding)stringEncoding; -- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1; -- (BOOL)encodingUsesLatin1Transport; -- (void)storeEncodingForRestoration; -- (void)restoreStoredEncoding; - -// Time zone -- (void)setTimeZone:(NSTimeZone *)iTimeZone; -- (NSTimeZone *)timeZone; - -// Packet size -- (BOOL)fetchMaxAllowedPacket; -- (NSUInteger)getMaxAllowedPacket; -- (BOOL)isMaxAllowedPacketEditable; -- (NSUInteger)setMaxAllowedPacketTo:(NSUInteger)newSize resetSize:(BOOL)reset; - -// Data conversion -- (const char *)cStringFromString:(NSString *)theString; -- (const char *)cStringFromString:(NSString *)theString usingEncoding:(NSStringEncoding)encoding; -- (NSString *)stringWithCString:(const char *)theCString; -- (NSString *)stringWithCString:(const char *)theCString usingEncoding:(NSStringEncoding)encoding; -- (NSString *)stringWithText:(NSData *)theTextData; -- (NSString *)stringWithUTF8CString:(const char *)theCString; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m deleted file mode 100644 index 04dcf50d..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m +++ /dev/null @@ -1,3402 +0,0 @@ -// -// $Id$ -// -// MCPConnection.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 08/12/2001. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPConnection.h" -#import "MCPResult.h" -#import "MCPNumber.h" -#import "MCPNull.h" -#import "MCPStreamingResult.h" -#import "MCPConnectionProxy.h" -#import "MCPConnectionDelegate.h" -#import "MCPStringAdditions.h" -#import "RegexKitLite.h" // TODO: Remove along with queryDbStructureWithUserInfo -#import "NSNotificationAdditions.h" - -#include -#include -#include - -const NSUInteger kMCPConnectionDefaultOption = CLIENT_COMPRESS | CLIENT_REMEMBER_OPTIONS | CLIENT_MULTI_RESULTS | CLIENT_INTERACTIVE; -const char *kMCPConnectionDefaultSocket = MYSQL_UNIX_ADDR; -const char *kMCPSSLCipherList = "DHE-RSA-AES256-SHA:AES256-SHA:DHE-RSA-AES128-SHA:AES128-SHA:AES256-RMD:AES128-RMD:DES-CBC3-RMD:DHE-RSA-AES256-RMD:DHE-RSA-AES128-RMD:DHE-RSA-DES-CBC3-RMD:RC4-SHA:RC4-MD5:DES-CBC3-SHA:DES-CBC-SHA:EDH-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC-SHA"; -const NSUInteger kMCPConnection_Not_Inited = 1000; -const NSUInteger kLengthOfTruncationForLog = 100; - -static BOOL sTruncateLongFieldInLogs = YES; - -/** - * Privte API - */ -@interface MCPConnection (PrivateAPI) - -- (void)_updateConnectionVariables; -- (BOOL)_isCurrentHostReachable; -- (void)_setupKeepalivePingTimer; - -@end - -/** - * Note that these aren't actually delegate methods, but are defined because queryDbStructureWithUserInfo needs - * them. We define them here to supress compiler warnings. - * - * TODO: Remove along with queryDbStructureWithUserInfo - */ -@interface MCPConnection (MCPConnectionDelegate) - -- (NSString *)database; -- (NSString *)connectionID; - -- (NSArray *)allDatabaseNames; -- (NSArray *)allSystemDatabaseNames; -- (NSArray *)allTableNames; -- (NSArray *)allViewNames; -- (NSArray *)allSchemaKeys; - -@end - -@implementation MCPConnection - -// Synthesize ivars -@synthesize useKeepAlive; -@synthesize delegateQueryLogging; -@synthesize connectionTimeout; -@synthesize keepAliveInterval; -@synthesize lastQueryExecutionTime; - -#pragma mark - -#pragma mark Initialisation - -/** - * Initialise a MySQLConnection without making a connection, most likely useless, except with !{setConnectionOption:withArgument:}. - * - * Because this method is not making a connection to any MySQL server, it can not know already what the DB server encoding will be, - * hence the encoding is set to some default (at present this is NSISOLatin1StringEncoding). Obviously this is reset to a proper - * value as soon as a DB connection is performed. - */ -- (id)init -{ - if ((self = [super init])) { - mConnection = mysql_init(NULL); - mConnected = NO; - - if (mConnection == NULL) { - [self autorelease]; - - return nil; - } - - encoding = [[NSString alloc] initWithString:@"utf8"]; - previousEncoding = nil; - stringEncoding = NSUTF8StringEncoding; - encodingUsesLatin1Transport = NO; - previousEncodingUsesLatin1Transport = NO; - mConnectionFlags = kMCPConnectionDefaultOption; - - // Anything that performs a mysql_net_read is not thread-safe: mysql queries, pings - // Always lock the connection first. Don't use this lock directly, use the lockConnection method! - connectionLock = [[NSConditionLock alloc] initWithCondition:MCPConnectionIdle]; - [connectionLock setName:@"MCPConnection connectionLock"]; - - connectionHost = nil; - connectionLogin = nil; - connectionSocket = nil; - connectionPassword = nil; - useSSL = NO; - sslKeyFilePath = nil; - sslCertificatePath = nil; - sslCACertificatePath = nil; - lastKeepAliveTime = 0; - pingThread = NULL; - connectionProxy = nil; - connectionStartTime = 0; - lastQueryExecutedAtTime = CGFLOAT_MAX; - lastDelegateDecisionForLostConnection = NSNotFound; - queryCancelled = NO; - queryCancelUsedReconnect = NO; - serverVersionString = nil; - mTimeZone = nil; - isDisconnecting = NO; - isReconnecting = NO; - userTriggeredDisconnect = NO; - automaticReconnectAttempts = 0; - lastPingSuccess = NO; - lastPingBlocked = NO; - pingThreadActive = NO; - pingFailureCount = 0; - - // Initialize ivar defaults - connectionTimeout = 10; - useKeepAlive = YES; - keepAliveInterval = 60; - - structure = [[NSMutableDictionary alloc] initWithCapacity:1]; - allKeysofDbStructure = [[NSMutableArray alloc] initWithCapacity:20]; - isQueryingDbStructure = 0; - lockQuerying = NO; - - connectionThreadId = 0; - maxAllowedPacketSize = 1048576; - lastQueryExecutionTime = 0; - lastQueryErrorId = 0; - lastQueryErrorMessage = nil; - lastQueryAffectedRows = 0; - lastPingSuccess = NO; - delegate = nil; - delegateSupportsConnectionLostDecisions = NO; - delegateResponseToWillQueryString = NO; - - // Enable delegate query logging by default - delegateQueryLogging = YES; - - // Default to allowing queries to be reattempted if they fail due to connection issues - retryAllowed = YES; - - // Obtain SEL references - willQueryStringSEL = @selector(willQueryString:connection:); - cStringSEL = @selector(cStringFromString:); - - // Obtain pointers - cStringPtr = [self methodForSelector:cStringSEL]; - - // Start the keepalive timer - if ([NSThread isMainThread]) - [self _setupKeepalivePingTimer]; - else - [self performSelectorOnMainThread:@selector(_setupKeepalivePingTimer) withObject:nil waitUntilDone:YES]; - } - - return self; -} - -/** - * Inialize connection using the supplied host details. - */ -- (id)initToHost:(NSString *)host withLogin:(NSString *)login usingPort:(NSUInteger)port -{ - if ((self = [self init])) { - if (!host) host = @""; - if (!login) login = @""; - - connectionHost = [[NSString alloc] initWithString:host]; - connectionLogin = [[NSString alloc] initWithString:login]; - connectionPort = port; - connectionSocket = nil; - } - - return self; -} - -/** - * Inialize connection using the supplied socket details. - */ -- (id)initToSocket:(NSString *)aSocket withLogin:(NSString *)login -{ - if ((self = [self init])) { - if (!aSocket || ![aSocket length]) { - aSocket = [self findSocketPath]; - if (!aSocket) aSocket = @""; - } - - if (!login) login = @""; - - connectionHost = nil; - connectionLogin = [[NSString alloc] initWithString:login]; - connectionSocket = [[NSString alloc] initWithString:aSocket]; - connectionPort = 0; - } - - return self; -} - -#pragma mark - -#pragma mark Delegate - -/** - * Get the connection's current delegate. - */ -- (id)delegate -{ - return delegate; -} - -/** - * Set the connection's delegate to the supplied object. - */ -- (void)setDelegate:(id)connectionDelegate -{ - delegate = connectionDelegate; - - // Check that the delegate implements willQueryString:connection: and cache the result as its used very frequently. - delegateResponseToWillQueryString = [delegate respondsToSelector:@selector(willQueryString:connection:)]; - - // Check whether the delegate supports returning a connection lost action decision - delegateSupportsConnectionLostDecisions = [delegate respondsToSelector:@selector(connectionLost:)]; -} - -/** - * Ask the delegate for the connection lost decision. This can be called from - * any thread, and will call itself on the main thread if necessary, updating a global - * variable which is then returned on the child thread. - */ -- (MCPConnectionCheck)delegateDecisionForLostConnection -{ - - // Return the "Disconnect" decision if the delegate doesn't support connectionLost: checks - if (!delegateSupportsConnectionLostDecisions) return MCPConnectionCheckDisconnect; - - lastDelegateDecisionForLostConnection = NSNotFound; - - // If on the main thread, ask the delegate directly. - // This is wrapped in a NSLock to ensure variables are completely committed for - // thread-safe access, even though the lock is constrained to this code block. - if ([NSThread isMainThread]) { - NSLock *delegateDecisionLock = [[NSLock alloc] init]; - [delegateDecisionLock lock]; - lastDelegateDecisionForLostConnection = [delegate connectionLost:self]; - [delegateDecisionLock unlock]; - [delegateDecisionLock release]; - - // Otherwise call ourself on the main thread, waiting until the reply is received. - } else { - - // First check whether the application is in a modal state; if so, wait - while ([NSApp modalWindow]) usleep(100000); - - [self performSelectorOnMainThread:@selector(delegateDecisionForLostConnection) withObject:nil waitUntilDone:YES]; - } - - return lastDelegateDecisionForLostConnection; -} - -#pragma mark - -#pragma mark Connection details - -/** - * Sets or updates the connection port - for use with tunnels. - */ -- (BOOL)setPort:(NSUInteger)thePort -{ - connectionPort = thePort; - - return YES; -} - -/** - * Sets the password to be stored locally. - * Providing a keychain name is much more secure. - */ -- (BOOL)setPassword:(NSString *)thePassword -{ - if (connectionPassword) [connectionPassword release], connectionPassword = nil; - - if (!thePassword) thePassword = @""; - - connectionPassword = [[NSString alloc] initWithString:thePassword]; - - return YES; -} - -/** - * Set the connection to establish secure connections using SSL; must be - * called before connect:. - * This will always attempt to activate SSL if set, but depending on server - * setup connection may sometimes proceed without SSL enabled even if requested; - * it is suggested that after connection, -[MCPConnection isConnectedViaSSL] - * is checked to determine whether SSL is actually active. - */ -- (void) setSSL:(BOOL)shouldUseSSL usingKeyFilePath:(NSString *)keyFilePath certificatePath:(NSString *)certificatePath certificateAuthorityCertificatePath:(NSString *)caCertificatePath -{ - useSSL = shouldUseSSL; - - // Reset the old SSL details - if (sslKeyFilePath) [sslKeyFilePath release], sslKeyFilePath = nil; - if (sslCertificatePath) [sslCertificatePath release], sslCertificatePath = nil; - if (sslCACertificatePath) [sslCACertificatePath release], sslCACertificatePath = nil; - - // Set new details if provided - if (keyFilePath) sslKeyFilePath = [[NSString alloc] initWithString:[keyFilePath stringByExpandingTildeInPath]]; - if (certificatePath) sslCertificatePath = [[NSString alloc] initWithString:[certificatePath stringByExpandingTildeInPath]]; - if (caCertificatePath) sslCACertificatePath = [[NSString alloc] initWithString:[caCertificatePath stringByExpandingTildeInPath]]; -} - -#pragma mark - -#pragma mark Connection proxy - -/* - * Set a connection proxy object to connect through. This object will be retained locally, - * and will be automatically connected/connection checked/reconnected/disconnected - * together with the main connection. - */ -- (BOOL)setConnectionProxy:(id )proxy -{ - connectionProxy = proxy; - [connectionProxy retain]; - - currentProxyState = [connectionProxy state]; - [connectionProxy setConnectionStateChangeSelector:@selector(connectionProxyStateChange:) delegate:self]; - - return YES; -} - -/** - * Handle any state changes in the associated connection proxy. - */ -- (void)connectionProxyStateChange:(id )proxy -{ - NSInteger newState = [proxy state]; - - // Restart the tunnel if it dies - use a new thread to allow the main thread to process - // events as required. - if (mConnected && newState == PROXY_STATE_IDLE && currentProxyState == PROXY_STATE_CONNECTED) { - currentProxyState = newState; - [connectionProxy setConnectionStateChangeSelector:nil delegate:nil]; - - // Trigger a reconnect - if (!isDisconnecting) [NSThread detachNewThreadSelector:@selector(reconnect) toTarget:self withObject:nil]; - - return; - } - - currentProxyState = newState; -} - -#pragma mark - -#pragma mark Connection - -/** - * Add a new connection method, intended for use with the init methods above. - * Uses the stored details to instantiate a connection to the specified server, - * including custom timeouts - used for pings, not for long-running commands. - */ -- (BOOL)connect -{ - const char *theLogin = [self cStringFromString:connectionLogin]; - const char *theHost; - const char *thePass = NULL; - const char *theSocket; - void *theRet; - - // Disconnect if a connection is already active - if (mConnected) { - [self disconnect]; - mConnection = mysql_init(NULL); - if (mConnection == NULL) return NO; - } - - [self lockConnection]; - - if (mConnection != NULL) { - - // Ensure the custom timeout option is set - mysql_options(mConnection, MYSQL_OPT_CONNECT_TIMEOUT, (const void *)&connectionTimeout); - - // ensure that automatic reconnection is explicitly disabled - now handled manually. - my_bool falseBool = FALSE; - mysql_options(mConnection, MYSQL_OPT_RECONNECT, &falseBool); - - // Set the connection encoding to utf8 - mysql_options(mConnection, MYSQL_SET_CHARSET_NAME, [encoding UTF8String]); - } - - // Set the host as appropriate - if (!connectionHost || ![connectionHost length]) { - theHost = NULL; - } else { - theHost = [self cStringFromString:connectionHost]; - } - - // Use the default socket if none is set, or set appropriately - if (connectionSocket == nil || ![connectionSocket length]) { - theSocket = kMCPConnectionDefaultSocket; - } else { - theSocket = [self cStringFromString:connectionSocket]; - } - - // Apply SSL if appropriate - if (useSSL) { - mysql_ssl_set(mConnection, - sslKeyFilePath ? [sslKeyFilePath UTF8String] : NULL, - sslCertificatePath ? [sslCertificatePath UTF8String] : NULL, - sslCACertificatePath ? [sslCACertificatePath UTF8String] : NULL, - NULL, - kMCPSSLCipherList); - } - - // Select the password from the provided method - if (!connectionPassword) { - if (delegate && [delegate respondsToSelector:@selector(keychainPasswordForConnection:)]) { - thePass = [self cStringFromString:[delegate keychainPasswordForConnection:self]]; - } - } else { - thePass = [self cStringFromString:connectionPassword]; - } - - // Connect - theRet = mysql_real_connect(mConnection, theHost, theLogin, thePass, NULL, (unsigned int)connectionPort, theSocket, mConnectionFlags); - thePass = NULL; - - // If the connection failed, record the error state and return - if (theRet != mConnection) { - [self unlockConnection]; - [self setLastErrorMessage:nil]; - - lastQueryErrorId = mysql_errno(mConnection); - - return mConnected = NO; - } - - // Set and reset connection flags - mConnected = YES; - userTriggeredDisconnect = NO; - connectionStartTime = mach_absolute_time(); - lastKeepAliveTime = 0; - automaticReconnectAttempts = 0; - pingFailureCount = 0; - connectionThreadId = mConnection->thread_id; - [self setLastErrorMessage:nil]; - - [self unlockConnection]; - - // Update connection variables - server version, time zone, and connection encoding - [self _updateConnectionVariables]; - - // Only attempt to set the max allowed packet if we have a connection - // The fetches may fail, in which case the class default (which should match - // the MySQL default) will be used. - if (mConnection != NULL) { - isMaxAllowedPacketEditable = [self isMaxAllowedPacketEditable]; - [self fetchMaxAllowedPacket]; - } - else { - mConnected = NO; - isMaxAllowedPacketEditable = NO; - } - - return mConnected; -} - -/** - * Disconnect the current connection. - */ -- (void)disconnect -{ - if (isDisconnecting) return; - isDisconnecting = YES; - - if (mConnected) { - [self cancelCurrentQuery]; - mConnected = NO; - - // Allow any pings or query cleanups to complete - within a time limit. - uint64_t startTime_t, currentTime_t; - Nanoseconds elapsedNanoseconds; - startTime_t = mach_absolute_time(); - do { - usleep(100000); - - currentTime_t = mach_absolute_time() - startTime_t ; - elapsedNanoseconds = AbsoluteToNanoseconds(*(AbsoluteTime *)&(currentTime_t)); - if (((double)UnsignedWideToUInt64(elapsedNanoseconds)) * 1e-9 > 10) break; - } while (![self tryLockConnection]); - [self unlockConnection]; - - // Only close the connection if it appears to still be active, and not reading or - // writing. This may result in a leak, but minimises crashes. - if (!mConnection->net.reading_or_writing && mConnection->net.vio && mConnection->net.buff) mysql_close(mConnection); - mConnection = NULL; - } - - isDisconnecting = NO; - - if (connectionProxy) { - [connectionProxy performSelectorOnMainThread:@selector(disconnect) withObject:nil waitUntilDone:YES]; - } - - if (serverVersionString) [serverVersionString release], serverVersionString = nil; - if (structure) [structure release], structure = nil; - if (allKeysofDbStructure) [allKeysofDbStructure release], allKeysofDbStructure = nil; - if (pingThread != NULL) pthread_cancel(pingThread), pingThread = NULL; -} - -/** - * Reconnect to the currently "active" - but possibly disconnected - connection, using the - * stored details. - * Error checks extensively - if this method fails, it will ask how to proceed and loop depending - * on the status, not returning control until either a connection has been established or - * the connection and document have been closed. - * Runs its own autorelease pool as sometimes called in a thread following proxy changes - * (where the return code doesn't matter). - */ -- (BOOL)reconnect -{ - NSAutoreleasePool *reconnectionPool = [[NSAutoreleasePool alloc] init]; - NSString *currentEncoding = [NSString stringWithString:encoding]; - BOOL currentEncodingUsesLatin1Transport = encodingUsesLatin1Transport; - NSString *currentDatabase = nil; - - // Check whether a reconnection attempt is already being made - if so, wait and return the status of that reconnection attempt. - if (isReconnecting) { - NSDate *eventLoopStartDate; - while (isReconnecting) { - eventLoopStartDate = [NSDate date]; - [[NSRunLoop currentRunLoop] runMode:NSModalPanelRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; - if ([[NSDate date] timeIntervalSinceDate:eventLoopStartDate] < 0.1) { - usleep((useconds_t)(100000 - (1000000 * [[NSDate date] timeIntervalSinceDate:eventLoopStartDate]))); - } - } - [reconnectionPool drain]; - return mConnected; - } - - isReconnecting = YES; - - // Store the currently selected database so it can be re-set if reconnection was successful - if (delegate && [delegate respondsToSelector:@selector(onReconnectShouldSelectDatabase:)] && [delegate onReconnectShouldSelectDatabase:self]) { - currentDatabase = [NSString stringWithString:[delegate onReconnectShouldSelectDatabase:self]]; - } - - // Close the connection if it exists. - if (mConnected) { - mConnected = NO; - - // Allow any pings or query cleanups to complete - within a time limit. - uint64_t startTime_t, currentTime_t; - Nanoseconds elapsedNanoseconds; - startTime_t = mach_absolute_time(); - do { - usleep(100000); - - currentTime_t = mach_absolute_time() - startTime_t ; - elapsedNanoseconds = AbsoluteToNanoseconds(*(AbsoluteTime *)&(currentTime_t)); - if (((double)UnsignedWideToUInt64(elapsedNanoseconds)) * 1e-9 > 10) break; - } while (![self tryLockConnection]); - [self unlockConnection]; - - // Only close the connection if it's not reading or writing - this may result - // in leaks, but minimises crashes. - if (!mConnection->net.reading_or_writing) mysql_close(mConnection); - mConnection = NULL; - } - - isDisconnecting = NO; - [self lockConnection]; - - // If no network is present, loop for a short period waiting for one to become available - uint64_t elapsedTime_t, networkWaitStartTime_t = mach_absolute_time(); - Nanoseconds elapsedTime; - while (![self _isCurrentHostReachable]) { - elapsedTime_t = mach_absolute_time() - networkWaitStartTime_t; - elapsedTime = AbsoluteToNanoseconds(*(AbsoluteTime *)&(elapsedTime_t)); - if (((double)UnsignedWideToUInt64(elapsedTime)) * 1e-9 > 5) break; - usleep(250000); - } - - // If there is a proxy, ensure it's disconnected and attempt to reconnect it in blocking fashion - if (connectionProxy) { - [connectionProxy setConnectionStateChangeSelector:nil delegate:nil]; - if ([connectionProxy state] != PROXY_STATE_IDLE) [connectionProxy disconnect]; - - // Loop until the proxy has disconnected or the connection timeout has passed - NSDate *proxyDisconnectStartDate = [NSDate date], *eventLoopStartDate; - while ([connectionProxy state] != PROXY_STATE_IDLE - && [[NSDate date] timeIntervalSinceDate:proxyDisconnectStartDate] < connectionTimeout) - { - eventLoopStartDate = [NSDate date]; - [[NSRunLoop currentRunLoop] runMode:NSModalPanelRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.25]]; - if ([[NSDate date] timeIntervalSinceDate:eventLoopStartDate] < 0.25) { - usleep((useconds_t)(250000 - (1000000 * [[NSDate date] timeIntervalSinceDate:eventLoopStartDate]))); - } - } - - // Reconnect the proxy, looping up to the connection timeout - [connectionProxy connect]; - - NSDate *proxyStartDate = [NSDate date], *interfaceInteractionTimer; - while (1) { - - // If the proxy has connected, break out of the loop - if ([connectionProxy state] == PROXY_STATE_CONNECTED) { - connectionPort = [connectionProxy localPort]; - break; - } - - // If the proxy connection attempt time has exceeded the timeout, abort. - if ([[NSDate date] timeIntervalSinceDate:proxyStartDate] > (connectionTimeout + 1)) { - [connectionProxy disconnect]; - break; - } - - // Process events for a short time, allowing dialogs to be shown but waiting for - // the proxy. Capture how long this interface action took, standardising the - // overall time and extending the connection timeout by any interface time. - interfaceInteractionTimer = [NSDate date]; - [[NSRunLoop mainRunLoop] runMode:NSModalPanelRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.25]]; - //[[NSRunLoop currentRunLoop] runMode:NSModalPanelRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.25]]; - if ([[NSDate date] timeIntervalSinceDate:interfaceInteractionTimer] < 0.25) { - usleep((useconds_t)(250000 - (1000000 * [[NSDate date] timeIntervalSinceDate:interfaceInteractionTimer]))); - } - if ([connectionProxy state] == PROXY_STATE_WAITING_FOR_AUTH) { - proxyStartDate = [proxyStartDate addTimeInterval:[[NSDate date] timeIntervalSinceDate:interfaceInteractionTimer]]; - } - } - - currentProxyState = [connectionProxy state]; - [connectionProxy setConnectionStateChangeSelector:@selector(connectionProxyStateChange:) delegate:self]; - } - - [self unlockConnection]; - if (!connectionProxy || [connectionProxy state] == PROXY_STATE_CONNECTED) { - - // Attempt to reinitialise the connection - if this fails, it will still be set to NULL. - if (mConnection == NULL) { - mConnection = mysql_init(NULL); - } - - if (mConnection != NULL) { - - // Attempt to reestablish the connection - [self connect]; - } - } - - // If the connection was successfully established, reselect the old database and encoding if appropriate. - if (mConnected) { - if (currentDatabase) { - [self selectDB:currentDatabase]; - } - - if (currentEncoding) { - [self setEncoding:currentEncoding]; - [self setEncodingUsesLatin1Transport:currentEncodingUsesLatin1Transport]; - } - } - else { - [self setLastErrorMessage:nil]; - - // Default to retry - MCPConnectionCheck failureDecision = MCPConnectionCheckReconnect; - - // Ask delegate what to do - if (delegateSupportsConnectionLostDecisions) { - failureDecision = [self delegateDecisionForLostConnection]; - } - - switch (failureDecision) { - case MCPConnectionCheckDisconnect: - [self setLastErrorMessage:NSLocalizedString(@"User triggered disconnection", @"User triggered disconnection")]; - userTriggeredDisconnect = YES; - [reconnectionPool release]; - isReconnecting = NO; - return NO; - default: - [reconnectionPool release]; - isReconnecting = NO; - return [self reconnect]; - } - } - - [reconnectionPool release]; - isReconnecting = NO; - return mConnected; -} - -/** - * Returns YES if the MCPConnection is connected to a DB, NO otherwise. - */ -- (BOOL)isConnected -{ - return mConnected; -} - -/** - * Returns YES if the MCPConnection is connected to a server via SSL, NO otherwise. - */ -- (BOOL)isConnectedViaSSL -{ - if (![self isConnected]) return NO; - return (mysql_get_ssl_cipher(mConnection))?YES:NO; -} - -/** - * Returns YES if the user chose to disconnect at the last "connection failure" - * prompt, NO otherwise. - */ -- (BOOL)userTriggeredDisconnect -{ - return userTriggeredDisconnect; -} - -/** - * Checks if the connection to the server is still on. - * If not, tries to reconnect (changing no parameters from the MYSQL pointer). - * This method just uses mysql_ping(). - */ -- (BOOL)checkConnection -{ - if (!mConnected) return NO; - - BOOL connectionVerified = FALSE; - - // If the connection is currently locked, it's probably in use - no need to check - // the connection. - if ([connectionLock condition] == MCPConnectionBusy) { - - // However if a ping thread is active, might be a background ping - wait for it - // to complete, then check the connection. - if (pingThreadActive) { - while (pingThreadActive) { - usleep(10000); - } - return [self checkConnection]; - } - - return YES; - } - - // Check whether the connection is still operational via a wrapped version of MySQL ping. - connectionVerified = [self pingConnectionUsingLoopDelay:400]; - - // If the connection doesn't appear to be responding, and we can still attempt an automatic - // reconnect (only once each connection - eg an automatic reconnect failure prevents loops, - // but an automatic reconnect success resets the flag for another attempt in future) - if (!connectionVerified && automaticReconnectAttempts < 1) { - automaticReconnectAttempts++; - - // Note that a return of "NO" here has already asked the user, so if reconnect fails, - // return failure. - if ([self reconnect]) { - return YES; - } - return NO; - } - - // If automatic reconnect cannot be used, show a dialog asking how to proceed - if (!connectionVerified) { - - // Ask delegate what to do, defaulting to "disconnect". - MCPConnectionCheck failureDecision = MCPConnectionCheckDisconnect; - if (delegateSupportsConnectionLostDecisions) { - failureDecision = [self delegateDecisionForLostConnection]; - } - - switch (failureDecision) { - - // 'Reconnect' has been selected. Request a reconnect, and retry. - case MCPConnectionCheckReconnect: - [self reconnect]; - - return [self checkConnection]; - - // 'Disconnect' has been selected. The parent window should already have - // triggered UI-specific actions, and may have disconnected already; if - // not, disconnect, and clean up. - case MCPConnectionCheckDisconnect: - if (mConnected) [self disconnect]; - [self setLastErrorMessage:NSLocalizedString(@"User triggered disconnection", @"User triggered disconnection")]; - userTriggeredDisconnect = YES; - return NO; - - // 'Retry' has been selected - return a recursive call. - case MCPConnectionCheckRetry: - return [self checkConnection]; - } - - // If a connection exists, check whether the thread id differs; if so, the connection has - // probably been reestablished and we need to reset the connection encoding - } else if (connectionThreadId != mConnection->thread_id) [self restoreConnectionDetails]; - - return connectionVerified; -} - -/** - * Restore the connection encoding details as necessary based on the delegate-provided - * details. - */ -- (void)restoreConnectionDetails -{ - connectionThreadId = mConnection->thread_id; - connectionStartTime = mach_absolute_time(); - [self fetchMaxAllowedPacket]; - - [self setEncoding:encoding]; - [self setEncodingUsesLatin1Transport:encodingUsesLatin1Transport]; -} - -/** - * Allow controlling over whether queries are allowed to retry after a connection failure. - * This defaults to YES on init, and is intended to allow temporary disabling in situations - * where the query result is checked and displayed to the user without any repurcussions on - * failure. - */ -- (void)setAllowQueryRetries:(BOOL)allow -{ - retryAllowed = allow; -} - -/** - * Retrieve the time elapsed since the connection was established, in seconds. - * This time is retrieved in a monotonically increasing fashion and is high - * precision; it is used internally for query timing, and is reset on reconnections. - */ -- (double)timeConnected -{ - if (connectionStartTime == 0) return -1; - - uint64_t currentTime_t = mach_absolute_time() - connectionStartTime; - Nanoseconds elapsedTime = AbsoluteToNanoseconds(*(AbsoluteTime *)&(currentTime_t)); - - return (((double)UnsignedWideToUInt64(elapsedTime)) * 1e-9); -} - -#pragma mark - -#pragma mark Pinging and keepalive - -/** - * This function provides a method of pinging the remote server while also enforcing - * the specified connection time. This is required because low-level net reads can - * block indefinitely if the remote server disappears or on network issues - setting - * the MYSQL_OPT_READ_TIMEOUT (and the WRITE equivalent) would "fix" ping, but cause - * long queries to be terminated. - * The supplied loop delay number controls how tight the thread checking loop is, in - * microseconds, to allow differentiating foreground and background pings. - * Unlike mysql_ping, this function returns FALSE on failure and TRUE on success. - */ -- (BOOL)pingConnectionUsingLoopDelay:(NSUInteger)loopDelay -{ - if (!mConnected) return NO; - - uint64_t pingStartTime_t, currentTime_t; - Nanoseconds elapsedNanoseconds; - BOOL threadCancelled = NO; - - // Set up a query lock - [self lockConnection]; - - lastPingSuccess = NO; - lastPingBlocked = NO; - pingThreadActive = YES; - - // Use a ping timeout defaulting to thirty seconds, but using the connection timeout if set - NSInteger pingTimeout = 30; - if (connectionTimeout > 0) pingTimeout = connectionTimeout; - - // Set up a struct containing details the ping task will need - MCPConnectionPingDetails pingDetails; - pingDetails.mySQLConnection = mConnection; - pingDetails.lastPingSuccessPointer = &lastPingSuccess; - pingDetails.pingActivePointer = &pingThreadActive; - - // Create a pthread for the ping - pthread_attr_t attr; - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - pthread_create(&pingThread, &attr, (void *)&backgroundPingTask, &pingDetails); - - // Record the ping start time - pingStartTime_t = mach_absolute_time(); - - // Loop until the ping completes - do { - usleep((useconds_t)loopDelay); - - // If the ping timeout has been exceeded, force a timeout; double-check that the - // thread is still active. - currentTime_t = mach_absolute_time() - pingStartTime_t ; - elapsedNanoseconds = AbsoluteToNanoseconds(*(AbsoluteTime *)&(currentTime_t)); - if (((double)UnsignedWideToUInt64(elapsedNanoseconds)) * 1e-9 > pingTimeout && pingThreadActive && !threadCancelled) { - pthread_cancel(pingThread); - threadCancelled = YES; - - // If the timeout has been exceeded by an additional two seconds, and the thread is - // still active, kill the thread. This can occur in certain network conditions causing - // a blocking read. - } else if (((double)UnsignedWideToUInt64(elapsedNanoseconds)) * 1e-9 > (pingTimeout + 2) && pingThreadActive) { - pthread_kill(pingThread, SIGUSR1); - pingThreadActive = NO; - lastPingBlocked = YES; - } - } while (pingThreadActive); - - // Clean up - pingThread = NULL; - pthread_attr_destroy(&attr); - - // Unlock the connection - [self unlockConnection]; - - return lastPingSuccess; -} - -/** - * Actually perform a keepalive ping - intended for use within a pthread. - */ -void backgroundPingTask(void *ptr) -{ - MCPConnectionPingDetails *pingDetails = (MCPConnectionPingDetails *)ptr; - - // Set up a cleanup routine - pthread_cleanup_push(pingThreadCleanup, pingDetails); - - // Set up a signal handler for SIGUSR1, to handle forced timeouts. - signal(SIGUSR1, forceThreadExit); - - // Perform a ping - *(pingDetails->lastPingSuccessPointer) = (BOOL)(!mysql_ping(pingDetails->mySQLConnection)); - - // Call the cleanup routine - pthread_cleanup_pop(1); -} - -/** - * Support forcing a thread to exit as a result of a signal. - */ -void forceThreadExit(int signalNumber) -{ - pthread_exit(NULL); -} - -void pingThreadCleanup(void *pingDetails) -{ - MCPConnectionPingDetails *pingDetailsStruct = pingDetails; - *(pingDetailsStruct->pingActivePointer) = NO; -} - -/** - * Keeps a connection alive by running a ping. - * This method is called every ten seconds and spawns a thread which determines - * whether or not it should perform a ping. - */ -- (void)keepAlive:(NSTimer *)theTimer -{ - - // Do nothing if not connected or if keepalive is disabled - if (!mConnected || !useKeepAlive) return; - - // Check to see whether a ping is required. First, compare the last query - // and keepalive times against the keepalive interval. - // Compare against interval-1 to allow default keepalive intervals to repeat - // at the correct intervals (eg no timer interval delay). - double timeConnected = [self timeConnected]; - if (timeConnected - lastQueryExecutedAtTime < keepAliveInterval - 1 - || timeConnected - lastKeepAliveTime < keepAliveInterval - 1) - { - return; - } - - // Attempt to lock the connection. If the connection is currently busy, - // we don't need a ping. - if (![self tryLockConnection]) return; - [self unlockConnection]; - - // Store the ping time - lastKeepAliveTime = timeConnected; - - [NSThread detachNewThreadSelector:@selector(threadedKeepAlive) toTarget:self withObject:nil]; -} - -/** - * A threaded keepalive to avoid blocking the interface. Performs safety - * checks, and then creates a child pthread to actually ping the connection, - * forcing the thread to close after the timeout if it hasn't closed already. - */ -- (void)threadedKeepAlive -{ - - // If the maximum number of ping failures has been reached, trigger a reconnect - if (lastPingBlocked || pingFailureCount >= 3) { - NSAutoreleasePool *connectionPool = [[NSAutoreleasePool alloc] init]; - [self reconnect]; - [connectionPool drain]; - return; - } - - // Otherwise, perform a background ping. - BOOL pingResult = [self pingConnectionUsingLoopDelay:10000]; - if (pingResult) { - pingFailureCount = 0; - } else { - pingFailureCount++; - } -} - -#pragma mark - -#pragma mark Server versions - -/** - * Return the server version string, or nil on failure. - */ -- (NSString *)serverVersionString -{ - if (serverVersionString) { - return [NSString stringWithString:serverVersionString]; - } - - return nil; -} - -/** - * rReturn the server major version or -1 on fail - */ -- (NSInteger)serverMajorVersion -{ - - if (serverVersionString != nil) { - return [[[serverVersionString componentsSeparatedByString:@"."] objectAtIndex:0] integerValue]; - } - - return -1; -} - -/** - * Return the server minor version or -1 on fail - */ -- (NSInteger)serverMinorVersion -{ - if (serverVersionString != nil) { - return [[[serverVersionString componentsSeparatedByString:@"."] objectAtIndex:1] integerValue]; - } - - return -1; -} - -/** - * Return the server release version or -1 on fail - */ -- (NSInteger)serverReleaseVersion -{ - if (serverVersionString != nil) { - NSString *s = [[serverVersionString componentsSeparatedByString:@"."] objectAtIndex:2]; - return [[[s componentsSeparatedByString:@"-"] objectAtIndex:0] integerValue]; - } - - return -1; -} - -#pragma mark - -#pragma mark MySQL defaults - -/** - * This class is used to keep a connection with a MySQL server, it correspond to the MYSQL structure of the C API, or the database handle of the PERL DBI/DBD interface. - * - * You have to start any work on a MySQL server by getting a working MCPConnection object. - * - * Most likely you will use this kind of code: - * - * - * MCPConnection *theConnec = [MCPConnection alloc]; - * MCPResult *theRes; - * - * theConnec = [theConnec initToHost:@"albert.com" withLogin:@"toto" password:@"albert" usingPort:0]; - * [theConnec selectDB:@"db1"]; - * theRes = [theConnec queryString:@"select * from table1"]; - * ... - * - * Failing to properly release your MCPConnection(s) object might cause a MySQL crash!!! (recovered if the server was started using mysqld_safe). - * - * Gets a proper Locale dictionary to use formater to parse strings from MySQL. - * For example strings representing dates should give a proper Locales for use with methods such as NSDate::dateWithNaturalLanguageString: locales: - */ -+ (NSDictionary *)getMySQLLocales -{ - NSMutableDictionary *theLocalDict = [NSMutableDictionary dictionaryWithCapacity:12]; - - [theLocalDict setObject:@"." forKey:@"NSDecimalSeparator"]; - - return [NSDictionary dictionaryWithDictionary:theLocalDict]; -} - -/** - * Gets a proper NSStringEncoding according to the given MySQL charset. - */ -+ (NSStringEncoding) encodingForMySQLEncoding:(const char *)mysqlEncoding -{ - // Unicode encodings: - if (!strncmp(mysqlEncoding, "utf8", 4)) { - return NSUTF8StringEncoding; - } - if (!strncmp(mysqlEncoding, "ucs2", 4)) { - return NSUnicodeStringEncoding; - } - - // Roman alphabet encodings: - if (!strncmp(mysqlEncoding, "ascii", 5)) { - return NSASCIIStringEncoding; - } - if (!strncmp(mysqlEncoding, "latin1", 6)) { - return NSISOLatin1StringEncoding; - } - if (!strncmp(mysqlEncoding, "macroman", 8)) { - return NSMacOSRomanStringEncoding; - } - - // Roman alphabet with central/east european additions: - if (!strncmp(mysqlEncoding, "latin2", 6)) { - return NSISOLatin2StringEncoding; - } - if (!strncmp(mysqlEncoding, "cp1250", 6)) { - return NSWindowsCP1250StringEncoding; - } - if (!strncmp(mysqlEncoding, "win1250", 7)) { - return NSWindowsCP1250StringEncoding; - } - if (!strncmp(mysqlEncoding, "cp1257", 6)) { - return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingWindowsBalticRim); - } - - // Additions for Turkish: - if (!strncmp(mysqlEncoding, "latin5", 6)) { - return NSWindowsCP1254StringEncoding; - } - - // Greek: - if (!strncmp(mysqlEncoding, "greek", 5)) { - return NSWindowsCP1253StringEncoding; - } - - // Cyrillic: - if (!strncmp(mysqlEncoding, "win1251ukr", 6)) { - return NSWindowsCP1251StringEncoding; - } - if (!strncmp(mysqlEncoding, "cp1251", 6)) { - return NSWindowsCP1251StringEncoding; - } - if (!strncmp(mysqlEncoding, "koi8_ru", 6)) { - return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingKOI8_R); - } - if (!strncmp(mysqlEncoding, "koi8_ukr", 6)) { - return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingKOI8_R); - } - - // Arabic: - if (!strncmp(mysqlEncoding, "cp1256", 6)) { - return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingWindowsArabic); - } - - // Hebrew: - if (!strncmp(mysqlEncoding, "hebrew", 6)) { - CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingISOLatinHebrew); - } - - // Asian: - if (!strncmp(mysqlEncoding, "ujis", 4)) { - return NSJapaneseEUCStringEncoding; - } - if (!strncmp(mysqlEncoding, "sjis", 4)) { - return NSShiftJISStringEncoding; - } - if (!strncmp(mysqlEncoding, "big5", 4)) { - return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingBig5); - } - if (!strncmp(mysqlEncoding, "euc_kr", 6)) { - return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingEUC_KR); - } - if (!strncmp(mysqlEncoding, "euckr", 5)) { - return CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingEUC_KR); - } - - // Default to iso latin 1, even if it is not exact (throw an exception?) - NSLog(@"WARNING: unknown name for MySQL encoding '%s'!\n\t\tFalling back to iso-latin1.", mysqlEncoding); - - return NSISOLatin1StringEncoding; -} - -/** - * Gets a MySQL charset for the given NSStringEncoding. - * If the NSStringEncoding was not matched, nil is returned. - */ -+ (NSString *) mySQLEncodingForStringEncoding:(NSStringEncoding)stringEncoding -{ - switch (stringEncoding) { - - // Unicode encodings: - case NSUTF8StringEncoding: - return @"utf8"; - case NSUnicodeStringEncoding: - return @"ucs2"; - - // Roman alphabet encodings: - case NSASCIIStringEncoding: - return @"ascii"; - case NSISOLatin1StringEncoding: - case NSWindowsCP1252StringEncoding: - return @"latin1"; - case NSMacOSRomanStringEncoding: - return @"macroman"; - - // Roman alphabet with central/east european additions: - case NSISOLatin2StringEncoding: - return @"latin2"; - case NSWindowsCP1250StringEncoding: - return @"cp1250"; - - // Turkish - case NSWindowsCP1254StringEncoding: - return @"latin5"; - - // Greek: - case NSWindowsCP1253StringEncoding: - return @"greek"; - - // Cyrillic: - case NSWindowsCP1251StringEncoding: - return @"cp1251"; - - // Asian: - case NSJapaneseEUCStringEncoding: - return @"ujis"; - case NSShiftJISStringEncoding: - return @"sjis"; - - default: - return nil; - } -} - -/** - * Returns the default charset of the library mysqlclient used. - */ -+ (NSStringEncoding)defaultMySQLEncoding -{ - return [MCPConnection encodingForMySQLEncoding:"utf8_general_ci"]; -} - -#pragma mark - -#pragma mark Class maintenance - -/** - * - */ -+ (void)setTruncateLongFieldInLogs:(BOOL)iTruncFlag -{ - sTruncateLongFieldInLogs = iTruncFlag; -} - -/** - * - */ -+ (BOOL)truncateLongField -{ - return sTruncateLongFieldInLogs; -} - -/** - * This method is to be used for getting special option for a connection, in which case the MCPConnection - * has to be inited with the init method, then option are selected, finally connection is done using one - * of the connect methods: - * - * MCPConnection *theConnect = [[MCPConnection alloc] init]; - * - * [theConnect setConnectionOption: option toValue: value]; - * [theConnect connectToHost:albert.com withLogin:@"toto" password:@"albert" port:0]; - * - */ -- (BOOL)setConnectionOption:(NSInteger)option toValue:(BOOL)value -{ - // So far do nothing except for testing if it's proper time for setting option - // What about if some option where setted and a connection is made again with connectTo... - if ((mConnected) || (! mConnection)) { - return FALSE; - } - - if (value) { //Set this option to true - mConnectionFlags |= option; - } - else { //Set this option to false - mConnectionFlags &= (! option); - } - - return YES; -} - -/** - * Trigger a connection to a server using the supplied details. Any details supplied are - * stored for automatic reconnection attempts. - * - * - login is the user name - * - pass is the password corresponding to the user name - * - host is the hostname or IP adress - * - port is the TCP port to use to connect. If port = 0, uses the default port from mysql.h - * - socket is the path to the socket (for the localhost) - * - * The socket is used if the host is set to !{@"localhost"}, to an empty or a !{nil} string - */ -- (BOOL)connectWithLogin:(NSString *)login password:(NSString *)pass host:(NSString *)host port:(NSUInteger)port socket:(NSString *)aSocket -{ - - // Reset any stored connection settings - if (connectionHost) [connectionHost release], connectionHost = nil; - if (connectionLogin) [connectionLogin release], connectionLogin = nil; - if (connectionPassword) [connectionPassword release], connectionPassword = nil; - if (connectionSocket) [connectionSocket release], connectionSocket = nil; - - // Determine whether a socket connection should be made - if (!host || ![host length] || [host isEqualToString:@"localhost"]) { - if (!aSocket || ![aSocket length]) { - aSocket = [self findSocketPath]; - if (!aSocket) aSocket = @""; - } - connectionSocket = [[NSString alloc] initWithString:aSocket]; - connectionPort = 0; - - // Otherwise, use host and port details - } else { - connectionHost = [[NSString alloc] initWithString:host]; - connectionPort = port; - } - - // Store the username - connectionLogin = [[NSString alloc] initWithString:(login?login:@"")]; - - // Store the password if supplied. It is more secure to allow MCPConnection to ask the - // delegate to retrieve details - see delegate method keychainPasswordForConnection:) - if (pass) connectionPassword = [[NSString alloc] initWithString:pass]; - - // Trigger a connection and return the resulting status - return [self connect]; -} - -/** - * Selects a database to work with. - * - * The MCPConnection object needs to be properly inited and connected to a server. - * If a connection is not yet set or the selection of the database didn't work, returns NO. Returns YES in normal cases where the database is properly selected. - * - * So far, if dbName is a nil pointer it will return NO (as if it cannot connect), most likely this will throw an exception in the future. - */ -- (BOOL)selectDB:(NSString *) dbName -{ - if (!mConnected) return NO; - - if (![self checkConnection]) return NO; - - // Here we should throw an exception, impossible to select a databse if the string is indeed a nil pointer - if (dbName == nil) return NO; - - if (mConnected) { - - // Ensure the change is made in UTF8 to avoid encoding problems - BOOL changeEncoding = ![[self encoding] isEqualToString:@"utf8"]; - if (changeEncoding) { - [self storeEncodingForRestoration]; - [self setEncoding:@"utf8"]; - } - - const char *theDBName = [self cStringFromString:dbName]; - [self lockConnection]; - if (0 == mysql_select_db(mConnection, theDBName)) { - [self unlockConnection]; - return YES; - } - [self unlockConnection]; - - if (changeEncoding) [self restoreStoredEncoding]; - } - - [self setLastErrorMessage:nil]; - - lastQueryErrorId = mysql_errno(mConnection); - - if (connectionProxy) { - [connectionProxy disconnect]; - } - - return NO; -} - -#pragma mark - -#pragma mark Error information - -/** - * Returns whether the last query errored or not. - */ -- (BOOL)queryErrored -{ - return (lastQueryErrorMessage)?YES:NO; -} - -/** - * Returns a string with the last MySQL error message on the connection. - */ -- (NSString *)getLastErrorMessage -{ - return lastQueryErrorMessage; -} - -/** - * Sets the string for the last MySQL error message on the connection, - * managing memory as appropriate. Supply a nil string to store the - * last error on the connection. - */ -- (void)setLastErrorMessage:(NSString *)theErrorMessage -{ - if (!theErrorMessage) theErrorMessage = [self stringWithCString:mysql_error(mConnection)]; - - if (lastQueryErrorMessage) [lastQueryErrorMessage release], lastQueryErrorMessage = nil; - if (theErrorMessage && [theErrorMessage length]) lastQueryErrorMessage = [[NSString alloc] initWithString:theErrorMessage]; -} - -/** - * Returns the ErrorID of the last MySQL error on the connection. - */ -- (NSUInteger)getLastErrorID -{ - return lastQueryErrorId; -} - -/** - * Determines whether a supplied error number can be classed as a connection error. - */ -+ (BOOL)isErrorNumberConnectionError:(NSInteger)theErrorNumber -{ - switch (theErrorNumber) { - case 2001: // CR_SOCKET_CREATE_ERROR - case 2002: // CR_CONNECTION_ERROR - case 2003: // CR_CONN_HOST_ERROR - case 2004: // CR_IPSOCK_ERROR - case 2005: // CR_UNKNOWN_HOST - case 2006: // CR_SERVER_GONE_ERROR - case 2007: // CR_VERSION_ERROR - case 2009: // CR_WRONG_HOST_INFO - case 2012: // CR_SERVER_HANDSHAKE_ERR - case 2013: // CR_SERVER_LOST - case 2027: // CR_MALFORMED_PACKET - case 2032: // CR_DATA_TRUNCATED - case 2047: // CR_CONN_UNKNOW_PROTOCOL - case 2048: // CR_INVALID_CONN_HANDLE - case 2050: // CR_FETCH_CANCELED - case 2055: // CR_SERVER_LOST_EXTENDED - return YES; - } - - return NO; -} - -/** - * Update error messages - for example after a streaming result has finished processing. - */ -- (void)updateErrorStatuses -{ - [self setLastErrorMessage:nil]; - lastQueryErrorId = mysql_errno(mConnection); -} - -#pragma mark - -#pragma mark Queries - -/** - * Takes a NSData object and transform it in a proper string for sending to the server in between quotes. - */ -- (NSString *)prepareBinaryData:(NSData *)theData -{ - const char *theCDataBuffer = [theData bytes]; - unsigned long theLength = [theData length]; - char *theCEscBuffer = (char *)calloc(sizeof(char),(theLength*2) + 1); - NSString *theReturn; - - // mysql_hex_string requires an active connection. - // If no connection is present, and no automatic reconnections can be made, return nil. - if (!mConnected && ![self checkConnection]) { - - // Inform the delegate that there is no connection available - if (delegate && [delegate respondsToSelector:@selector(noConnectionAvailable:)]) { - [delegate noConnectionAvailable:self]; - } - - return nil; - } - - // If thirty seconds have elapsed since the last query, check the connection. - // This minimises the impact of continuous additional connection checks, but handles - // most network issues and keeps high read/write timeouts for long queries. - if ([self timeConnected] - lastQueryExecutedAtTime > 30) { - if (![self checkConnection]) return nil; - lastQueryExecutedAtTime = [self timeConnected]; - } - - // Using the mysql_hex_string function : (NO other solution found to be able to support blobs while using UTF-8 charset). - mysql_hex_string(theCEscBuffer, theCDataBuffer, theLength); - theReturn = [NSString stringWithFormat:@"%s", theCEscBuffer]; - free (theCEscBuffer); - return theReturn; -} - -/** - * Takes a string and escape any special character (like single quote : ') so that the string can be used directly in a query. - */ -- (NSString *)prepareString:(NSString *)theString -{ - NSData *theCData = [theString dataUsingEncoding:stringEncoding allowLossyConversion:YES]; - unsigned long theLength = [theCData length]; - char *theCEscBuffer; - NSString *theReturn; - unsigned long theEscapedLength; - - if (theString == nil) { - // In the mean time, no one should call this method on a nil string, the test should be done before by the user of this method. - return @""; - } - - // mysql_real_escape_string requires an active connection. - // If no connection is present, and no automatic reconnections can be made, return nil. - if (!mConnected && ![self checkConnection]) { - - // Inform the delegate that there is no connection available - if (delegate && [delegate respondsToSelector:@selector(noConnectionAvailable:)]) { - [delegate noConnectionAvailable:self]; - } - - return nil; - } - - // If thirty seconds have elapsed since the last query, check the connection. - // This minimises the impact of continuous additional connection checks, but handles - // most network issues and keeps high read/write timeouts for long queries. - if ([self timeConnected] - lastQueryExecutedAtTime > 30) { - if (![self checkConnection]) return nil; - lastQueryExecutedAtTime = [self timeConnected]; - } - - theCEscBuffer = (char *)calloc(sizeof(char),(theLength * 2) + 1); - theEscapedLength = mysql_real_escape_string(mConnection, theCEscBuffer, [theCData bytes], theLength); - theReturn = [[NSString alloc] initWithData:[NSData dataWithBytes:theCEscBuffer length:theEscapedLength] encoding:stringEncoding]; - free(theCEscBuffer); - - return [theReturn autorelease]; -} - -/** - * Use the class of the theObject to know how it should be prepared for usage with the database. - * If theObject is a string, this method will put single quotes to both its side and escape any necessary - * character using prepareString: method. If theObject is NSData, the prepareBinaryData: method will be - * used instead. - * - * For NSNumber object, the number is just quoted, for calendar dates, the calendar date is formatted in - * the preferred format for the database. - */ -- (NSString *)quoteObject:(id)theObject -{ - if ((! theObject) || ([theObject isNSNull])) { - return @"NULL"; - } - - if ([theObject isKindOfClass:[NSData class]]) { - return [NSString stringWithFormat:@"X'%@'", [self prepareBinaryData:(NSData *) theObject]]; - } - - if ([theObject isKindOfClass:[NSString class]]) { - return [NSString stringWithFormat:@"'%@'", [self prepareString:(NSString *) theObject]]; - } - - if ([theObject isKindOfClass:[NSNumber class]]) { - return [NSString stringWithFormat:@"%@", theObject]; - } - - if ([theObject isKindOfClass:[NSCalendarDate class]]) { - return [NSString stringWithFormat:@"'%@'", [(NSCalendarDate *)theObject descriptionWithCalendarFormat:@"%Y-%m-%d %H:%M:%S"]]; - } - - return [NSString stringWithFormat:@"'%@'", [self prepareString:[theObject description]]]; -} - -/** - * Takes a query string and return an MCPResult object holding the result of the query. - * The returned MCPResult is not retained, the client is responsible for that (it's autoreleased before being returned). If no field are present in the result (like in an insert query), will return nil (#{difference from previous version implementation}). Though, if their is at least one field the result will be non nil (even if no row are selected). - * - * Note that if you want to use this method with binary data (in the query), you should use !{prepareBinaryData:} to include the binary data in the query string. Also if you want to include in your query a string containing any special character (\, ', " ...) then you should use !{prepareString}. - */ -- (MCPResult *)queryString:(NSString *)query -{ - return [self queryString:query usingEncoding:stringEncoding streamingResult:MCPStreamingNone]; -} - -/** - * Takes a query string and returns an MCPStreamingResult representing the result of the query. - * If no fields are present in the result, nil will be returned. - * Uses safe/fast mode, which may use more memory as results are downloaded. - */ -- (MCPStreamingResult *)streamingQueryString:(NSString *)query -{ - return [self queryString:query usingEncoding:stringEncoding streamingResult:MCPStreamingFast]; -} - -/** - * Takes a query string and returns an MCPStreamingResult representing the result of the query. - * If no fields are present in the result, nil will be returned. - * Can be used in either fast/safe mode, where data is downloaded as fast as possible to avoid - * blocking the server, or in full streaming mode for lowest memory usage but potentially blocking - * the table. - */ -- (MCPStreamingResult *)streamingQueryString:(NSString *)query useLowMemoryBlockingStreaming:(BOOL)fullStream -{ - return [self queryString:query usingEncoding:stringEncoding streamingResult:(fullStream?MCPStreamingLowMem:MCPStreamingFast)]; -} - -/** - * Error checks connection extensively - if this method fails due to a connection error, it will ask how to - * proceed and loop depending on the status, not returning control until either the query has been executed - * and the result can be returned or the connection and document have been closed. - */ -- (id)queryString:(NSString *) query usingEncoding:(NSStringEncoding)aStringEncoding streamingResult:(NSInteger) streamResultType -{ - MCPResult *theResult = nil; - double queryStartTime, queryExecutionTime; - const char *theCQuery; - unsigned long theCQueryLength; - NSInteger queryResultCode; - NSInteger queryErrorId = 0; - my_ulonglong queryAffectedRows = 0; - NSInteger currentMaxAllowedPacket = -1; - BOOL isQueryRetry = NO; - NSString *queryErrorMessage = nil; - - // Reset the query cancelled boolean - queryCancelled = NO; - - // If no connection is present, and no automatic reconnections can be made, return nil. - if (!mConnected && ![self checkConnection]) { - // Write a log entry - if ([delegate respondsToSelector:@selector(queryGaveError:connection:)]) [delegate queryGaveError:@"No connection available!" connection:self]; - - // Notify that the query has been performed - [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadWithName:@"SMySQLQueryHasBeenPerformed" object:delegate]; - - // Inform the delegate that there is no connection available - if (delegate && [delegate respondsToSelector:@selector(noConnectionAvailable:)]) { - [delegate noConnectionAvailable:self]; - } - - return nil; - } - - // Inform the delegate about the query if logging is enabled and delegate responds to willQueryString:connection: - if (delegateQueryLogging && delegateResponseToWillQueryString) { - [delegate willQueryString:query connection:self]; - } - - // If thirty seconds have elapsed since the last query, check the connection. - // This minimises the impact of continuous additional connection checks, but handles - // most network issues and keeps high read/write timeouts for long queries. - if ([self timeConnected] - lastQueryExecutedAtTime > 30 - && ![self checkConnection]) - { - return nil; - } - - // Derive the query string in the correct encoding - NSData *d = NSStringDataUsingLossyEncoding(query, aStringEncoding, 1); - theCQuery = [d bytes]; - // Set the length of the current query - theCQueryLength = [d length]; - - // Check query length against max_allowed_packet; if it is larger, the - // query would error, so if max_allowed_packet is editable for the user - // increase it for the current session and reconnect. - if (maxAllowedPacketSize < theCQueryLength) { - - if (isMaxAllowedPacketEditable) { - - currentMaxAllowedPacket = maxAllowedPacketSize; - [self setMaxAllowedPacketTo:strlen(theCQuery)+1024 resetSize:NO]; - [self reconnect]; - - } - else { - NSString *errorMessage = [NSString stringWithFormat:NSLocalizedString(@"The query length of %lu bytes is larger than max_allowed_packet size (%lu).", - @"error message if max_allowed_packet < query size"), - (unsigned long)theCQueryLength, maxAllowedPacketSize]; - - // Write a log entry and update the connection error messages for those uses that check it - if ([delegate respondsToSelector:@selector(queryGaveError:connection:)]) [delegate queryGaveError:errorMessage connection:self]; - [self setLastErrorMessage:errorMessage]; - - // Notify that the query has been performed - [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadWithName:@"SMySQLQueryHasBeenPerformed" object:delegate]; - - // Show an error alert while resetting - if ([delegate respondsToSelector:@selector(showErrorWithTitle:message:)]) - [delegate showErrorWithTitle:NSLocalizedString(@"Error", @"error") message:errorMessage]; - else - NSRunAlertPanel(NSLocalizedString(@"Error", @"error"), errorMessage, @"OK", nil, nil); - - return nil; - } - } - - // In a loop to allow one reattempt, perform the query. - while (1) { - - // If this query has failed once already, check the connection - if (isQueryRetry) { - if (![self checkConnection]) { - if (queryErrorMessage) [queryErrorMessage release], queryErrorMessage = nil; - - // Notify that the query has been performed - [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadWithName:@"SMySQLQueryHasBeenPerformed" object:delegate]; - return nil; - } - } - - [self lockConnection]; - - // Run (or re-run) the query, timing the execution time of the query - note - // that this time will include network lag. - queryStartTime = [self timeConnected]; - queryResultCode = mysql_real_query(mConnection, theCQuery, theCQueryLength); - lastQueryExecutedAtTime = [self timeConnected]; - queryExecutionTime = lastQueryExecutedAtTime - queryStartTime; - - // On success, capture the results - if (0 == queryResultCode) { - - queryAffectedRows = mysql_affected_rows(mConnection); - - if (mysql_field_count(mConnection) != 0) { - - // For normal result sets, fetch the results and unlock the connection - if (streamResultType == MCPStreamingNone) { - theResult = [[MCPResult alloc] initWithMySQLPtr:mConnection encoding:stringEncoding timeZone:mTimeZone]; - if (!queryCancelled || !queryCancelUsedReconnect) { - [self unlockConnection]; - } - - // For streaming result sets, fetch the result pointer and leave the connection locked - } else if (streamResultType == MCPStreamingFast) { - theResult = [[MCPStreamingResult alloc] initWithMySQLPtr:mConnection encoding:stringEncoding timeZone:mTimeZone connection:self withFullStreaming:NO]; - } else if (streamResultType == MCPStreamingLowMem) { - theResult = [[MCPStreamingResult alloc] initWithMySQLPtr:mConnection encoding:stringEncoding timeZone:mTimeZone connection:self withFullStreaming:YES]; - } - - // Ensure no problem occurred during the result fetch - if (mysql_errno(mConnection) != 0) { - queryErrorMessage = [self stringWithCString:mysql_error(mConnection)]; - if (queryErrorMessage) [queryErrorMessage retain]; - queryErrorId = mysql_errno(mConnection); - break; - } - } else { - [self unlockConnection]; - } - - queryErrorMessage = [[NSString alloc] initWithString:@""]; - queryErrorId = 0; - if (streamResultType == MCPStreamingNone && queryAffectedRows == (my_ulonglong)~0) { - queryAffectedRows = mysql_affected_rows(mConnection); - } - - // On failure, set the error messages and IDs - } else { - if (!queryCancelled || !queryCancelUsedReconnect) { - [self unlockConnection]; - } - - if (queryCancelled) { - if (queryErrorMessage) [queryErrorMessage release], queryErrorMessage = nil; - queryErrorMessage = [[NSString alloc] initWithString:NSLocalizedString(@"Query cancelled.", @"Query cancelled error")]; - queryErrorId = 1317; - } else { - if (queryErrorMessage) [queryErrorMessage release], queryErrorMessage = nil; - queryErrorMessage = [self stringWithCString:mysql_error(mConnection)]; - if (queryErrorMessage) [queryErrorMessage retain]; - queryErrorId = mysql_errno(mConnection); - - // If the error was a connection error, retry once - if (!isQueryRetry && retryAllowed && [MCPConnection isErrorNumberConnectionError:queryErrorId]) { - isQueryRetry = YES; - continue; - } - } - } - - break; - } - - if (streamResultType == MCPStreamingNone) { - - // If the mysql thread id has changed as a result of a connection error, - // ensure connection details are still correct - if (connectionThreadId != mConnection->thread_id) [self restoreConnectionDetails]; - - // If max_allowed_packet was changed, reset it to default - if(currentMaxAllowedPacket > -1) - [self setMaxAllowedPacketTo:currentMaxAllowedPacket resetSize:YES]; - } - - // Update error strings and IDs - lastQueryErrorId = queryErrorId; - - if (queryErrorMessage) { - [self setLastErrorMessage:queryErrorMessage]; - - [queryErrorMessage release]; - } - - lastQueryAffectedRows = queryAffectedRows; - lastQueryExecutionTime = queryExecutionTime; - - // If an error occurred, inform the delegate - if (queryResultCode & delegateResponseToWillQueryString) - [delegate queryGaveError:lastQueryErrorMessage connection:self]; - - if (!theResult) return nil; - return [theResult autorelease]; -} - -/** - * Returns the number of affected rows by the last query. Only actual queries - * supplied via queryString:, streamingQueryString:, streamingQueryString:useLowMemoryBlockingStreaming: - * or queryString:usingEncoding:streamingResult: will have their affected rows - * returned, not any "meta" type queries. - */ -- (my_ulonglong)affectedRows -{ - if (mConnected) return lastQueryAffectedRows; - - return 0; -} - -/** - * If the last query was an insert in a table having a autoindex column, returns the ID - * (autoindexed field) of the last row inserted. - */ -- (my_ulonglong)insertId -{ - if (mConnected) { - return mysql_insert_id(mConnection); - } - - return 0; -} - -/** - * Cancel the currently running query. This tries to kill the current query, and if that - * isn't possible, resets the connection. - */ -- (void) cancelCurrentQuery -{ - - // If not connected, return. - if (![self isConnected]) return; - - // Check whether a query is actually being performed - if not, also return. - if ([self tryLockConnection]) { - [self unlockConnection]; - return; - } - - // Set queryCancelled to prevent query retries - queryCancelled = YES; - - // Set up a new connection, and running a KILL QUERY via it. - MYSQL *killerConnection = mysql_init(NULL); - if (killerConnection) { - const char *theLogin = [self cStringFromString:connectionLogin]; - const char *theHost; - const char *thePass = NULL; - const char *theSocket; - void *connectionSetupStatus; - - mysql_options(killerConnection, MYSQL_OPT_CONNECT_TIMEOUT, (const void *)&connectionTimeout); - mysql_options(killerConnection, MYSQL_SET_CHARSET_NAME, "utf8"); - - // Set up the host, socket and password as per the connect method - if (!connectionHost || ![connectionHost length]) { - theHost = NULL; - } else { - theHost = [connectionHost UTF8String]; - } - if (connectionSocket == nil || ![connectionSocket length]) { - theSocket = kMCPConnectionDefaultSocket; - } else { - theSocket = [connectionSocket UTF8String]; - } - if (!connectionPassword) { - if (delegate && [delegate respondsToSelector:@selector(keychainPasswordForConnection:)]) { - thePass = [[delegate keychainPasswordForConnection:self] UTF8String]; - } - } else { - thePass = [connectionPassword UTF8String]; - } - if (useSSL) { - mysql_ssl_set(mConnection, - sslKeyFilePath ? [sslKeyFilePath UTF8String] : NULL, - sslCertificatePath ? [sslCertificatePath UTF8String] : NULL, - sslCACertificatePath ? [sslCACertificatePath UTF8String] : NULL, - NULL, - kMCPSSLCipherList); - } - - // Connect - connectionSetupStatus = mysql_real_connect(killerConnection, theHost, theLogin, thePass, NULL, (unsigned int)connectionPort, theSocket, mConnectionFlags); - thePass = NULL; - if (connectionSetupStatus) { - - // Set up a KILL query. For MySQL 5+, kill just the query; otherwise, kill the thread. - NSStringEncoding killerConnectionEncoding = [MCPConnection encodingForMySQLEncoding:mysql_character_set_name(killerConnection)]; - NSString *killQueryString; - if ([self serverMajorVersion] >= 5) { - killQueryString = [NSString stringWithFormat:@"KILL QUERY %lu", mConnection->thread_id]; - } else { - killQueryString = [NSString stringWithFormat:@"KILL %lu", mConnection->thread_id]; - } - NSData *encodedKillQueryData = NSStringDataUsingLossyEncoding(killQueryString, killerConnectionEncoding, 1); - const char *killQueryCString = [encodedKillQueryData bytes]; - unsigned long killQueryCStringLength = [encodedKillQueryData length]; - int killerReturnError = mysql_real_query(killerConnection, killQueryCString, killQueryCStringLength); - mysql_close(killerConnection); - if (killerReturnError == 0) { - queryCancelUsedReconnect = NO; - return; - } - NSLog(@"Task cancellation: kill query failed (Returned status %d)", killerReturnError); - } else { - NSLog(@"Task cancellation connection failed (error %u)", mysql_errno(killerConnection)); - } - } else { - NSLog(@"Task cancelletion MySQL init failed."); - } - - // As the attempt may have taken up to the connection timeout, check lock status - // again, returning if nothing is required. - if ([self tryLockConnection]) { - [self unlockConnection]; - return; - } - - // Reset the connection - [self unlockConnection]; - if (!isDisconnecting) [self reconnect]; - - // Set queryCancelled again to handle requery cleanups, and return. - queryCancelled = YES; - queryCancelUsedReconnect = YES; -} - -/** - * Return whether the last query was cancelled - */ -- (BOOL)queryCancelled -{ - return queryCancelled; -} - -/** - * If the last query was cancelled, returns whether that cancellation - * required a connection reset. If the last query was not cancelled - * the behaviour is undefined. - */ -- (BOOL)queryCancellationUsedReconnect -{ - return queryCancelUsedReconnect; -} - -/** - * Retrieves all remaining results and discards them. - * Necessary if we only retrieve one result, and want to discard all the others. - */ -- (void)flushMultiResults -{ - // repeat as long as there are results - while(!mysql_next_result(mConnection)) - { - MYSQL_RES *result = mysql_use_result(mConnection); - // check if the result is really a result - if (result) { - // retrieve all rows - while (mysql_fetch_row(result)); - mysql_free_result(result); - } - } -} - -#pragma mark - -#pragma mark Connection locking - -/** - * Lock the connection. This must be done before performing any operation - * that is not thread safe, eg. performing queries or pinging. - */ -- (void)lockConnection -{ - // We can only start a query as soon as the condition is MCPConnectionIdle - [connectionLock lockWhenCondition:MCPConnectionIdle]; - - // We now set the condition to MCPConnectionBusy - [connectionLock unlockWithCondition:MCPConnectionBusy]; -} - -/** - * Try locking the connection. If the connection is idle (unlocked), this method - * locks the connection and returns YES. The connection must afterwards be unlocked - * using unlockConnection. If the connection is currently busy (locked), this - * method immediately returns NO and doesn't lock the connection. - */ -- (BOOL)tryLockConnection -{ - // check if the condition is MCPConnectionIdle - if ([connectionLock tryLockWhenCondition:MCPConnectionIdle]) { - // We're allowed to use the connection! - [connectionLock unlockWithCondition:MCPConnectionBusy]; - return YES; - } else { - // Someone else is using the connection right now - return NO; - } -} - - -/** - * Unlock the connection. - */ -- (void)unlockConnection -{ - // We don't care if the connection is busy or not - [connectionLock lock]; - - // We check if the connection actually was busy. If it wasn't busy, - // it means we probably tried to unlock the connection twice. This is - // potentially dangerous, therefore we log this to the console - if ([connectionLock condition] != MCPConnectionBusy) { - NSLog(@"Tried to unlock the connection, but it wasn't locked."); - } - - // Since we connected with CLIENT_MULTI_RESULT, we must make sure there are nor more results! - // This is still a bit of a dirty hack - if (mConnected && mConnection && mConnection->net.vio && mConnection->net.buff && mysql_more_results(mConnection)) { - NSLog(@"Discarding unretrieved results. This is currently normal when using CALL."); - [self flushMultiResults]; - } - - // We tell everyone that the connection is available again! - [connectionLock unlockWithCondition:MCPConnectionIdle]; -} - -#pragma mark - -#pragma mark Database structure - -/** - * Just a fast wrapper for the more complex !{listDBsWithPattern:} method. - */ -- (MCPResult *)listDBs -{ - return [self listDBsLike:nil]; -} - -/** - * Returns a list of database which name correspond to the SQL regular expression in 'pattern'. - * The comparison is done with wild card extension : % and _. - * The result should correspond to the queryString:@"SHOW databases [LIKE wild]"; but implemented with mysql_list_dbs. - * If an empty string or nil is passed as pattern, all databases will be shown. - */ -- (MCPResult *)listDBsLike:(NSString *)dbsName -{ - if (!mConnected) return NO; - - MCPResult *theResult = nil; - MYSQL_RES *theResPtr; - - if (![self checkConnection]) return [[[MCPResult alloc] init] autorelease]; - - // Ensure UTF8 - where supported - when getting database list. - NSString *currentEncoding = [NSString stringWithString:encoding]; - BOOL currentEncodingUsesLatin1Transport = encodingUsesLatin1Transport; - [self setEncoding:@"utf8"]; - - [self lockConnection]; - if ((dbsName == nil) || ([dbsName isEqualToString:@""])) { - if ((theResPtr = mysql_list_dbs(mConnection, NULL))) { - theResult = [[MCPResult alloc] initWithResPtr: theResPtr encoding:stringEncoding timeZone:mTimeZone]; - } - else { - theResult = [[MCPResult alloc] init]; - } - } - else { - const char *theCDBsName = (const char *)[self cStringFromString:dbsName]; - - if ((theResPtr = mysql_list_dbs(mConnection, theCDBsName))) { - theResult = [[MCPResult alloc] initWithResPtr:theResPtr encoding:stringEncoding timeZone:mTimeZone]; - } - else { - theResult = [[MCPResult alloc] init]; - } - } - [self unlockConnection]; - - // Restore the connection encoding if necessary - [self setEncoding:currentEncoding]; - [self setEncodingUsesLatin1Transport:currentEncodingUsesLatin1Transport]; - - if (theResult) { - [theResult autorelease]; - } - - return theResult; -} - -/** - * Make sure a DB is selected (with !{selectDB:} method) first. - */ -- (MCPResult *)listTables -{ - return [self listTablesLike:nil]; -} - -/** - * From within a database, give back the list of table which name correspond to tablesName - * (with wild card %, _ extension). Correspond to queryString:@"SHOW tables [LIKE wild]"; uses mysql_list_tables function. - * - * If an empty string or nil is passed as tablesName, all tables will be shown. - * - * WARNING: #{produce an error if no databases are selected} (with !{selectDB:} for example). - */ -- (MCPResult *)listTablesLike:(NSString *)tablesName -{ - if (!mConnected) return NO; - - MCPResult *theResult = nil; - MYSQL_RES *theResPtr; - - if (![self checkConnection]) return [[[MCPResult alloc] init] autorelease]; - - [self lockConnection]; - if ((tablesName == nil) || ([tablesName isEqualToString:@""])) { - if ((theResPtr = mysql_list_tables(mConnection, NULL))) { - theResult = [[MCPResult alloc] initWithResPtr: theResPtr encoding:stringEncoding timeZone:mTimeZone]; - } - else { - theResult = [[MCPResult alloc] init]; - } - } - else { - const char *theCTablesName = (const char *)[self cStringFromString:tablesName]; - if ((theResPtr = mysql_list_tables(mConnection, theCTablesName))) { - theResult = [[MCPResult alloc] initWithResPtr: theResPtr encoding:stringEncoding timeZone:mTimeZone]; - } - else { - theResult = [[MCPResult alloc] init]; - } - } - - [self unlockConnection]; - - if (theResult) { - [theResult autorelease]; - } - - return theResult; -} - -- (NSArray *)listTablesFromDB:(NSString *)dbName { - return [self listTablesFromDB:dbName like:nil]; -} - -/** - * List tables in DB specified by dbName and corresponding to pattern. - * This method indeed issues a !{SHOW TABLES FROM dbName LIKE ...} query to the server. - * This is done this way to make sure the selected DB is not changed by this method. - */ -- (NSArray *)listTablesFromDB:(NSString *)dbName like:(NSString *)tablesName { - MCPResult *theResult; - if ((tablesName == nil) || ([tablesName isEqualToString:@""])) { - NSString *theQuery = [NSString stringWithFormat:@"SHOW TABLES FROM %@", - [dbName backtickQuotedString]]; - theResult = [self queryString:theQuery]; - } else { - NSString *theQuery = [NSString stringWithFormat:@"SHOW TABLES FROM %@ LIKE '%@'", - [dbName backtickQuotedString], - [tablesName backtickQuotedString]]; - theResult = [self queryString:theQuery]; - } - [theResult setReturnDataAsStrings:YES]; - NSString *theTableName; - NSMutableArray *theDBTables = [NSMutableArray array]; - - // NSLog(@"num of fields: %@; num of rows: %@", [theResult numOfFields], [theResult numOfRows]); - if ([theResult numOfRows] > 0) { - my_ulonglong i; - for ( i = 0 ; i < [theResult numOfRows] ; i++ ) { - theTableName = [[theResult fetchRowAsArray] objectAtIndex:0]; - [theDBTables addObject:theTableName]; - } - } - - return theDBTables; -} - -/** - * Just a fast wrapper for the more complex list !{listFieldsWithPattern:forTable:} method. - */ -- (MCPResult *)listFieldsFromTable:(NSString *)tableName -{ - return [self listFieldsFromTable:tableName like:nil]; -} - -/** - * Show all the fields of the table tableName which name correspond to pattern (with wild card expansion : %,_). - * Indeed, and as recommanded from mysql reference, this method is NOT using mysql_list_fields but the !{queryString:} method. - * If an empty string or nil is passed as fieldsName, all fields (of tableName) will be returned. - */ -- (MCPResult *)listFieldsFromTable:(NSString *)tableName like:(NSString *)fieldsName -{ - MCPResult *theResult; - - if ((fieldsName == nil) || ([fieldsName isEqualToString:@""])) { - NSString *theQuery = [NSString stringWithFormat:@"SHOW COLUMNS FROM %@", - [tableName backtickQuotedString]]; - theResult = [self queryString:theQuery]; - } - else { - NSString *theQuery = [NSString stringWithFormat:@"SHOW COLUMNS FROM %@ LIKE '%@'", - [tableName backtickQuotedString], - [fieldsName backtickQuotedString]]; - theResult = [self queryString:theQuery]; - } - [theResult setReturnDataAsStrings:YES]; - - return theResult; -} - -/** - * Updates the dict containing the structure of all available databases (mainly for completion/navigator) - * executed on a new connection. - * - * TODO: Split this entire method out of MCPKit if possible - */ -- (void)queryDbStructureWithUserInfo:(NSDictionary*)userInfo -{ - NSAutoreleasePool *queryPool = [[NSAutoreleasePool alloc] init]; - BOOL structureWasUpdated = NO; - - // if 'cancelQuerying' is set try to interrupt any current querying - if(userInfo && [userInfo objectForKey:@"cancelQuerying"]) - cancelQueryingDbStructure = YES; - - // Requests are queued - while(isQueryingDbStructure > 0) { usleep(1000000); } - - cancelQueryingDbStructure = NO; - - [[NSNotificationCenter defaultCenter] postNotificationName:@"SPDBStructureIsUpdating" object:delegate]; - - NSString *SPUniqueSchemaDelimiter = @"￸"; - - NSString *connectionID; - if([delegate respondsToSelector:@selector(connectionID)]) - connectionID = [NSString stringWithString:[[self delegate] connectionID]]; - else - connectionID = @"_"; - - // Re-init with already cached data from navigator controller - NSMutableDictionary *queriedStructure = [NSMutableDictionary dictionary]; - NSDictionary *dbstructure = [[self delegate] getDbStructure]; - if (dbstructure) [queriedStructure setDictionary:[NSMutableDictionary dictionaryWithDictionary:dbstructure]]; - - NSMutableArray *queriedStructureKeys = [NSMutableArray array]; - NSArray *dbStructureKeys = [[self delegate] allSchemaKeys]; - if (dbStructureKeys) [queriedStructureKeys setArray:dbStructureKeys]; - - // Retrieve all the databases known of by the delegate - NSMutableArray *connectionDatabases = [NSMutableArray array]; - [connectionDatabases addObjectsFromArray:[[self delegate] allSystemDatabaseNames]]; - [connectionDatabases addObjectsFromArray:[[self delegate] allDatabaseNames]]; - - // Add all known databases coming from connection if they aren't parsed yet - for (id db in connectionDatabases) { - NSString *dbid = [NSString stringWithFormat:@"%@%@%@", connectionID, SPUniqueSchemaDelimiter, db]; - if(![queriedStructure objectForKey:dbid]) { - structureWasUpdated = YES; - [queriedStructure setObject:db forKey:dbid]; - [queriedStructureKeys addObject:dbid]; - } - } - - // Check the existing databases in the 'structure' and 'allKeysOfDbStructure' stores, - // and remove any that are no longer found in the connectionDatabases list (indicating deletion). - // Iterate through extracted keys to avoid mutation while being enumerated. - NSArray *keys = [queriedStructure allKeys]; - for(id key in keys) { - NSString *db = [[key componentsSeparatedByString:SPUniqueSchemaDelimiter] objectAtIndex:1]; - if(![connectionDatabases containsObject:db]) { - structureWasUpdated = YES; - [queriedStructure removeObjectForKey:key]; - NSPredicate *predicate = [NSPredicate predicateWithFormat:@"NOT SELF BEGINSWITH %@", [NSString stringWithFormat:@"%@%@", key, SPUniqueSchemaDelimiter]]; - [queriedStructureKeys filterUsingPredicate:predicate]; - [queriedStructureKeys removeObject:key]; - } - } - - NSString *currentDatabase = nil; - if([delegate respondsToSelector:@selector(database)]) - currentDatabase = [[self delegate] database]; - - // Determine whether the database details need to be queried. - BOOL shouldQueryStructure = YES; - NSString *db_id = nil; - - // If no database is selected, no need to check further - if(!currentDatabase || (currentDatabase && ![currentDatabase length])) { - shouldQueryStructure = NO; - - // Otherwise, build up the schema key for the database to be retrieved. - } else { - db_id = [NSString stringWithFormat:@"%@%@%@", connectionID, SPUniqueSchemaDelimiter, currentDatabase]; - - // Check to see if a cache already exists for the database. - if ([queriedStructure objectForKey:db_id] && [[queriedStructure objectForKey:db_id] isKindOfClass:[NSDictionary class]]) { - - // The cache is available. If the `mysql` or `information_schema` databases are being queried, - // never requery as their structure will never change. - // 5.5.3+ also has performance_schema meta database - if ([currentDatabase isEqualToString:@"mysql"] || [currentDatabase isEqualToString:@"information_schema"] || [currentDatabase isEqualToString:@"performance_schema"]) { - shouldQueryStructure = NO; - - // Otherwise, if the forceUpdate flag wasn't supplied or evaluates to false, also don't update. - } else if (userInfo == nil || ![userInfo objectForKey:@"forceUpdate"] || ![[userInfo objectForKey:@"forceUpdate"] boolValue]) { - shouldQueryStructure = NO; - } - } - } - - // If it has been determined that no new structure needs to be retrieved, clean up and return. - if (!shouldQueryStructure) { - - // Update the global variables and make sure that no request reads these global variables - // while updating - [self performSelectorOnMainThread:@selector(lockQuerying) withObject:nil waitUntilDone:YES]; - [self performSelectorOnMainThread:@selector(updateGlobalVariablesWith:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:queriedStructure, @"structure", queriedStructureKeys, @"keys", nil] waitUntilDone:YES]; - [self performSelectorOnMainThread:@selector(unlockQuerying) withObject:nil waitUntilDone:YES]; - if (structureWasUpdated) - [[NSNotificationCenter defaultCenter] postNotificationName:@"SPDBStructureWasUpdated" object:delegate]; - [queryPool release]; - return; - } - - // Retrieve the tables and views for this database from SPTablesList - NSMutableArray *tablesAndViews = [NSMutableArray array]; - for (id aTable in [[[self delegate] valueForKeyPath:@"tablesListInstance"] allTableNames]) { - NSDictionary *aTableDict = [NSDictionary dictionaryWithObjectsAndKeys: - aTable, @"name", - @"0", @"type", - nil]; - [tablesAndViews addObject:aTableDict]; - } - for (id aView in [[[self delegate] valueForKeyPath:@"tablesListInstance"] allViewNames]) { - NSDictionary *aViewDict = [NSDictionary dictionaryWithObjectsAndKeys: - aView, @"name", - @"1", @"type", - nil]; - [tablesAndViews addObject:aViewDict]; - } - - // Do not parse more than 2000 tables/views per db - if([tablesAndViews count] > 2000) { - NSLog(@"%lu items in database %@. Only 2000 items can be parsed. Stopped parsing.", (unsigned long)[tablesAndViews count], currentDatabase); - [queryPool release]; - return; - } - - // For future usage - currently unused - // If the affected item name and type - for example, table type and table name - were supplied, extract it. - NSString *affectedItem = nil; - NSInteger affectedItemType = -1; - if(userInfo && [userInfo objectForKey:@"affectedItem"]) { - affectedItem = [userInfo objectForKey:@"affectedItem"]; - if([userInfo objectForKey:@"affectedItemType"]) - affectedItemType = [[userInfo objectForKey:@"affectedItemType"] intValue]; - else - affectedItem = nil; - } - - // Delete all stored data for the database to be updated, leaving the structure key - [queriedStructure removeObjectForKey:db_id]; - NSPredicate *predicate = [NSPredicate predicateWithFormat:@"NOT SELF BEGINSWITH %@", [NSString stringWithFormat:@"%@%@", db_id, SPUniqueSchemaDelimiter]]; - [queriedStructureKeys filterUsingPredicate:predicate]; - - // Set up the database as an empty mutable dictionary ready for tables, and store a reference - [queriedStructure setObject:[NSMutableDictionary dictionary] forKey:db_id]; - NSMutableDictionary *databaseStructure = [queriedStructure objectForKey:db_id]; - - NSString *currentDatabaseEscaped = [currentDatabase stringByReplacingOccurrencesOfString:@"`" withString:@"``"]; - - MYSQL *structConnection = mysql_init(NULL); - if (structConnection) { - const char *theLogin = [connectionLogin UTF8String]; - const char *theHost; - const char *thePass = NULL; - const char *theSocket; - void *connectionSetupStatus; - - mysql_options(structConnection, MYSQL_OPT_CONNECT_TIMEOUT, (const void *)&connectionTimeout); - mysql_options(structConnection, MYSQL_SET_CHARSET_NAME, "utf8"); - - // Set up the host, socket and password as per the connect method - if (!connectionHost || ![connectionHost length]) { - theHost = NULL; - } else { - theHost = [connectionHost UTF8String]; - } - if (connectionSocket == nil || ![connectionSocket length]) { - theSocket = kMCPConnectionDefaultSocket; - } else { - theSocket = [connectionSocket UTF8String]; - } - if (useSSL) { - mysql_ssl_set(mConnection, - sslKeyFilePath ? [sslKeyFilePath UTF8String] : NULL, - sslCertificatePath ? [sslCertificatePath UTF8String] : NULL, - sslCACertificatePath ? [sslCACertificatePath UTF8String] : NULL, - NULL, - kMCPSSLCipherList); - } - if (!connectionPassword) { - if (delegate && [delegate respondsToSelector:@selector(keychainPasswordForConnection:)]) { - thePass = [[delegate keychainPasswordForConnection:self] UTF8String]; - } - } else { - thePass = [connectionPassword UTF8String]; - } - - // Connect - connectionSetupStatus = mysql_real_connect(structConnection, theHost, theLogin, thePass, NULL, (unsigned int)connectionPort, theSocket, mConnectionFlags); - thePass = NULL; - if (connectionSetupStatus) { - MYSQL_RES *theResult; - MYSQL_ROW row; - NSString *charset; - NSUInteger uniqueCounter = 0; // used to make field data unique - NSString *query; - NSData *encodedQueryData; - const char *queryCString; - unsigned long queryCStringLength; - - // Get the doc encoding due to pref settings etc, defaulting to UTF8 - NSString *docEncoding = [self encoding]; - if (!docEncoding) docEncoding = @"utf8"; - NSStringEncoding theConnectionEncoding = [MCPConnection encodingForMySQLEncoding:[self cStringFromString:docEncoding]]; - - // Try to set connection encoding for MySQL >= 4.1 - if ([self serverMajorVersion] > 4 || ([self serverMajorVersion] >= 4 && [self serverMinorVersion] >= 1)) { - query = [NSString stringWithFormat:@"SET NAMES '%@'", docEncoding]; - encodedQueryData = NSStringDataUsingLossyEncoding(query, theConnectionEncoding, 1); - queryCString = [encodedQueryData bytes]; - queryCStringLength = [encodedQueryData length]; - if (mysql_real_query(structConnection, queryCString, queryCStringLength) != 0) { - NSLog(@"Error while querying the database structure. Could not set encoding to %@", docEncoding); - [queryPool release]; - return; - } - } - - // Increase global query-db-counter - [self performSelectorOnMainThread:@selector(incrementQueryingDbStructure) withObject:nil waitUntilDone:YES]; - - // Loop through the known tables and views, retrieving details for each - for (NSDictionary *aTableDict in tablesAndViews) { - - // If cancelled, abort without saving - if (cancelQueryingDbStructure) { - [self performSelectorOnMainThread:@selector(decrementQueryingDbStructure) withObject:nil waitUntilDone:YES]; - [queryPool release]; - return; - } - - if(![aTableDict objectForKey:@"name"]) continue; - // Extract the name - NSString *aTableName = [aTableDict objectForKey:@"name"]; - - if(!aTableName) continue; - if(![aTableName isKindOfClass:[NSString class]]) continue; - if(![aTableName length]) continue; - // Retrieve the column details - query = [NSString stringWithFormat:@"SHOW FULL COLUMNS FROM `%@` FROM `%@`", - [aTableName stringByReplacingOccurrencesOfString:@"`" withString:@"``"], - currentDatabaseEscaped]; - encodedQueryData = NSStringDataUsingLossyEncoding(query, theConnectionEncoding, 1); - queryCString = [encodedQueryData bytes]; - queryCStringLength = [encodedQueryData length]; - if (mysql_real_query(structConnection, queryCString, queryCStringLength) != 0) { - // NSLog(@"error %@", aTableName); - continue; - } - theResult = mysql_use_result(structConnection); - - // Add a structure key for this table - NSString *table_id = [NSString stringWithFormat:@"%@%@%@", db_id, SPUniqueSchemaDelimiter, aTableName]; - [queriedStructureKeys addObject:table_id]; - - // Add a mutable dictionary to the structure and store a reference - [databaseStructure setObject:[NSMutableDictionary dictionary] forKey:table_id]; - NSMutableDictionary *tableStructure = [databaseStructure objectForKey:table_id]; - - // Loop through the fields, extracting details for each - while ((row = mysql_fetch_row(theResult))) { - NSString *field = [self stringWithCString:row[0] usingEncoding:theConnectionEncoding] ; - NSString *type = [self stringWithCString:row[1] usingEncoding:theConnectionEncoding] ; - NSString *type_display = [type stringByReplacingOccurrencesOfRegex:@"\\(.*?,.*?\\)" withString:@"(…)"]; - NSString *coll = [self stringWithCString:row[2] usingEncoding:theConnectionEncoding] ; - NSString *isnull = [self stringWithCString:row[3] usingEncoding:theConnectionEncoding] ; - NSString *key = [self stringWithCString:row[4] usingEncoding:theConnectionEncoding] ; - NSString *def = [self stringWithCString:row[5] usingEncoding:theConnectionEncoding] ; - NSString *extra = [self stringWithCString:row[6] usingEncoding:theConnectionEncoding] ; - NSString *priv = [self stringWithCString:row[7] usingEncoding:theConnectionEncoding] ; - NSString *comment; - if (sizeof(row) > 8) { - comment = [self stringWithCString:row[8] usingEncoding:theConnectionEncoding] ; - } else { - comment = @""; - } - NSArray *a = [coll componentsSeparatedByString:@"_"]; - charset = ([a count]) ? [a objectAtIndex:0] : @""; - - // Add a structure key for this field - NSString *field_id = [NSString stringWithFormat:@"%@%@%@", table_id, SPUniqueSchemaDelimiter, field]; - [queriedStructureKeys addObject:field_id]; - - [tableStructure setObject:[NSArray arrayWithObjects:type, def, isnull, charset, coll, key, extra, priv, comment, type_display, [NSNumber numberWithUnsignedLongLong:uniqueCounter], nil] forKey:field_id]; - [tableStructure setObject:[aTableDict objectForKey:@"type"] forKey:@" struct_type "]; - uniqueCounter++; - } - mysql_free_result(theResult); - usleep(10); - } - - // If the MySQL version is higher than 5, also retrieve function/procedure details via the information_schema table - if([self serverMajorVersion] >= 5) { - - // The information_schema table is UTF-8 encoded - alter the connection - query = @"SET NAMES 'utf8'"; - encodedQueryData = NSStringDataUsingLossyEncoding(query, theConnectionEncoding, 1); - queryCString = [encodedQueryData bytes]; - queryCStringLength = [encodedQueryData length]; - if (mysql_real_query(structConnection, queryCString, queryCStringLength) == 0) { - - // Query for procedures and functions - query = [NSString stringWithFormat:@"SELECT * FROM `information_schema`.`ROUTINES` WHERE `information_schema`.`ROUTINES`.`ROUTINE_SCHEMA` = '%@'", [currentDatabase stringByReplacingOccurrencesOfString:@"'" withString:@"\\'"]]; - encodedQueryData = NSStringDataUsingLossyEncoding(query, theConnectionEncoding, 1); - queryCString = [encodedQueryData bytes]; - queryCStringLength = [encodedQueryData length]; - if (mysql_real_query(structConnection, queryCString, queryCStringLength) == 0) { - theResult = mysql_use_result(structConnection); - - // Loop through the rows and extract the function details - while ((row = mysql_fetch_row(theResult))) { - - // If cancelled, abort without saving the new structure - if(cancelQueryingDbStructure) { - [self performSelectorOnMainThread:@selector(decrementQueryingDbStructure) withObject:nil waitUntilDone:YES]; - [queryPool release]; - return; - } - - NSString *fname = [self stringWithUTF8CString:row[0]]; - NSString *type = ([[self stringWithUTF8CString:row[4]] isEqualToString:@"FUNCTION"]) ? @"3" : @"2"; - NSString *dtd = [self stringWithUTF8CString:row[5]]; - NSString *det = [self stringWithUTF8CString:row[11]]; - NSString *dataaccess = [self stringWithUTF8CString:row[12]]; - NSString *security_type = [self stringWithUTF8CString:row[14]]; - NSString *definer = [self stringWithUTF8CString:row[19]]; - - // Generate "table" and "field" names and add to structure key store - NSString *table_id = [NSString stringWithFormat:@"%@%@%@", db_id, SPUniqueSchemaDelimiter, fname]; - NSString *field_id = [NSString stringWithFormat:@"%@%@%@", table_id, SPUniqueSchemaDelimiter, fname]; - [queriedStructureKeys addObject:table_id]; - [queriedStructureKeys addObject:field_id]; - - // Ensure that a dictionary exists for this "table" name - if(![[queriedStructure valueForKey:db_id] valueForKey:table_id]) - [[queriedStructure valueForKey:db_id] setObject:[NSMutableDictionary dictionary] forKey:table_id]; - - // Add the "field" details - [[[queriedStructure valueForKey:db_id] valueForKey:table_id] setObject: - [NSArray arrayWithObjects:dtd, dataaccess, det, security_type, definer, [NSNumber numberWithUnsignedLongLong:uniqueCounter], nil] forKey:field_id]; - [[[queriedStructure valueForKey:db_id] valueForKey:table_id] setObject:type forKey:@" struct_type "]; - uniqueCounter++; - } - mysql_free_result(theResult); - } else { - NSLog(@"Error while querying the database structure for procedures and functions. Could not set encoding to utf8"); - } - } - } - - // Update the global variables and make sure that no request reads these global variables - // while updating - [self performSelectorOnMainThread:@selector(lockQuerying) withObject:nil waitUntilDone:YES]; - [self performSelectorOnMainThread:@selector(updateGlobalVariablesWith:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:queriedStructure, @"structure", queriedStructureKeys, @"keys", nil] waitUntilDone:YES]; - [self performSelectorOnMainThread:@selector(unlockQuerying) withObject:nil waitUntilDone:YES]; - - - mysql_close(structConnection); - - // Notify that the structure querying has been performed - [[NSNotificationCenter defaultCenter] postNotificationName:@"SPDBStructureWasUpdated" object:delegate]; - - [self performSelectorOnMainThread:@selector(decrementQueryingDbStructure) withObject:nil waitUntilDone:YES]; - } - } - - [queryPool release]; -} - -/* - * Update global variables on main thread to avoid accessing from different threads - */ -- (void)updateGlobalVariablesWith:(NSDictionary*)object -{ - NSString *connectionID = [[self delegate] connectionID]; - - // Return if the delegate indicates disconnection - if([connectionID length] < 2) return; - - if(![structure valueForKey:connectionID]) - [structure setObject:[NSMutableDictionary dictionary] forKey:connectionID]; - [structure setObject:[object objectForKey:@"structure"] forKey:connectionID]; - [allKeysofDbStructure setArray:[object objectForKey:@"keys"]]; - usleep(100); -} - -- (void)incrementQueryingDbStructure -{ - isQueryingDbStructure++; -} - -- (void)decrementQueryingDbStructure -{ - isQueryingDbStructure--; - if(isQueryingDbStructure < 0) isQueryingDbStructure = 0; -} - -- (BOOL)isQueryingDatabaseStructure -{ - return (isQueryingDbStructure > 0) ? YES : NO; -} - -- (void)lockQuerying -{ - lockQuerying = YES; -} - -- (void)unlockQuerying -{ - lockQuerying = NO; - usleep(50000); -} -/** - * Returns a dict containing the structure of all available databases - */ -- (NSDictionary *)getDbStructure -{ - if(lockQuerying) return nil; - NSDictionary *d = [NSDictionary dictionaryWithDictionary:structure]; - return d; -} - -/** - * Returns all keys of the db structure - */ -- (NSArray *)getAllKeysOfDbStructure -{ - if(lockQuerying) return nil; - NSArray *r = [NSArray arrayWithArray:allKeysofDbStructure]; - return r; -} - -#pragma mark - -#pragma mark Server information - -/** - * Returns a string giving the client library version. - */ -- (NSString *)clientInfo -{ - return [self stringWithCString:mysql_get_client_info()]; -} - -/** - * Returns a string giving information on the host of the DB server. - */ -- (NSString *)hostInfo -{ - return [self stringWithCString:mysql_get_host_info(mConnection)]; -} - -/** - * Returns a string giving the server version. - */ -- (NSString *)serverInfo -{ - if (mConnected) { - return [self stringWithCString: mysql_get_server_info(mConnection)]; - } - - return @""; -} - -/** - * Returns the number of the protocole used to transfer info from server to client - */ -- (NSNumber *)protoInfo -{ - return [MCPNumber numberWithUnsignedInteger:mysql_get_proto_info(mConnection)]; -} - -/** - * Lists active process - */ -- (MCPResult *)listProcesses -{ - MCPResult *result = nil; - MYSQL_RES *theResPtr; - - [self lockConnection]; - - if (mConnected && (mConnection != NULL)) { - if ((theResPtr = mysql_list_processes(mConnection))) { - result = [[MCPResult alloc] initWithResPtr:theResPtr encoding:stringEncoding timeZone:mTimeZone]; - } - else { - result = [[MCPResult alloc] init]; - } - } - - [self unlockConnection]; - - if (result) [result autorelease]; - - return result; -} - -/** - * Kills the process with the given pid. - * The users needs the !{Process_priv} privilege. - */ -- (BOOL)killProcess:(unsigned long)pid -{ - NSInteger theErrorCode = mysql_kill(mConnection, pid); - - return (theErrorCode) ? NO : YES; -} - -/* - * Check some common locations for the presence of a MySQL socket file, returning - * it if successful. - */ -- (NSString *)findSocketPath -{ - NSFileManager *fileManager = [NSFileManager defaultManager]; - - NSArray *possibleSocketLocations = [NSArray arrayWithObjects: - @"/tmp/mysql.sock", // Default - @"/Applications/MAMP/tmp/mysql/mysql.sock", // MAMP default location - @"/Applications/xampp/xamppfiles/var/mysql/mysql.sock", // XAMPP default location - @"/var/mysql/mysql.sock", // Mac OS X Server default - @"/opt/local/var/run/mysqld/mysqld.sock", // Darwinports MySQL - @"/opt/local/var/run/mysql4/mysqld.sock", // Darwinports MySQL 4 - @"/opt/local/var/run/mysql5/mysqld.sock", // Darwinports MySQL 5 - @"/usr/local/zend/mysql/tmp/mysql.sock", // Zend Server CE (see Issue #1251) - @"/var/run/mysqld/mysqld.sock", // As used on Debian/Gentoo - @"/var/tmp/mysql.sock", // As used on FreeBSD - @"/var/lib/mysql/mysql.sock", // As used by Fedora - @"/opt/local/lib/mysql/mysql.sock", // Alternate fedora - nil]; - - for (NSUInteger i = 0; i < [possibleSocketLocations count]; i++) - { - if ([fileManager fileExistsAtPath:[possibleSocketLocations objectAtIndex:i]]) - return [possibleSocketLocations objectAtIndex:i]; - } - - return nil; -} - -#pragma mark - -#pragma mark Encoding - -/** - * Sets the encoding for the database connection. - * This sends a "SET NAMES" command to the server, as appropriate, and - * also updates the class to decode the returned strings correctly. - * If an encoding name unsupported by MySQL is encountered, a FALSE - * status will be returned, and errors will be updated. - * If an encoding name not supported by this class is encountered, a - * warning will be logged to console but the MySQL connection will still - * be updated. - * This resets any setting to use Latin1 transport for the connection. - */ -- (BOOL)setEncoding:(NSString *)theEncoding -{ - if ([theEncoding isEqualToString:encoding] && !encodingUsesLatin1Transport) return YES; - - // MySQL < 4.1 will fail - if ([self serverMajorVersion] < 4 - || ([self serverMinorVersion] == 4 && [self serverMinorVersion] < 1)) - { - return NO; - } - - // Attempt to set the encoding of the connection, restoring the connection on failure - [self queryString:[NSString stringWithFormat:@"SET NAMES %@", [theEncoding tickQuotedString]]]; - if ([self queryErrored]) { - [self queryString:[NSString stringWithFormat:@"SET NAMES %@", [encoding tickQuotedString]]]; - if (encodingUsesLatin1Transport) [self queryString:@"SET CHARACTER_SET_RESULTS=latin1"]; - return NO; - } - - // The connection set was successful - update stored details - [encoding release]; - encoding = [[NSString alloc] initWithString:theEncoding]; - stringEncoding = [MCPConnection encodingForMySQLEncoding:[encoding UTF8String]]; - encodingUsesLatin1Transport = NO; - return YES; -} - -/** - * Returns the currently active encoding. - */ -- (NSString *)encoding -{ - return [NSString stringWithString:encoding]; -} - -/** - * Gets the string encoding for the connection - */ -- (NSStringEncoding)stringEncoding -{ - return stringEncoding; -} - -/** - * Sets whether the connection encoding should be transmitted via Latin1. - * This is a method purely for backwards compatibility: old codebases or - * applications often believed they stored UTF8 data in UTF8 tables, but - * for the purposes of storing and reading the data, the MySQL connecttion - * was never changed from the default Latin1. UTF8 data was therefore - * altered during transit and stored as UTF8 encoding Latin1 pairs which - * together make up extended UTF8 characters. Reading these characters back - * over Latin1 makes the data editable in a compatible fashion. - */ -- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1 -{ - if (encodingUsesLatin1Transport == useLatin1) return YES; - - // If disabling Latin1 transport, restore the connection encoding - if (!useLatin1) return [self setEncoding:encoding]; - - // Otherwise attempt to set Latin1 transport - [self queryString:@"SET CHARACTER_SET_RESULTS=latin1"]; - if ([self queryErrored]) return NO; - [self queryString:@"SET CHARACTER_SET_CLIENT=latin1"]; - if ([self queryErrored]) { - [self setEncoding:encoding]; - return NO; - } - encodingUsesLatin1Transport = YES; - return YES; -} - -/** - * Return whether the current connection is set to use Latin1 tranport. - */ -- (BOOL)encodingUsesLatin1Transport -{ - return encodingUsesLatin1Transport; -} - -/** - * Store a previous encoding setting. This allows easy restoration - * later - useful if certain tasks require the encoding to be - * temporarily changed. - */ -- (void)storeEncodingForRestoration -{ - if (previousEncoding) [previousEncoding release]; - previousEncoding = [[NSString alloc] initWithString:encoding]; - previousEncodingUsesLatin1Transport = encodingUsesLatin1Transport; -} - -/** - * Restore a previously stored encoding setting, if one is stored. - * Useful if certain tasks required the encoding to be temporarily changed. - */ -- (void)restoreStoredEncoding -{ - if (!previousEncoding || !mConnected) return; - - [self setEncoding:previousEncoding]; - [self setEncodingUsesLatin1Transport:previousEncodingUsesLatin1Transport]; -} - -#pragma mark - -#pragma mark Time Zone - -/** - * Setting the time zone to be used with the server. - */ -- (void)setTimeZone:(NSTimeZone *)iTimeZone -{ - if (iTimeZone != mTimeZone) { - [mTimeZone release]; - mTimeZone = [iTimeZone retain]; - } - - if ([self checkConnection]) { - if (mTimeZone) { - [self queryString:[NSString stringWithFormat:@"SET time_zone = '%@'", [mTimeZone name]]]; - } - else { - [self queryString:@"SET time_zone = 'SYSTEM'"]; - } - } -} - -/** - * Getting the currently used time zone (in communication with the DB server). - */ -- (NSTimeZone *)timeZone -{ - if ([self checkConnection]) { - MCPResult *theSessionTZ = [self queryString:@"SHOW VARIABLES LIKE '%time_zone'"]; - NSArray *theRow; - id theTZName; - NSTimeZone *theTZ; - - [theSessionTZ setReturnDataAsStrings:YES]; - [theSessionTZ dataSeek:1ULL]; - theRow = [theSessionTZ fetchRowAsArray]; - theTZName = [theRow objectAtIndex:1]; - - if ([theTZName isEqualToString:@"SYSTEM"]) { - [theSessionTZ dataSeek:0ULL]; - theRow = [theSessionTZ fetchRowAsArray]; - theTZName = [theRow objectAtIndex:1]; - } - - if (theTZName) { // Old versions of the server does not support there own time zone ? - theTZ = [NSTimeZone timeZoneWithName:theTZName]; - if (!theTZ) theTZ = [NSTimeZone timeZoneWithAbbreviation:theTZName]; - if (!theTZ) theTZ = [NSTimeZone defaultTimeZone]; - } else { - // By default set the time zone to the local one.. - // Try to get the name using the previously available variable: - theSessionTZ = [self queryString:@"SHOW VARIABLES LIKE 'timezone'"]; - [theSessionTZ setReturnDataAsStrings:YES]; - [theSessionTZ dataSeek:0ULL]; - theRow = [theSessionTZ fetchRowAsArray]; - theTZName = [theRow objectAtIndex:1]; - if (theTZName) { - // Finally we found one ... - theTZ = [NSTimeZone timeZoneWithName:theTZName]; - if (!theTZ) theTZ = [NSTimeZone timeZoneWithAbbreviation:theTZName]; - if (!theTZ) theTZ = [NSTimeZone defaultTimeZone]; - } else { - theTZ = [NSTimeZone defaultTimeZone]; - //theTZ = [NSTimeZone systemTimeZone]; - NSLog(@"The time zone is not defined on the server, set it to the default one : %@", theTZ); - } - } - - if (theTZ != mTimeZone) { - [mTimeZone release]; - mTimeZone = [theTZ retain]; - } - } - - return mTimeZone; -} - -#pragma mark - -#pragma mark Packet size - -/** - * Retrieve the max_allowed_packet size from the server; returns - * false if the query fails. - */ -- (BOOL)fetchMaxAllowedPacket -{ - char *queryString; - - if ([self serverMajorVersion] == 3) queryString = "SHOW VARIABLES LIKE 'max_allowed_packet'"; - else queryString = "SELECT @@global.max_allowed_packet"; - - [self lockConnection]; - if (0 == mysql_query(mConnection, queryString)) { - if (mysql_field_count(mConnection) != 0) { - MCPResult *r = [[MCPResult alloc] initWithMySQLPtr:mConnection encoding:stringEncoding timeZone:mTimeZone]; - [r setReturnDataAsStrings:YES]; - NSArray *a = [r fetchRowAsArray]; - [r autorelease]; - if([a count]) { - [self unlockConnection]; - maxAllowedPacketSize = [[a objectAtIndex:([self serverMajorVersion] == 3)?1:0] integerValue]; - return true; - } - } - } - [self unlockConnection]; - - return false; -} - -/** - * Retrieves max_allowed_packet size set as global variable. - * It returns NSNotFound if it fails. - */ -- (NSUInteger)getMaxAllowedPacket -{ - MCPResult *r; - r = [self queryString:@"SELECT @@global.max_allowed_packet" usingEncoding:stringEncoding streamingResult:NO]; - if (![[self getLastErrorMessage] isEqualToString:@""]) { - if ([self isConnected]) { - NSString *errorMessage = [NSString stringWithFormat:@"An error occured while retrieving max_allowed_packet size:\n\n%@", [self getLastErrorMessage]]; - if ([delegate respondsToSelector:@selector(showErrorWithTitle:message:)]) - [delegate showErrorWithTitle:NSLocalizedString(@"Error", @"error") message:errorMessage]; - else - NSRunAlertPanel(@"Error", errorMessage, @"OK", nil, nil); - } - return NSNotFound; - } - NSArray *a = [r fetchRowAsArray]; - if([a count]) - return [[a objectAtIndex:0] integerValue]; - - return NSNotFound; -} - -/* - * It sets max_allowed_packet size to newSize and it returns - * max_allowed_packet after setting it to newSize for cross-checking - * if the maximal size was reached (e.g. set it to 4GB it'll return 1GB up to now). - * If something failed it return -1; - */ -- (NSUInteger)setMaxAllowedPacketTo:(NSUInteger)newSize resetSize:(BOOL)reset -{ - if(![self isMaxAllowedPacketEditable] || newSize < 1024) return maxAllowedPacketSize; - - [self lockConnection]; - mysql_query(mConnection, [[NSString stringWithFormat:@"SET GLOBAL max_allowed_packet = %lu", newSize] UTF8String]); - [self unlockConnection]; - - // Inform the user via a log entry about that change according to reset value - if(delegate && [delegate respondsToSelector:@selector(queryGaveError:connection:)]) { - if(reset) - [delegate queryGaveError:[NSString stringWithFormat:@"max_allowed_packet was reset to %lu for new session", newSize] connection:self]; - else - [delegate queryGaveError:[NSString stringWithFormat:@"Query too large; max_allowed_packet temporarily set to %lu for the current session to allow query to succeed", newSize] connection:self]; - } - - return maxAllowedPacketSize; -} - -/** - * It returns whether max_allowed_packet is setable for the user. - */ -- (BOOL)isMaxAllowedPacketEditable -{ - BOOL isEditable; - - [self lockConnection]; - isEditable = !mysql_query(mConnection, "SET GLOBAL max_allowed_packet = @@global.max_allowed_packet"); - [self unlockConnection]; - - return isEditable; -} - -#pragma mark - -#pragma mark Data conversion - -/** - * For internal use only. Transforms a NSString to a C type string (ending with \0) using the character set from the MCPConnection. - * Lossy conversions are enabled. - */ -- (const char *)cStringFromString:(NSString *)theString -{ - NSMutableData *theData; - - if (! theString) { - return (const char *)NULL; - } - - theData = [NSMutableData dataWithData:[theString dataUsingEncoding:stringEncoding allowLossyConversion:YES]]; - [theData increaseLengthBy:1]; - - return (const char *)[theData bytes]; -} - -/** - * Modified version of the original to support a supplied encoding. - * For internal use only. Transforms a NSString to a C type string (ending with \0). - * Lossy conversions are enabled. - */ -- (const char *)cStringFromString:(NSString *)theString usingEncoding:(NSStringEncoding)aStringEncoding -{ - NSMutableData *theData; - - if (! theString) { - return (const char *)NULL; - } - - theData = [NSMutableData dataWithData:[theString dataUsingEncoding:aStringEncoding allowLossyConversion:YES]]; - [theData increaseLengthBy:1]; - - return (const char *)[theData bytes]; -} - -/** - * Returns a NSString from a C style string encoded with the character set of theMCPConnection. - */ -- (NSString *)stringWithCString:(const char *)theCString -{ - NSData *theData; - NSString *theString; - - if (theCString == NULL) return @""; - - theData = [NSData dataWithBytes:theCString length:(strlen(theCString))]; - theString = [[NSString alloc] initWithData:theData encoding:stringEncoding]; - - if (theString) { - [theString autorelease]; - } - - return theString; -} - -/** - * Returns a NSString from a C style string. - */ -- (NSString *)stringWithCString:(const char *)theCString usingEncoding:(NSStringEncoding)aStringEncoding -{ - NSData *theData; - NSString *theString; - - if (theCString == NULL) return @""; - - theData = [NSData dataWithBytes:theCString length:(strlen(theCString))]; - theString = [[NSString alloc] initWithData:theData encoding:aStringEncoding]; - - if (theString) { - [theString autorelease]; - } - - return theString; -} - -/** - * Returns a NSString from a C style string encoded with the character set of theMCPConnection. - */ -- (NSString *)stringWithUTF8CString:(const char *)theCString -{ - NSData *theData; - NSString *theString; - - if (theCString == NULL) return @""; - - theData = [NSData dataWithBytes:theCString length:(strlen(theCString))]; - theString = [[NSString alloc] initWithData:theData encoding:NSUTF8StringEncoding]; - - if (theString) { - [theString autorelease]; - } - - return theString; -} - -/** - * Use the string encoding to convert the returned NSData to a string (for a Text field). - */ -- (NSString *)stringWithText:(NSData *)theTextData -{ - NSString *theString; - - if (theTextData == nil) return nil; - - theString = [[NSString alloc] initWithData:theTextData encoding:stringEncoding]; - - if (theString) { - [theString autorelease]; - } - - return theString; -} - -#pragma mark - - -/** - * Object deallocation. - */ -- (void) dealloc -{ - delegate = nil; - - // Ensure the query lock is unlocked, thereafter setting to nil in case of pending calls - if ([connectionLock condition] != MCPConnectionIdle) [self unlockConnection]; - [connectionLock release], connectionLock = nil; - - // Clean up connections if necessary - if (mConnected) [self disconnect]; - if (connectionProxy) { - [connectionProxy setConnectionStateChangeSelector:NULL delegate:nil]; - [connectionProxy disconnect]; - } - - [encoding release]; - if (previousEncoding) [previousEncoding release]; - [keepAliveTimer invalidate]; - [keepAliveTimer release]; - [NSObject cancelPreviousPerformRequestsWithTarget:self]; - if (lastQueryErrorMessage) [lastQueryErrorMessage release]; - if (connectionHost) [connectionHost release]; - if (connectionLogin) [connectionLogin release]; - if (connectionSocket) [connectionSocket release]; - if (connectionPassword) [connectionPassword release]; - if (sslKeyFilePath) [sslKeyFilePath release]; - if (sslCertificatePath) [sslCertificatePath release]; - if (sslCACertificatePath) [sslCACertificatePath release]; - if (serverVersionString) [serverVersionString release], serverVersionString = nil; - if (structure) [structure release], structure = nil; - if (allKeysofDbStructure) [allKeysofDbStructure release], allKeysofDbStructure = nil; - - [super dealloc]; -} - -@end - -@implementation MCPConnection (PrivateAPI) - -/** - * Retrieve connection variables and use them to update local variables - incuding - * server version string, server time zone, and the current connection encoding. - */ -- (void)_updateConnectionVariables -{ - if (!mConnected) return; - - // Retrieve all the variables from the server - MCPResult *theResult = [self queryString:@"SHOW VARIABLES"]; - [theResult setReturnDataAsStrings:YES]; - if (![theResult numOfRows]) return; - - // Step through the rows, converting into an NSDictionary - NSMutableDictionary *variables = [NSMutableDictionary new]; - NSArray *variableRow = nil; - while ((variableRow = [theResult fetchRowAsArray])) { - [variables setObject:[variableRow objectAtIndex:1] forKey:[variableRow objectAtIndex:0]]; - } - - // Get the version string - if (serverVersionString) [serverVersionString release], serverVersionString = nil; - if ([variables objectForKey:@"version"]) { - serverVersionString = [[NSString alloc] initWithString:[variables objectForKey:@"version"]]; - } - - // Get the timezone - NSString *serverTimeZoneName = nil; - NSTimeZone *serverTimeZone = nil; - if ([variables objectForKey:@"time_zone"] && ![[variables objectForKey:@"time_zone"] isNSNull]) { - if ([[variables objectForKey:@"time_zone"] isEqualToString:@"SYSTEM"]) { - if ([variables objectForKey:@"system_time_zone"]) { - serverTimeZoneName = [variables objectForKey:@"system_time_zone"]; - } - } else { - serverTimeZoneName = [variables objectForKey:@"time_zone"]; - } - } else if ([variables objectForKey:@"timezone"] && ![[variables objectForKey:@"timezone"] isNSNull]) { - serverTimeZoneName = [variables objectForKey:@"timezone"]; - } - if (!serverTimeZoneName) { - serverTimeZone = [NSTimeZone defaultTimeZone]; - NSLog(@"The time zone was not defined on the server, fallen back to default time zone: %@", serverTimeZone); - } else { - serverTimeZone = [NSTimeZone timeZoneWithName:serverTimeZoneName]; - if (!serverTimeZone) - serverTimeZone = [NSTimeZone timeZoneWithAbbreviation:serverTimeZoneName]; - if (!serverTimeZone) { - serverTimeZone = [NSTimeZone defaultTimeZone]; - NSLog(@"The time zone defined on the server (%@) was not recognised, fallen back to default time zone: %@", serverTimeZoneName, serverTimeZone); - } - } - - if (mTimeZone) [mTimeZone release], mTimeZone = nil; - mTimeZone = [serverTimeZone retain]; - - // Get the connection encoding - NSString *serverEncoding = @"latin1"; - if ([variables objectForKey:@"character_set_results"]) { - serverEncoding = [variables objectForKey:@"character_set_results"]; - } else if ([variables objectForKey:@"character_set"]) { - serverEncoding = [variables objectForKey:@"character_set"]; - } - if (encoding) [encoding release]; - encoding = [[NSString alloc] initWithString:serverEncoding]; - stringEncoding = [MCPConnection encodingForMySQLEncoding:[self cStringFromString:encoding]]; - encodingUsesLatin1Transport = NO; - - // Check the interactive timeout - if it's below five minutes, increase it to ten to imprive timeout/keepalive behaviour - if ([variables objectForKey:@"interactive_timeout"]) { - if ([[variables objectForKey:@"interactive_timeout"] integerValue] < 300) { - [self queryString:@"SET interactive_timeout=600"]; - } - } - - [variables release]; -} - -/** - * Determine whether the current host is reachable; essentially - * whether a connection is available (no packets should be sent) - */ -- (BOOL)_isCurrentHostReachable -{ - BOOL hostReachable; - SCNetworkConnectionFlags reachabilityStatus; - hostReachable = SCNetworkCheckReachabilityByName("dev.mysql.com", &reachabilityStatus); - - // If the function returned failure, also return failure. - if (!hostReachable) return NO; - - // Ensure that the network is reachable - if (!(reachabilityStatus & kSCNetworkFlagsReachable)) return NO; - - // Ensure that Airport is up/connected if present - if (reachabilityStatus & kSCNetworkFlagsConnectionRequired) return NO; - - // Return success - return YES; -} - -/** - * Set up the keepalive timer; this should be called on the main - * thread, to ensure the timer isn't descheduled when child threads - * terminate. - */ -- (void)_setupKeepalivePingTimer -{ - keepAliveTimer = [[NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(keepAlive:) userInfo:nil repeats:YES] retain]; -} -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConnectionDelegate.h b/Frameworks/MCPKit/MCPFoundationKit/MCPConnectionDelegate.h deleted file mode 100644 index 0e162875..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConnectionDelegate.h +++ /dev/null @@ -1,81 +0,0 @@ -// -// $Id$ -// -// MCPConnectionDelegate.h -// MCPKit -// -// Created by Stuart Connolly (stuconnolly.com) on October 20, 2010. -// Copyright (c) 2010 Stuart Connolly. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -@protocol MCPConnectionDelegate - -/** - * - * @param query - * @param connection - */ -- (void)willQueryString:(NSString *)query connection:(id)connection; - -/** - * - * @param error - * @param connection - */ -- (void)queryGaveError:(NSString *)error connection:(id)connection; - -/** - * - * - * @param error - * @param message - */ -- (void)showErrorWithTitle:(NSString *)error message:(NSString *)message; - -/** - * - * - * @param connection - */ -- (NSString *)keychainPasswordForConnection:(id)connection; - -/** - * - * - * @param connection - */ -- (NSString *)onReconnectShouldSelectDatabase:(id)connection; - -/** - * - * - * @param connection - */ -- (void)noConnectionAvailable:(id)connection; - -/** - * - * - * @param connection - */ -- (MCPConnectionCheck)connectionLost:(id)connection; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConnectionProxy.h b/Frameworks/MCPKit/MCPFoundationKit/MCPConnectionProxy.h deleted file mode 100644 index f4edbfd8..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConnectionProxy.h +++ /dev/null @@ -1,70 +0,0 @@ -// -// $Id$ -// -// MCPConnectionProxy.h -// MCPKit -// -// Created by Stuart Connolly (stuconnolly.com) on July 2, 2009. -// Copyright (c) 2009 Stuart Connolly. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -/** - * Connection proxy state constants. - */ -enum PROXY_TUNNEL_STATES -{ - PROXY_STATE_IDLE = 0, - PROXY_STATE_CONNECTING = 1, - PROXY_STATE_WAITING_FOR_AUTH = 2, - PROXY_STATE_CONNECTED = 3, - PROXY_STATE_FORWARDING_FAILED = 4 -}; - -@protocol MCPConnectionProxy - -/** - * Connect the proxy. - */ -- (void)connect; - -/** - * Disconnect the proxy. - */ -- (void)disconnect; - -/** - * Get the current state of the proxy. - */ -- (NSInteger)state; - -/** - * Get the local port being used by the proxy. - */ -- (NSUInteger)localPort; - -/** - * Sets the method the proxy should call whenever the state of the connection changes. - */ -- (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConstants.h b/Frameworks/MCPKit/MCPFoundationKit/MCPConstants.h deleted file mode 100644 index fba7d651..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConstants.h +++ /dev/null @@ -1,82 +0,0 @@ -// -// $Id$ -// -// MCPConstants.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 03/06/2001. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -// Result type constants -enum { - MCPTypeArray = 1, - MCPTypeDictionary = 2, - MCPTypeFlippedArray = 3, - MCPTypeFlippedDictionary = 4 -}; -typedef NSUInteger MCPReturnType; - -// Connection check constants -enum { - MCPConnectionCheckRetry = 0, - MCPConnectionCheckReconnect = 1, - MCPConnectionCheckDisconnect = 2 -}; -typedef NSUInteger MCPConnectionCheck; - -// Streaming result set constants -enum -{ - MCPStreamingNone = 0, - MCPStreamingFast = 1, - MCPStreamingLowMem = 2 -}; -typedef NSUInteger MCPQueryStreamingType; - -// Connection state -// This is used internally by MCPConnection to prevent simultaneous execution of different queries -enum { - MCPConnectionIdle = 0, - MCPConnectionBusy = 1 -}; - -// Charcater set mapping constants -typedef struct _OUR_CHARSET -{ - NSUInteger nr; - const char *name; - const char *collation; - NSUInteger char_minlen; - NSUInteger char_maxlen; -} OUR_CHARSET; - -// Deafult connection option -extern const NSUInteger kMCPConnectionDefaultOption; - -// Default socket (from the mysql.h used at compile time) -extern const char *kMCPConnectionDefaultSocket; - -// Added to MySQL error code -extern const NSUInteger kMCPConnectionNotInited; - -// The length of the truncation if required -extern const NSUInteger kLengthOfTruncationForLog; diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPFastQueries.h b/Frameworks/MCPKit/MCPFoundationKit/MCPFastQueries.h deleted file mode 100644 index e9ced5a0..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPFastQueries.h +++ /dev/null @@ -1,46 +0,0 @@ -// -// $Id$ -// -// MCPFastQueries.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 03/06/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -#import "MCPConnection.h" - -@interface MCPConnection (MCPFastQueries) - -// For insert queries, get directly the Id of the newly inserted row. -- (my_ulonglong)insertQuery:(NSString *)query; -- (my_ulonglong)updateQuery:(NSString *)query; - -// Returns directly a proper NS object, or a collection (NSArray, NSDictionary...). -- (id)getFirstFieldFromQuery:(NSString *)query; -- (id)getFirstRowFromQuery:(NSString *)query asType:(MCPReturnType)type; -- (id)getAllRowsFromQuery:(NSString *)query asType:(MCPReturnType)type; -- (NSArray *)getQuery:(NSString *)query colWithIndex:(NSUInteger)col; -- (NSArray *)getQuery:(NSString *)query colWithName:(NSString *)colName; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPFastQueries.m b/Frameworks/MCPKit/MCPFoundationKit/MCPFastQueries.m deleted file mode 100644 index c5f4d361..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPFastQueries.m +++ /dev/null @@ -1,113 +0,0 @@ -// -// $Id$ -// -// MCPFastQueries.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 03/06/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPFastQueries.h" -#import "MCPResultPlus.h" - -/** - * This actegory is made up to keep the extra methods out or the core of the framework. - * - * Basicly this is the place to add methods which are useful, but are just wrappers to the methods of the - * core (MCPConnection, MCPResult). The purpous being to have a single line call available for current tasks - * which otherwise would need a couple of lines and object defined. - */ -@implementation MCPConnection (MCPFastQueries) - -/** - * Send the query aQuery to the server and retrieve the row id if the table have a autoincrement column. - * Returns 0 if nothing have been inserted. - */ -- (my_ulonglong)insertQuery:(NSString *)query -{ - [self queryString:query]; - - return [self insertId]; -} - -/** - * Send the query aQuery to the server and retrieve the number of affected rows (should work with !{update}, - * !{delete}, !{insert} and !{select} type of queries). - * - * NB: This can also be used with a !{select} query if you are only interested in the number of row complying - * with the query; you'll get no chance to get the result from the query, except by sending the query - * again (with !{queryString:}) - */ -- (my_ulonglong)updateQuery:(NSString *)query -{ - [self queryString:query]; - - return [self affectedRows]; -} - -/** - * Get the first field of the first row of the result from the query (aQuery). Should return nil if no object - * at all are selected. - */ -- (id)getFirstFieldFromQuery:(NSString *)query -{ - return [[[self queryString:query] fetchRowAsType:MCPTypeArray] objectAtIndex:0]; -} - -/** - * Get the firdst row of the result from the query aQuery, in a collection of type determined by aType - * (MCPTypeArray or MCPTypeDictionary) - */ -- (id) getFirstRowFromQuery:(NSString *)query asType:(MCPReturnType)type -{ - return [[self queryString:query] fetchRowAsType:type]; -} - -/** - * Get a bidimensional table of the whole rows of the result from the query aQuery. The type of the result is - * choosen by aType, it can be (MCPTypeArray, MCPTypeDictionary, MCPTypeFlippedArray & MCPTypeFlippedDictionary). - * Description of the types can be found in method !{fetch2DResultAsType:}. - */ -- (id)getAllRowsFromQuery:(NSString *)query asType:(MCPReturnType)type - -{ - return [[self queryString:query] fetch2DResultAsType:type]; -} - -/** - * Get a column (as an NSArray) of the result from the query aQuery. The column is choosen from it's index, - * starting from 0. - */ -- (NSArray *)getQuery:(NSString *)query colWithIndex:(NSUInteger)col -{ - return [[self queryString:query] fetchColAtIndex:col]; -} - -/** - * Get a column (as an NSArray) of the result from the query aQuery. The column is choosen from it's name. - */ -- (NSArray *)getQuery:(NSString *)query colWithName:(NSString *)colName -{ - return [[self queryString:query] fetchColWithName:colName]; -} - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPGeometryData.h b/Frameworks/MCPKit/MCPFoundationKit/MCPGeometryData.h deleted file mode 100644 index 9af3fcfe..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPGeometryData.h +++ /dev/null @@ -1,65 +0,0 @@ -// -// $Id$ -// -// MCPGeometryData.h -// sequel-pro -// -// Created by Hans-Jörg Bibiko on October 07, 2010 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at - -#import -#import - -enum wkbType -{ - wkb_point = 1, - wkb_linestring = 2, - wkb_polygon = 3, - wkb_multipoint = 4, - wkb_multilinestring = 5, - wkb_multipolygon = 6, - wkb_geometrycollection = 7 -}; - -typedef struct st_point_2d_ -{ - double x; - double y; -} st_point_2d; - -@interface MCPGeometryData : NSObject -{ - // Holds the WKB bytes coming from SQL server - Byte *geoBuffer; - - // Holds the buffer length - NSUInteger bufferLength; - -} - -- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length; -+ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length; -- (NSString*)description; -- (NSUInteger)length; -- (NSData*)data; -- (NSString*)wktString; -- (NSDictionary*)coordinates; -- (NSInteger)wkbType; -- (NSString*)wktType; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPGeometryData.m b/Frameworks/MCPKit/MCPFoundationKit/MCPGeometryData.m deleted file mode 100644 index b7a3fd09..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPGeometryData.m +++ /dev/null @@ -1,785 +0,0 @@ -// -// $Id$ -// -// MCPGeometryData.m -// sequel-pro -// -// Created by Hans-Jörg Bibiko on October 07, 2010 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at - -#import "MCPGeometryData.h" - -#define SIZEOF_STORED_UINT32 4 -#define SIZEOF_STORED_DOUBLE 8 -#define POINT_DATA_SIZE (SIZEOF_STORED_DOUBLE*2) -#define WKB_HEADER_SIZE (1+SIZEOF_STORED_UINT32) -#define BUFFER_START 0 - -@implementation MCPGeometryData - -/** - * Initialize the MCPGeometryData object - */ -- (id)init -{ - if ((self = [super init])) { - geoBuffer = nil; - bufferLength = 0; - } - return self; -} - -/** - * Initialize the MCPGeometryData object with the WKB data - */ -- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length -{ - if ((self = [self init])) { - bufferLength = length; - geoBuffer = malloc(bufferLength); - memcpy(geoBuffer, geoData, bufferLength); - } - return self; -} - -/** - * Return an autorelease MCPGeometryData object - */ -+ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length -{ - return [[[MCPGeometryData alloc] initWithBytes:geoData length:length] autorelease]; -} - -/** - * copyWithZone - */ -- (id)copyWithZone:(NSZone *)zone -{ - return [self retain]; -} - -/** - * Return the hex representation of the WKB buffer (only for convenience) - */ -- (NSString*)description -{ - return [[NSData dataWithBytes:geoBuffer length:bufferLength] description]; -} - -/** - * Return the length of the WKB buffer - */ -- (NSUInteger)length -{ - return bufferLength; -} - -/** - * Return NSData pointer of the WKB buffer - */ -- (NSData*)data -{ - return [NSData dataWithBytes:geoBuffer length:bufferLength]; -} - -/** - * Return a human readable WKT string of the internal format (it imitate the SQL function AsText()). - */ -- (NSString*)wktString -{ - char byteOrder; - uint32_t geoType, numberOfItems, numberOfSubItems, numberOfSubSubItems, numberOfCollectionItems; - int32_t srid; - st_point_2d aPoint; - - uint32_t i, j, k, n; // Loop counter for numberOf...Items - uint32_t ptr = BUFFER_START; // pointer to geoBuffer while parsing - - NSMutableString *wkt = [NSMutableString string]; - - if (bufferLength < WKB_HEADER_SIZE) - return @""; - - memcpy(&srid, &geoBuffer[0], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - - byteOrder = geoBuffer[ptr]; - - if(byteOrder != 0x1) - return @"Byte order not yet supported"; - - ptr++; - geoType = geoBuffer[ptr]; - ptr += SIZEOF_STORED_UINT32; - - switch(geoType) { - - case wkb_point: - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - return [NSString stringWithFormat:@"POINT(%.16g %.16g)%@", aPoint.x, aPoint.y, (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; - break; - - case wkb_linestring: - [wkt setString:@"LINESTRING("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(i=0; i < numberOfItems; i++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (i < numberOfItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE; - } - [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; - return wkt; - break; - - case wkb_polygon: - [wkt setString:@"POLYGON("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - [wkt appendString:@"("]; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (j < numberOfSubItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE; - } - [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; - } - [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; - return wkt; - break; - - case wkb_multipoint: - [wkt setString:@"MULTIPOINT("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (i < numberOfItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE+WKB_HEADER_SIZE; - } - [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; - return wkt; - break; - - case wkb_multilinestring: - [wkt setString:@"MULTILINESTRING("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - [wkt appendString:@"("]; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (j < numberOfSubItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE; - } - ptr += WKB_HEADER_SIZE; - [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; - } - [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; - return wkt; - break; - - case wkb_multipolygon: - [wkt setString:@"MULTIPOLYGON("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - [wkt appendString:@"("]; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&numberOfSubSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - [wkt appendString:@"("]; - for(k=0; k < numberOfSubSubItems; k++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (k < numberOfSubSubItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE; - } - [wkt appendFormat:@")%@", (j < numberOfSubItems-1) ? @"," : @""]; - } - ptr += WKB_HEADER_SIZE; - [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; - } - [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; - return wkt; - break; - - case wkb_geometrycollection: - [wkt setString:@"GEOMETRYCOLLECTION("]; - numberOfCollectionItems = geoBuffer[ptr]; - ptr += SIZEOF_STORED_UINT32; - - for(n=0; n < numberOfCollectionItems; n++) { - - byteOrder = geoBuffer[ptr]; - - if(byteOrder != 0x1) - return @"Byte order not yet supported"; - - ptr++; - geoType = geoBuffer[ptr]; - ptr += SIZEOF_STORED_UINT32; - - switch(geoType) { - - case wkb_point: - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"POINT(%.16g %.16g)", aPoint.x, aPoint.y]; - ptr += POINT_DATA_SIZE; - break; - - case wkb_linestring: - [wkt appendString:@"LINESTRING("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(i=0; i < numberOfItems; i++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (i < numberOfItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE; - } - [wkt appendString:@")"]; - break; - - case wkb_polygon: - [wkt appendString:@"POLYGON("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - [wkt appendString:@"("]; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (j < numberOfSubItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE; - } - [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; - } - [wkt appendString:@")"]; - break; - - case wkb_multipoint: - [wkt appendString:@"MULTIPOINT("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (i < numberOfItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE+WKB_HEADER_SIZE; - } - ptr -= WKB_HEADER_SIZE; - [wkt appendString:@")"]; - break; - - case wkb_multilinestring: - [wkt appendString:@"MULTILINESTRING("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - [wkt appendString:@"("]; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (j < numberOfSubItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE; - } - ptr += WKB_HEADER_SIZE; - [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; - } - ptr -= WKB_HEADER_SIZE; - [wkt appendString:@")"]; - break; - - case wkb_multipolygon: - [wkt appendString:@"MULTIPOLYGON("]; - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - [wkt appendString:@"("]; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&numberOfSubSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - [wkt appendString:@"("]; - for(k=0; k < numberOfSubSubItems; k++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - [wkt appendFormat:@"%.16g %.16g%@", aPoint.x, aPoint.y, (k < numberOfSubSubItems-1) ? @"," : @""]; - ptr += POINT_DATA_SIZE; - } - [wkt appendFormat:@")%@", (j < numberOfSubItems-1) ? @"," : @""]; - } - ptr += WKB_HEADER_SIZE; - [wkt appendFormat:@")%@", (i < numberOfItems-1) ? @"," : @""]; - } - ptr -= WKB_HEADER_SIZE; - [wkt appendString:@")"]; - break; - - default: - return @"Error geometrycollection type parsing"; - } - [wkt appendString:(n < numberOfCollectionItems-1) ? @"," : @""]; - } - [wkt appendFormat:@")%@", (srid) ? [NSString stringWithFormat:@",%d",srid]: @""]; - return wkt; - break; - - default: - return @"Error geometry type parsing"; - } - return @"Error while parsing"; -} - -/** - * Return a dictionary of coordinates, bbox, etc. to be able to draw the given geometry. - * - * @return A dictionary having the following keys: "bbox" as NSArray of NSNumbers of x_min x_max y_min y_max, "coordinates" as NSArray containing the - * the to be drawn points as NSPoint strings, "type" as NSString - */ -- (NSDictionary*)coordinates -{ - - char byteOrder; - uint32_t geoType, numberOfItems, numberOfSubItems, numberOfSubSubItems, numberOfCollectionItems; - int32_t srid; - st_point_2d aPoint; - - uint32_t i, j, k, n; // Loop counter for numberOf...Items - uint32_t ptr = BUFFER_START; // pointer to geoBuffer while parsing - - double x_min = DBL_MAX; - double x_max = -DBL_MAX; - double y_min = DBL_MAX; - double y_max = -DBL_MAX; - - NSMutableArray *coordinates = [NSMutableArray array]; - NSMutableArray *subcoordinates = [NSMutableArray array]; - NSMutableArray *pointcoordinates = [NSMutableArray array]; - NSMutableArray *linecoordinates = [NSMutableArray array]; - NSMutableArray *linesubcoordinates = [NSMutableArray array]; - NSMutableArray *polygoncoordinates = [NSMutableArray array]; - NSMutableArray *polygonsubcoordinates = [NSMutableArray array]; - - if (bufferLength < WKB_HEADER_SIZE) - return nil; - - memcpy(&srid, &geoBuffer[0], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - - byteOrder = geoBuffer[ptr]; - - if(byteOrder != 0x1) - return nil; - - ptr++; - geoType = geoBuffer[ptr]; - ptr += SIZEOF_STORED_UINT32; - - switch(geoType) { - - case wkb_point: - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = aPoint.x; - x_max = aPoint.x; - y_min = aPoint.y; - y_max = aPoint.y; - [coordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - return [NSDictionary dictionaryWithObjectsAndKeys: - [NSArray arrayWithObjects: - [NSNumber numberWithDouble:x_min], - [NSNumber numberWithDouble:x_max], - [NSNumber numberWithDouble:y_min], - [NSNumber numberWithDouble:y_max], - nil], @"bbox", - coordinates, @"coordinates", - [NSNumber numberWithInt:srid], @"srid", - @"POINT", @"type", - nil]; - break; - - case wkb_linestring: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(i=0; i < numberOfItems; i++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [coordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - } - return [NSDictionary dictionaryWithObjectsAndKeys: - [NSArray arrayWithObjects: - [NSNumber numberWithDouble:x_min], - [NSNumber numberWithDouble:x_max], - [NSNumber numberWithDouble:y_min], - [NSNumber numberWithDouble:y_max], - nil], @"bbox", - [NSArray arrayWithObjects:coordinates,nil], @"coordinates", - @"LINESTRING", @"type", - nil]; - break; - - case wkb_polygon: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [subcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - } - [coordinates addObject:[[subcoordinates copy] autorelease]]; - [subcoordinates removeAllObjects]; - } - return [NSDictionary dictionaryWithObjectsAndKeys: - [NSArray arrayWithObjects: - [NSNumber numberWithDouble:x_min], - [NSNumber numberWithDouble:x_max], - [NSNumber numberWithDouble:y_min], - [NSNumber numberWithDouble:y_max], - nil], @"bbox", - coordinates, @"coordinates", - [NSNumber numberWithInt:srid], @"srid", - @"POLYGON", @"type", - nil]; - break; - - case wkb_multipoint: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [coordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE+WKB_HEADER_SIZE; - } - return [NSDictionary dictionaryWithObjectsAndKeys: - [NSArray arrayWithObjects: - [NSNumber numberWithDouble:x_min], - [NSNumber numberWithDouble:x_max], - [NSNumber numberWithDouble:y_min], - [NSNumber numberWithDouble:y_max], - nil], @"bbox", - coordinates, @"coordinates", - [NSNumber numberWithInt:srid], @"srid", - @"MULTIPOINT", @"type", - nil]; - break; - - case wkb_multilinestring: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [subcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - } - ptr += WKB_HEADER_SIZE; - [coordinates addObject:[[subcoordinates copy] autorelease]]; - [subcoordinates removeAllObjects]; - } - return [NSDictionary dictionaryWithObjectsAndKeys: - [NSArray arrayWithObjects: - [NSNumber numberWithDouble:x_min], - [NSNumber numberWithDouble:x_max], - [NSNumber numberWithDouble:y_min], - [NSNumber numberWithDouble:y_max], - nil], @"bbox", - coordinates, @"coordinates", - [NSNumber numberWithInt:srid], @"srid", - @"MULTILINESTRING", @"type", - nil]; - break; - - case wkb_multipolygon: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&numberOfSubSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(k=0; k < numberOfSubSubItems; k++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [subcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - } - [coordinates addObject:[[subcoordinates copy] autorelease]]; - [subcoordinates removeAllObjects]; - } - ptr += WKB_HEADER_SIZE; - } - return [NSDictionary dictionaryWithObjectsAndKeys: - [NSArray arrayWithObjects: - [NSNumber numberWithDouble:x_min], - [NSNumber numberWithDouble:x_max], - [NSNumber numberWithDouble:y_min], - [NSNumber numberWithDouble:y_max], - nil], @"bbox", - coordinates, @"coordinates", - [NSNumber numberWithInt:srid], @"srid", - @"MULTIPOLYGON", @"type", - nil]; - break; - - case wkb_geometrycollection: - numberOfCollectionItems = geoBuffer[ptr]; - ptr += SIZEOF_STORED_UINT32; - - for(n=0; n < numberOfCollectionItems; n++) { - - byteOrder = geoBuffer[ptr]; - - if(byteOrder != 0x1) - return nil; - - ptr++; - geoType = geoBuffer[ptr]; - ptr += SIZEOF_STORED_UINT32; - - switch(geoType) { - - case wkb_point: - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [pointcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - break; - - case wkb_linestring: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(i=0; i < numberOfItems; i++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [linesubcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - } - [linecoordinates addObject:[[linesubcoordinates copy] autorelease]]; - [linesubcoordinates removeAllObjects]; - break; - - case wkb_polygon: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [polygonsubcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - } - [polygoncoordinates addObject:[[polygonsubcoordinates copy] autorelease]]; - [polygonsubcoordinates removeAllObjects]; - } - break; - - case wkb_multipoint: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [pointcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE+WKB_HEADER_SIZE; - } - ptr -= WKB_HEADER_SIZE; - break; - - case wkb_multilinestring: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [linesubcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - } - [linecoordinates addObject:[[linesubcoordinates copy] autorelease]]; - [linesubcoordinates removeAllObjects]; - ptr += WKB_HEADER_SIZE; - } - ptr -= WKB_HEADER_SIZE; - break; - - case wkb_multipolygon: - memcpy(&numberOfItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32+WKB_HEADER_SIZE; - for(i=0; i < numberOfItems; i++) { - memcpy(&numberOfSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(j=0; j < numberOfSubItems; j++) { - memcpy(&numberOfSubSubItems, &geoBuffer[ptr], SIZEOF_STORED_UINT32); - ptr += SIZEOF_STORED_UINT32; - for(k=0; k < numberOfSubSubItems; k++) { - memcpy(&aPoint, &geoBuffer[ptr], POINT_DATA_SIZE); - x_min = (aPoint.x < x_min) ? aPoint.x : x_min; - x_max = (aPoint.x > x_max) ? aPoint.x : x_max; - y_min = (aPoint.y < y_min) ? aPoint.y : y_min; - y_max = (aPoint.y > y_max) ? aPoint.y : y_max; - [polygonsubcoordinates addObject:NSStringFromPoint(NSMakePoint((CGFloat)aPoint.x, (CGFloat)aPoint.y))]; - ptr += POINT_DATA_SIZE; - } - [polygoncoordinates addObject:[[polygonsubcoordinates copy] autorelease]]; - [polygonsubcoordinates removeAllObjects]; - } - ptr += WKB_HEADER_SIZE; - } - ptr -= WKB_HEADER_SIZE; - break; - - default: - return nil; - } - } - return [NSDictionary dictionaryWithObjectsAndKeys: - [NSArray arrayWithObjects: - [NSNumber numberWithDouble:x_min], - [NSNumber numberWithDouble:x_max], - [NSNumber numberWithDouble:y_min], - [NSNumber numberWithDouble:y_max], - nil], @"bbox", - [NSArray arrayWithObjects:pointcoordinates, linecoordinates, polygoncoordinates, nil], @"coordinates", - @"GEOMETRYCOLLECTION", @"type", - nil]; - break; - - default: - return nil; - } - return nil; -} - -/** - * Return the WKB type of the geoBuffer ie if buffer represents a POINT, LINESTRING, etc. - * according to stored wkbType in header file. It returns -1 if an error occurred. - */ -- (NSInteger)wkbType -{ - char byteOrder; - UInt32 geoType; - - NSUInteger ptr = BUFFER_START; // pointer to geoBuffer while parsing - - if (bufferLength < WKB_HEADER_SIZE) - return -1; - - byteOrder = geoBuffer[ptr]; - - if(byteOrder != 0x1) - return -1; - - ptr++; - geoType = geoBuffer[ptr]; - - if(geoType > 0 && geoType < 8) - return geoType; - else - return -1; - -} - -/** - * Return the WKT type of the geoBuffer ie if buffer represents a POINT, LINESTRING, etc. - * according to stored wkbType in header file. It returns nil if an error occurred. - */ -- (NSString*)wktType -{ - switch([self wkbType]) - { - case wkb_point: - return @"POINT"; - case wkb_linestring: - return @"LINESTRING"; - case wkb_polygon: - return @"POLYGON"; - case wkb_multipoint: - return @"MULTIPOINT"; - case wkb_multilinestring: - return @"MULTILINESTRING"; - case wkb_multipolygon: - return @"MULTIPOLYGON"; - case wkb_geometrycollection: - return @"GEOMETRYCOLLECTION"; - default: - return nil; - } - return nil; -} - -/** - * dealloc - */ -- (void)dealloc -{ - if(geoBuffer && bufferLength) free(geoBuffer); - [super dealloc]; -} - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPKit.h b/Frameworks/MCPKit/MCPFoundationKit/MCPKit.h deleted file mode 100644 index 57e6d62d..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPKit.h +++ /dev/null @@ -1,44 +0,0 @@ -// -// $Id$ -// -// MCPKit.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 08/12/2001. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -#import -#import -#import -#import -#import -#import -#import -#import -#import - -#import -#import - -#import "mysql.h" diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPNull.h b/Frameworks/MCPKit/MCPFoundationKit/MCPNull.h deleted file mode 100644 index 500e0cf8..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPNull.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// $Id$ -// -// MCPNull.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 02/06/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -@interface NSObject (MCPNSNullTest) - -- (BOOL)isNSNull; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPNull.m b/Frameworks/MCPKit/MCPFoundationKit/MCPNull.m deleted file mode 100644 index 4232fb2a..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPNull.m +++ /dev/null @@ -1,43 +0,0 @@ -// -// $Id$ -// -// MCPNull.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 02/06/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPNull.h" - -@implementation NSObject (MCPNSNullTest) - -/** - * This Category is meant to make any kind of object the possible target to the test (isNSNull). - */ -- (BOOL) isNSNull -{ - static id NSNullForComparison; - if (!NSNullForComparison) NSNullForComparison = [NSNull null]; - return (self == NSNullForComparison); -} - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPNumber.h b/Frameworks/MCPKit/MCPFoundationKit/MCPNumber.h deleted file mode 100644 index 8be1dd8b..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPNumber.h +++ /dev/null @@ -1,83 +0,0 @@ -// -// $Id$ -// -// MCPNumber.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 08/12/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -@interface MCPNumber : NSNumber -{ - const char *typeCode; - NSNumber *number; -} - -+ (MCPNumber *)numberWithChar:(char)value; -+ (MCPNumber *)numberWithUnsignedChar:(unsigned char)value; -+ (MCPNumber *)numberWithShort:(short)value; -+ (MCPNumber *)numberWithUnsignedShort:(unsigned short)value; -+ (MCPNumber *)numberWithInt:(int)value; -+ (MCPNumber *)numberWithUnsignedInt:(unsigned int)value; -+ (MCPNumber *)numberWithLong:(long)value; -+ (MCPNumber *)numberWithUnsignedLong:(unsigned long)value; -+ (MCPNumber *)numberWithLongLong:(long long)value; -+ (MCPNumber *)numberWithUnsignedLongLong:(unsigned long long)value; -+ (MCPNumber *)numberWithFloat:(float)value; -+ (MCPNumber *)numberWithDouble:(double)value; -+ (MCPNumber *)numberWithBool:(BOOL)value; - -- (id)initWithChar:(char)value; -- (id)initWithUnsignedChar:(unsigned char)value; -- (id)initWithShort:(short)value; -- (id)initWithUnsignedShort:(unsigned short)value; -- (id)initWithInt:(int)value; -- (id)initWithUnsignedInt:(unsigned int)value; -- (id)initWithLong:(long)value; -- (id)initWithUnsignedLong:(unsigned long)value; -- (id)initWithLongLong:(long long)value; -- (id)initWithUnsignedLongLong:(unsigned long long)value; -- (id)initWithFloat:(float)value; -- (id)initWithDouble:(double)value; -- (id)initWithBool:(BOOL)value; - -// Important NSNumber primitive methods -- (const char *)objCType; -- (void)getValue:(void *)buffer; - -- (char)charValue; -- (unsigned char)unsignedCharValue; -- (short)shortValue; -- (unsigned short)unsignedShortValue; -- (int)intValue; -- (unsigned int)unsignedIntValue; -- (long)longValue; -- (unsigned long)unsignedLongValue; -- (long long)longLongValue; -- (unsigned long long)unsignedLongLongValue; -- (float)floatValue; -- (double)doubleValue; -- (BOOL)boolValue; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPNumber.m b/Frameworks/MCPKit/MCPFoundationKit/MCPNumber.m deleted file mode 100644 index de035ee8..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPNumber.m +++ /dev/null @@ -1,301 +0,0 @@ -// -// $Id$ -// -// MCPNumber.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 08/12/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPNumber.h" - -@implementation MCPNumber - -#pragma mark - -#pragma mark 'Creator' class methods - -+ (MCPNumber *)numberWithChar:(char)value -{ - return [[[MCPNumber alloc] initWithChar:value] autorelease]; -} - -+ (MCPNumber *)numberWithUnsignedChar:(unsigned char)value -{ - return [[[MCPNumber alloc] initWithUnsignedChar:value] autorelease]; -} - -+ (MCPNumber *)numberWithShort:(short)value -{ - return [[[MCPNumber alloc] initWithShort:value] autorelease]; -} - -+ (MCPNumber *)numberWithUnsignedShort:(unsigned short)value -{ - return [[[MCPNumber alloc] initWithUnsignedShort:value] autorelease]; -} - -+ (MCPNumber *)numberWithInt:(int)value -{ - return [[[MCPNumber alloc] initWithInteger:value] autorelease]; -} - -+ (MCPNumber *)numberWithUnsignedInt:(unsigned int)value -{ - return [[[MCPNumber alloc] initWithUnsignedInteger:value] autorelease]; -} - -+ (MCPNumber *)numberWithLong:(long)value -{ - return [[[MCPNumber alloc] initWithLong:value] autorelease]; -} - -+ (MCPNumber *)numberWithUnsignedLong:(unsigned long)value -{ - return [[[MCPNumber alloc] initWithUnsignedLong:value] autorelease]; -} - -+ (MCPNumber *)numberWithLongLong:(long long)value -{ - return [[[MCPNumber alloc] initWithLongLong:value] autorelease]; -} - -+ (MCPNumber *)numberWithUnsignedLongLong:(unsigned long long)value -{ - return [[[MCPNumber alloc] initWithUnsignedLongLong:value] autorelease]; -} - -+ (MCPNumber *)numberWithFloat:(float)value -{ - return [[[MCPNumber alloc] initWithDouble:value] autorelease]; -} - -+ (MCPNumber *)numberWithDouble:(double)value -{ - return [[[MCPNumber alloc] initWithDouble:value] autorelease]; -} - -+ (MCPNumber *)numberWithBool:(BOOL)value -{ - return [[[MCPNumber alloc] initWithBool:value] autorelease]; -} - -#pragma mark - -#pragma mark Initialilzers - -- (id)initWithChar:(char)value -{ - typeCode = @encode(char); - number = [[NSNumber alloc] initWithChar:value]; - - return self; -} - -- (id)initWithUnsignedChar:(unsigned char)value -{ - typeCode = @encode(unsigned char); - number = [[NSNumber alloc] initWithUnsignedChar:value]; - - return self; -} - -- (id)initWithShort:(short)value -{ - typeCode = @encode(short); - number = [[NSNumber alloc] initWithShort:value]; - - return self; -} - -- (id)initWithUnsignedShort:(unsigned short)value -{ - typeCode = @encode(unsigned short); - number = [[NSNumber alloc] initWithUnsignedShort:value]; - - return self; -} - -- (id)initWithInt:(int)value -{ - typeCode = @encode(NSInteger); - number = [[NSNumber alloc] initWithInteger:value]; - - return self; -} - -- (id)initWithUnsignedInt:(unsigned int)value -{ - typeCode = @encode(NSUInteger); - number = [[NSNumber alloc] initWithUnsignedInteger:value]; - - return self; -} - -- (id)initWithLong:(long) value -{ - typeCode = @encode(long); - number = [[NSNumber alloc] initWithLong:value]; - - return self; -} - -- (id)initWithUnsignedLong:(unsigned long)value -{ - typeCode = @encode(unsigned long); - number = [[NSNumber alloc] initWithUnsignedLong:value]; - - return self; -} - -- (id)initWithLongLong:(long long)value -{ - typeCode = @encode(long long); - number = [[NSNumber alloc] initWithLongLong:value]; - - return self; -} - -- (id)initWithUnsignedLongLong:(unsigned long long)value -{ - typeCode = @encode(unsigned long long); - number = [[NSNumber alloc] initWithUnsignedLongLong:value]; - - return self; -} - -- (id)initWithFloat:(float)value -{ - typeCode = @encode(CGFloat); - number = [[NSNumber alloc] initWithDouble:value]; - - return self; -} - -- (id)initWithDouble:(double)value -{ - typeCode = @encode(double); - number = [[NSNumber alloc] initWithDouble:value]; - - return self; -} - -- (id)initWithBool:(BOOL)value -{ - typeCode = @encode(BOOL); - number = [[NSNumber alloc] initWithBool:value]; - - return self; -} - -#pragma mark - -#pragma mark NSValue primitive methods - -- (const char *)objCType -{ - return typeCode; -} - -- (void)getValue:(void *)buffer -{ - [number getValue:buffer]; -} - -#pragma mark - -#pragma mark NSNumber primitive methods - -/** - * Reparing the absence of primitive methodes in NSNumber - */ -- (char)charValue -{ - return [number charValue]; -} - -- (unsigned char)unsignedCharValue -{ - return [number unsignedCharValue]; -} - -- (short)shortValue -{ - return [number shortValue]; -} - -- (unsigned short)unsignedShortValue -{ - return [number unsignedShortValue]; -} - -- (int)intValue -{ - return [number intValue]; -} - -- (unsigned int)unsignedIntValue -{ - return [number unsignedIntValue]; -} - -- (long)longValue -{ - return [number longValue]; -} - -- (unsigned long)unsignedLongValue -{ - return [number unsignedLongValue]; -} - -- (long long)longLongValue -{ - return [number longLongValue]; -} - -- (unsigned long long)unsignedLongLongValue -{ - return [number unsignedLongLongValue]; -} - -- (float)floatValue -{ - return [number floatValue]; -} - -- (double)doubleValue -{ - return [number doubleValue]; -} - -- (BOOL)boolValue -{ - return [number boolValue]; -} - -#pragma mark - - -- (void)dealloc -{ - [number release]; - - [super dealloc]; -} - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPResult.h b/Frameworks/MCPKit/MCPFoundationKit/MCPResult.h deleted file mode 100644 index ad50af75..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPResult.h +++ /dev/null @@ -1,86 +0,0 @@ -// -// $Id$ -// -// MCPResult.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 08/12/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -#import "MCPConstants.h" -#import "mysql.h" - -#define MAGIC_BINARY_CHARSET_NR 63 - -@interface MCPResult : NSObject -{ - MYSQL_RES *mResult; /* The MYSQL_RES structure of the C API. */ - NSArray *mNames; /* An NSArray holding the name of the columns. */ - NSStringEncoding mEncoding; /* The encoding used by MySQL server, to ISO-1 default. */ - NSUInteger mNumOfFields; /* The number of fields in the result. */ - NSTimeZone *mTimeZone; /* The time zone of the connection when the query was made. */ - BOOL mReturnDataAsStrings; /* Whether to return data types as strings */ -} - -// Initialization -- (id)initWithMySQLPtr:(MYSQL *)mySQLPtr encoding:(NSStringEncoding)theEncoding timeZone:(NSTimeZone *)iTimeZone; -- (id)initWithResPtr:(MYSQL_RES *)mySQLResPtr encoding:(NSStringEncoding)theEncoding timeZone:(NSTimeZone *)iTimeZone; - -// Result info -- (my_ulonglong)numOfRows; -- (NSUInteger)numOfFields; - -// Rows -- (void)dataSeek:(my_ulonglong)row; -- (id)fetchRowAsType:(MCPReturnType) aType; -- (NSArray *)fetchRowAsArray; -- (NSDictionary *)fetchRowAsDictionary; - -// Columns -- (NSArray *)fetchFieldNames; -- (id)fetchTypesAsType:(MCPReturnType)aType; -- (NSArray *)fetchTypesAsArray; -- (NSDictionary *)fetchTypesAsDictionary; -- (NSArray *)fetchResultFieldsStructure; - -- (NSUInteger)fetchFlagsAtIndex:(NSUInteger)index; -- (NSUInteger)fetchFlagsForKey:(NSString *)key; - -- (BOOL)isBlobAtIndex:(NSUInteger)index; -- (BOOL)isBlobForKey:(NSString *)key; - -// Conversion -- (void) setReturnDataAsStrings:(BOOL)alwaysConvertData; -- (NSString *)stringWithText:(NSData *)theTextData; -- (const char *)cStringFromString:(NSString *)theString; -- (NSString *)stringWithCString:(const char *)theCString; - -// Other -- (NSString *)mysqlTypeToStringForType:(NSUInteger)type withCharsetNr:(NSUInteger)charsetnr withFlags:(NSUInteger)flags withLength:(unsigned long long)length; -- (NSString *)mysqlTypeToGroupForType:(NSUInteger)type withCharsetNr:(NSUInteger)charsetnr withFlags:(NSUInteger)flags; -- (NSString *)findCharsetName:(NSUInteger)charsetnr; -- (NSString *)findCharsetCollation:(NSUInteger)charsetnr; -- (NSUInteger)findCharsetMaxByteLengthPerChar:(NSUInteger)charsetnr; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m b/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m deleted file mode 100644 index f112a02d..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m +++ /dev/null @@ -1,1354 +0,0 @@ -// -// $Id$ -// -// MCPResult.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 08/12/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPConnection.h" -#import "MCPNull.h" -#import "MCPNumber.h" -#import "MCPResult.h" -#import "MCPGeometryData.h" - -NSCalendarDate *MCPYear0000; - -const OUR_CHARSET our_charsets60[] = -{ - {1, "big5","big5_chinese_ci", 1, 2}, - {3, "dec8", "dec8_swedisch_ci", 1, 1}, - {4, "cp850", "cp850_general_ci", 1, 1}, - {6, "hp8", "hp8_english_ci", 1, 1}, - {7, "koi8r", "koi8r_general_ci", 1, 1}, - {8, "latin1", "latin1_swedish_ci", 1, 1}, - {9, "latin2", "latin2_general_ci", 1, 1}, - {10, "swe7", "swe7_swedish_ci", 1, 1}, - {11, "ascii", "ascii_general_ci", 1, 1}, - {12, "ujis", "ujis_japanese_ci", 1, 3}, - {13, "sjis", "sjis_japanese_ci", 1, 2}, - {16, "hebrew", "hebrew_general_ci", 1, 1}, - {18, "tis620", "tis620_thai_ci", 1, 1}, - {19, "euckr", "euckr_korean_ci", 1, 2}, - {22, "koi8u", "koi8u_general_ci", 1, 1}, - {24, "gb2312", "gb2312_chinese_ci", 1, 2}, - {25, "greek", "greek_general_ci", 1, 1}, - {26, "cp1250", "cp1250_general_ci", 1, 1}, - {28, "gbk", "gbk_chinese_ci", 1, 2}, - {30, "latin5", "latin5_turkish_ci", 1, 1}, - {32, "armscii8", "armscii8_general_ci", 1, 1}, - {33, "utf8", "utf8_general_ci", 1, 3}, - {35, "ucs2", "ucs2_general_ci", 2, 2}, - {36, "cp866", "cp866_general_ci", 1, 1}, - {37, "keybcs2", "keybcs2_general_ci", 1, 1}, - {38, "macce", "macce_general_ci", 1, 1}, - {39, "macroman", "macroman_general_ci", 1, 1}, - {40, "cp852", "cp852_general_ci", 1, 1}, - {41, "latin7", "latin7_general_ci", 1, 1}, - {51, "cp1251", "cp1251_general_ci", 1, 1}, - {57, "cp1256", "cp1256_general_ci", 1, 1}, - {59, "cp1257", "cp1257_general_ci", 1, 1}, - {63, "binary", "binary", 1, 1}, - {92, "geostd8", "geostd8_general_ci", 1, 1}, - {95, "cp932", "cp932_japanese_ci", 1, 2}, - {97, "eucjpms", "eucjpms_japanese_ci", 1, 3}, - {2, "latin2", "latin2_czech_cs", 1, 1}, - {5, "latin1", "latin1_german_ci", 1, 1}, - {14, "cp1251", "cp1251_bulgarian_ci", 1, 1}, - {15, "latin1", "latin1_danish_ci", 1, 1}, - {17, "filename", "filename", 1, 5}, - {20, "latin7", "latin7_estonian_cs", 1, 1}, - {21, "latin2", "latin2_hungarian_ci", 1, 1}, - {23, "cp1251", "cp1251_ukrainian_ci", 1, 1}, - {27, "latin2", "latin2_croatian_ci", 1, 1}, - {29, "cp1257", "cp1257_lithunian_ci", 1, 1}, - {31, "latin1", "latin1_german2_ci", 1, 1}, - {34, "cp1250", "cp1250_czech_cs", 1, 1}, - {42, "latin7", "latin7_general_cs", 1, 1}, - {43, "macce", "macce_bin", 1, 1}, - {44, "cp1250", "cp1250_croatian_ci", 1, 1}, - {45, "utf8", "utf8_general_ci", 1, 1}, - {46, "utf8", "utf8_bin", 1, 1}, - {47, "latin1", "latin1_bin", 1, 1}, - {48, "latin1", "latin1_general_ci", 1, 1}, - {49, "latin1", "latin1_general_cs", 1, 1}, - {50, "cp1251", "cp1251_bin", 1, 1}, - {52, "cp1251", "cp1251_general_cs", 1, 1}, - {53, "macroman", "macroman_bin", 1, 1}, - {58, "cp1257", "cp1257_bin", 1, 1}, - {60, "armascii8", "armascii8_bin", 1, 1}, - {65, "ascii", "ascii_bin", 1, 1}, - {66, "cp1250", "cp1250_bin", 1, 1}, - {67, "cp1256", "cp1256_bin", 1, 1}, - {68, "cp866", "cp866_bin", 1, 1}, - {69, "dec8", "dec8_bin", 1, 1}, - {70, "greek", "greek_bin", 1, 1}, - {71, "hebew", "hebrew_bin", 1, 1}, - {72, "hp8", "hp8_bin", 1, 1}, - {73, "keybcs2", "keybcs2_bin", 1, 1}, - {74, "koi8r", "koi8r_bin", 1, 1}, - {75, "koi8u", "koi8u_bin", 1, 1}, - {77, "latin2", "latin2_bin", 1, 1}, - {78, "latin5", "latin5_bin", 1, 1}, - {79, "latin7", "latin7_bin", 1, 1}, - {80, "cp850", "cp850_bin", 1, 1}, - {81, "cp852", "cp852_bin", 1, 1}, - {82, "swe7", "swe7_bin", 1, 1}, - {93, "geostd8", "geostd8_bin", 1, 1}, - {83, "utf8", "utf8_bin", 1, 3}, - {84, "big5", "big5_bin", 1, 2}, - {85, "euckr", "euckr_bin", 1, 2}, - {86, "gb2312", "gb2312_bin", 1, 2}, - {87, "gbk", "gbk_bin", 1, 2}, - {88, "sjis", "sjis_bin", 1, 2}, - {89, "tis620", "tis620_bin", 1, 1}, - {90, "ucs2", "ucs2_bin", 2, 2}, - {91, "ujis", "ujis_bin", 1, 3}, - {94, "latin1", "latin1_spanish_ci", 1, 1}, - {96, "cp932", "cp932_bin", 1, 2}, - {99, "cp1250", "cp1250_polish_ci", 1, 1}, - {98, "eucjpms", "eucjpms_bin", 1, 3}, - {128, "ucs2", "ucs2_unicode_ci", 2, 2}, - {129, "ucs2", "ucs2_icelandic_ci", 2, 2}, - {130, "ucs2", "ucs2_latvian_ci", 2, 2}, - {131, "ucs2", "ucs2_romanian_ci", 2, 2}, - {132, "ucs2", "ucs2_slovenian_ci", 2, 2}, - {133, "ucs2", "ucs2_polish_ci", 2, 2}, - {134, "ucs2", "ucs2_estonian_ci", 2, 2}, - {135, "ucs2", "ucs2_spanish_ci", 2, 2}, - {136, "ucs2", "ucs2_swedish_ci", 2, 2}, - {137, "ucs2", "ucs2_turkish_ci", 2, 2}, - {138, "ucs2", "ucs2_czech_ci", 2, 2}, - {139, "ucs2", "ucs2_danish_ci", 2, 2}, - {140, "ucs2", "ucs2_lithunian_ci", 2, 2}, - {141, "ucs2", "ucs2_slovak_ci", 2, 2}, - {142, "ucs2", "ucs2_spanish2_ci", 2, 2}, - {143, "ucs2", "ucs2_roman_ci", 2, 2}, - {144, "ucs2", "ucs2_persian_ci", 2, 2}, - {145, "ucs2", "ucs2_esperanto_ci", 2, 2}, - {146, "ucs2", "ucs2_hungarian_ci", 2, 2}, - {147, "ucs2", "ucs2_sinhala_ci", 2, 2}, - {192, "utf8mb3", "utf8mb3_general_ci", 1, 3}, - {193, "utf8mb3", "utf8mb3_icelandic_ci", 1, 3}, - {194, "utf8mb3", "utf8mb3_latvian_ci", 1, 3}, - {195, "utf8mb3", "utf8mb3_romanian_ci", 1, 3}, - {196, "utf8mb3", "utf8mb3_slovenian_ci", 1, 3}, - {197, "utf8mb3", "utf8mb3_polish_ci", 1, 3}, - {198, "utf8mb3", "utf8mb3_estonian_ci", 1, 3}, - {119, "utf8mb3", "utf8mb3_spanish_ci", 1, 3}, - {200, "utf8mb3", "utf8mb3_swedish_ci", 1, 3}, - {201, "utf8mb3", "utf8mb3_turkish_ci", 1, 3}, - {202, "utf8mb3", "utf8mb3_czech_ci", 1, 3}, - {203, "utf8mb3", "utf8mb3_danish_ci", 1, 3}, - {204, "utf8mb3", "utf8mb3_lithunian_ci", 1, 3}, - {205, "utf8mb3", "utf8mb3_slovak_ci", 1, 3}, - {206, "utf8mb3", "utf8mb3_spanish2_ci", 1, 3}, - {207, "utf8mb3", "utf8mb3_roman_ci", 1, 3}, - {208, "utf8mb3", "utf8mb3_persian_ci", 1, 3}, - {209, "utf8mb3", "utf8mb3_esperanto_ci", 1, 3}, - {210, "utf8mb3", "utf8mb3_hungarian_ci", 1, 3}, - {211, "utf8mb3", "utf8mb3_sinhala_ci", 1, 3}, - {224, "utf8", "utf8_unicode_ci", 1, 3}, - {225, "utf8", "utf8_icelandic_ci", 1, 3}, - {226, "utf8", "utf8_latvian_ci", 1, 3}, - {227, "utf8", "utf8_romanian_ci", 1, 3}, - {228, "utf8", "utf8_slovenian_ci", 1, 3}, - {229, "utf8", "utf8_polish_ci", 1, 3}, - {230, "utf8", "utf8_estonian_ci", 1, 3}, - {231, "utf8", "utf8_spanish_ci", 1, 3}, - {232, "utf8", "utf8_swedish_ci", 1, 3}, - {233, "utf8", "utf8_turkish_ci", 1, 3}, - {234, "utf8", "utf8_czech_ci", 1, 3}, - {235, "utf8", "utf8_danish_ci", 1, 3}, - {236, "utf8", "utf8_lithuanian_ci", 1, 3}, - {237, "utf8", "utf8_slovak_ci", 1, 3}, - {238, "utf8", "utf8_spanish2_ci", 1, 3}, - {239, "utf8", "utf8_roman_ci", 1, 3}, - {240, "utf8", "utf8_persian_ci", 1, 3}, - {241, "utf8", "utf8_esperanto_ci", 1, 3}, - {242, "utf8", "utf8_hungarian_ci", 1, 3}, - {243, "utf8", "utf8_sinhala_ci", 1, 3}, - {254, "utf8mb3", "utf8mb3_general_cs", 1, 3}, - {0, NULL, NULL, 0, 0} -}; - -@implementation MCPResult - -/** - * Hold the results of a query to a MySQL database server. It correspond to the MYSQL_RES structure of the C API, and to the statement handle of the PERL DBI/DBD. - * - * Uses the !{mysql_store_result()} function from the C API. - * - * This object is generated only by a MCPConnection object, in this way (see #{MCPConnection} documentation): - * - * MCPConnection *theConnec = [MCPConnection alloc]; - * MCPResult *theRes; - * NSDictionary *theDict; - * NSArray *theColNames; - * int i, j; - * - * theConnec = [theConnec initToHost:@"albert.com" withLogin:@"toto" password:@"albert" usingPort:0]; - * [theConnec selectDB:@"db1"]; - * theRes = [theConnec queryString:@"select * from table1"]; - * theColNames = [theRes fetchFiedlsName]; - * i = 0; - * - * while (theDict = [theRes fetchRowAsDictionary]) { - * NSLog(@"Row : %d\n", i); - * for (j=0; j<[theColNames count]; j++) { - * NSLog(@" Field : %@, contain : %@\n", [theColNames objectAtIndex:j], [theDict objectForKey:[theColNames objectAtIndex:j]]); - * } - * i++; - * } - */ - -/** - * Initialize the class version to 3.0.1 - */ -+ (void)initialize -{ - if ((self = [MCPResult class])) { - [self setVersion:030001]; // Ma.Mi.Re -> MaMiRe - MCPYear0000 = [NSCalendarDate dateWithTimeIntervalSinceReferenceDate:-63146822400.0]; - [MCPYear0000 setCalendarFormat:@"%Y"]; - } -} - -#pragma mark - -#pragma mark Initialisation - -/** - * Empty init, normaly of NO use to the user, again, MCPResult should be made through calls to MCPConnection - */ -- (id)init -{ - if ((self = [super init])) { - mEncoding = [MCPConnection defaultMySQLEncoding]; - mReturnDataAsStrings = NO; - mTimeZone = nil; - - if (mResult) { - mysql_free_result(mResult); - mResult = NULL; - } - - if (mNames) { - [mNames release]; - mNames = nil; - } - - mNumOfFields = 0; - } - - return self; -} - -/** - * Initialise a MCPResult, it is used internally by MCPConnection !{queryString:} method: the only proper - * way to get a running MCPResult object. - */ -- (id)initWithMySQLPtr:(MYSQL *)mySQLPtr encoding:(NSStringEncoding)iEncoding timeZone:(NSTimeZone *)iTimeZone -{ - if ((self = [super init])) { - mEncoding = iEncoding; - mTimeZone = [iTimeZone retain]; - mReturnDataAsStrings = NO; - - if (mResult) { - mysql_free_result(mResult); - mResult = NULL; - } - - if (mNames) { - [mNames release]; - mNames = nil; - } - - mResult = mysql_store_result(mySQLPtr); - - if (mResult) { - mNumOfFields = mysql_num_fields(mResult); - } - else { - mNumOfFields = 0; - } - } - - return self; -} - -/** - * This metod is used internally by MCPConnection object when it have already a MYSQL_RES object to initialise - * MCPResult object. Initialise a MCPResult with the MYSQL_RES pointer (returned by such a function as mysql_list_dbs). - * NB: MCPResult should be made by using one of the method of MCPConnection. - */ -- (id)initWithResPtr:(MYSQL_RES *)mySQLResPtr encoding:(NSStringEncoding)iEncoding timeZone:(NSTimeZone *)iTimeZone -{ - if ((self = [super init])) { - mEncoding = iEncoding; - mTimeZone = [iTimeZone retain]; - mReturnDataAsStrings = NO; - - if (mResult) { - mysql_free_result(mResult); - mResult = NULL; - } - - if (mNames) { - [mNames release]; - mNames = nil; - } - - mResult = mySQLResPtr; - - if (mResult) { - mNumOfFields = mysql_num_fields(mResult); - } - else { - mNumOfFields = 0; - } - } - - return self; -} - -#pragma mark - -#pragma mark Result info - -/** - * Return the number of rows selected by the query. - */ -- (my_ulonglong)numOfRows -{ - if (mResult) { - return mysql_num_rows(mResult); - } - - return 0; -} - -/** - * Return the number of fields selected by the query. As a side effect it forces an update of the number of fields. - */ -- (NSUInteger)numOfFields -{ - if (mResult) { - return mNumOfFields = mysql_num_fields(mResult); - } - - return mNumOfFields = 0; -} - -#pragma mark - -#pragma mark Rows - -/** - * Go to a precise row in the selected result. 0 is the very first row. - */ -- (void)dataSeek:(my_ulonglong)row -{ - my_ulonglong theRow = (row < 1)? 0 : row; - theRow = (theRow < [self numOfRows]) ? theRow : ([self numOfRows] - 1); - mysql_data_seek(mResult,theRow); -} - -/** - * - */ -- (id)fetchRowAsType:(MCPReturnType)aType -{ - MYSQL_ROW theRow; - unsigned long *theLengths; - MYSQL_FIELD *theField; - NSUInteger i; - id theReturn; - - if (mResult == NULL) { - // If there is no results, returns nil, as after the last row... - return nil; - } - - theRow = mysql_fetch_row(mResult); - - if (theRow == NULL) { - return nil; - } - - switch (aType) { - case MCPTypeArray: - theReturn = [NSMutableArray arrayWithCapacity:mNumOfFields]; - break; - case MCPTypeDictionary: - if (mNames == nil) { - [self fetchFieldNames]; - } - theReturn = [NSMutableDictionary dictionaryWithCapacity:mNumOfFields]; - break; - default : - NSLog (@"Unknown type : %d, will return an Array!\n", (int)aType); - theReturn = [NSMutableArray arrayWithCapacity:mNumOfFields]; - break; - } - - theLengths = mysql_fetch_lengths(mResult); - theField = mysql_fetch_fields(mResult); - - for (i=0; i= theNumFields) { - // Out of range... should raise an exception - theRet = 0; - } - else { - theRet = theField[anIndex].flags; - } - - return theRet; -} - -/** - * - */ -- (NSUInteger)fetchFlagsForKey:(NSString *)key -{ - NSUInteger theRet; - NSUInteger anIndex; - MYSQL_FIELD *theField; - - if (mResult == NULL) { - // If no results, give an empty array. Maybe it's better to give a nil pointer? - return (0); - } - - if (mNames == nil) { - [self fetchFieldNames]; - } - - theField = mysql_fetch_fields(mResult); - - if ([mNames indexOfObject:key] == NSNotFound) { - // Non existent key... should raise an exception - theRet = 0; - } - else { - anIndex = [mNames indexOfObject:key]; - - theRet = theField[anIndex].flags; - } - - return theRet; -} - -/** - * Return YES if the field with the given index is a BLOB. It should be used to discriminates between BLOBs - * and TEXTs. - * - * #{DEPRECATED}, This method is not consistent with the C API which is supposed to return YES for BOTH - * text and blob (and BTW is also deprecated)... - * - * #{NOTE} That the current version handles properly TEXT, and returns those as NSString (and not NSData as - * it used to be). - */ -- (BOOL)isBlobAtIndex:(NSUInteger)anIndex -{ - BOOL theRet; - NSUInteger theNumFields; - MYSQL_FIELD *theField; - - if (mResult == NULL) { - // If no results, give an empty array. Maybe it's better to give a nil pointer? - return (NO); - } - - theNumFields = [self numOfFields]; - theField = mysql_fetch_fields(mResult); - - if (anIndex >= theNumFields) { - // Out of range... should raise an exception - theRet = NO; - } - else { - switch(theField[anIndex].type) { - case FIELD_TYPE_TINY_BLOB: - case FIELD_TYPE_BLOB: - case FIELD_TYPE_MEDIUM_BLOB: - case FIELD_TYPE_LONG_BLOB: - theRet = (theField[anIndex].flags & BINARY_FLAG); - break; - default: - theRet = NO; - break; - } - } - - return theRet; -} - -/** - * Return YES if the field (by name) with the given index is a BLOB. It should be used to discriminates - * between BLOBs and TEXTs. - * - * #{DEPRECATED}, This method is not consistent with the C API which is supposed to return YES for BOTH - * text and blob (and BTW is also deprecated)... - * - * #{NOTE} That the current version handles properly TEXT, and returns those as NSString (and not NSData - * as it used to be). - */ -- (BOOL)isBlobForKey:(NSString *)key -{ - BOOL theRet; - NSUInteger anIndex; - MYSQL_FIELD *theField; - - if (mResult == NULL) { - // If no results, give an empty array. Maybe it's better to give a nil pointer? - return (NO); - } - - if (mNames == nil) { - [self fetchFieldNames]; - } - - theField = mysql_fetch_fields(mResult); - - if ([mNames indexOfObject:key] == NSNotFound) { - // Non existent key... should raise an exception - theRet = NO; - } - else { - anIndex = [mNames indexOfObject:key]; - - switch(theField[anIndex].type) { - case FIELD_TYPE_TINY_BLOB: - case FIELD_TYPE_BLOB: - case FIELD_TYPE_MEDIUM_BLOB: - case FIELD_TYPE_LONG_BLOB: - theRet = (theField[anIndex].flags & BINARY_FLAG); - break; - default: - theRet = NO; - break; - } - } - - return theRet; -} - -#pragma mark - -#pragma mark Conversion - -/** - * Set whether the result should return data types as strings. This may be useful - * for queries where the result may be returned in either string or data form, but - * will be converted to string for display and use anyway. - * Note that certain MySQL versions also return data types for strings - eg SHOW - * commands like SHOW CREATE TABLE or SHOW VARIABLES, and this conversion can be - * necessary there. - */ -- (void) setReturnDataAsStrings:(BOOL)alwaysConvertData -{ - mReturnDataAsStrings = alwaysConvertData; -} - -/** - * Use the string encoding to convert the returned NSData to a string (for a TEXT field). - */ -- (NSString *)stringWithText:(NSData *)theTextData -{ - NSString *theString; - - if (theTextData == nil) { - return nil; - } - - theString = [[NSString alloc] initWithData:theTextData encoding:mEncoding]; - - if (theString) { - [theString autorelease]; - } - - return theString; -} - -/** - * Return a (long) string containing the table of results, first line being the fields name, next line(s) - * the row(s). Useful to have NSLog logging a MCPResult (example). - */ -- (NSString *)description -{ - if (mResult == NULL) { - return @"This is an empty MCPResult\n"; - } - else { - NSMutableString *theString = [NSMutableString stringWithCapacity:0]; - NSUInteger i; - NSArray *theRow; - MYSQL_ROW_OFFSET thePosition; - BOOL shouldTruncateFields = [MCPConnection truncateLongField]; - - // First line, saying we are displaying a MCPResult - [theString appendFormat:@"MCPResult: (encoding : %ld, dim %ld x %ld)\n", (long)mEncoding, (long)mNumOfFields, (long)[self numOfRows]]; - - // Second line: the field names, tab separated - [self fetchFieldNames]; - - for (i=0; i<(mNumOfFields-1); i++) { - [theString appendFormat:@"%@\t", [mNames objectAtIndex:i]]; - } - - [theString appendFormat:@"%@\n", [mNames objectAtIndex:i]]; - // Next lines, the records (saving current position to put it back after the full display) - thePosition = mysql_row_tell(mResult); - [self dataSeek:0]; - - while ((theRow = [self fetchRowAsArray])) - { - id theField = [theRow objectAtIndex:i]; - - if (shouldTruncateFields) { - if (([theField isKindOfClass:[NSString class]]) && (kLengthOfTruncationForLog < [(NSString *)theField length])) { - theField = [theField substringToIndex:kLengthOfTruncationForLog]; - } - else if (([theField isKindOfClass:[NSData class]]) && (kLengthOfTruncationForLog < [(NSData *)theField length])) { - theField = [NSData dataWithBytes:[theField bytes] length:kLengthOfTruncationForLog]; - } - } - - for (i=0; i<(mNumOfFields - 1); i++) - { - [theString appendFormat:@"%@\t", theField]; - } - - [theString appendFormat:@"%@\n", theField]; - } - - // Returning to the proper row - mysql_row_seek(mResult, thePosition); - - return theString; - } -} - -/** - * For internal use only. Transform a NSString to a C type string (ended with \0) using ethe character set - * from the MCPConnection. Lossy conversions are enabled. - */ -- (const char *)cStringFromString:(NSString *)theString -{ - NSMutableData *theData; - - if (!theString) { - return (const char *)NULL; - } - - theData = [NSMutableData dataWithData:[theString dataUsingEncoding:mEncoding allowLossyConversion:YES]]; - [theData increaseLengthBy:1]; - - return (const char *)[theData bytes]; -} - -/** - * Return a NSString from a C style string encoded with the character set of theMCPConnection. - */ -- (NSString *)stringWithCString:(const char *)theCString -{ - if (theCString == NULL) return @""; - - return [NSString stringWithCString:theCString encoding:mEncoding]; -} - -#pragma mark - -#pragma mark Other - -/** - * Convert a mysql_type to a string - */ -- (NSString *)mysqlTypeToStringForType:(NSUInteger)type withCharsetNr:(NSUInteger)charsetnr withFlags:(NSUInteger)flags withLength:(unsigned long long)length -{ - // BOOL isUnsigned = (flags & UNSIGNED_FLAG) != 0; - // BOOL isZerofill = (flags & ZEROFILL_FLAG) != 0; - - switch (type) { - case FIELD_TYPE_BIT: - return @"BIT"; - case MYSQL_TYPE_DECIMAL: - case MYSQL_TYPE_NEWDECIMAL: - //return isUnsigned ? (isZerofill? @"DECIMAL UNSIGNED ZEROFILL" : @"DECIMAL UNSIGNED"): - return @"DECIMAL"; - case MYSQL_TYPE_TINY: - // return isUnsigned ? (isZerofill? @"TINYINT UNSIGNED ZEROFILL" : @"TINYINT UNSIGNED"): - return @"TINYINT"; - case MYSQL_TYPE_SHORT: - // return isUnsigned ? (isZerofill? @"SMALLINT UNSIGNED ZEROFILL" : @"SMALLINT UNSIGNED"): - return @"SMALLINT"; - case MYSQL_TYPE_LONG: - // return isUnsigned ? (isZerofill? @"INT UNSIGNED ZEROFILL" : @"INT UNSIGNED"): - return @"INT"; - case MYSQL_TYPE_FLOAT: - // return isUnsigned ? (isZerofill? @"FLOAT UNSIGNED ZEROFILL" : @"FLOAT UNSIGNED"): - return @"FLOAT"; - case MYSQL_TYPE_DOUBLE: - // return isUnsigned ? (isZerofill? @"DOUBLE UNSIGNED ZEROFILL" : @"DOUBLE UNSIGNED"): - return @"DOUBLE"; - case MYSQL_TYPE_NULL: - return @"NULL"; - case MYSQL_TYPE_TIMESTAMP: - return @"TIMESTAMP"; - case MYSQL_TYPE_LONGLONG: - // return isUnsigned ? (isZerofill? @"BIGINT UNSIGNED ZEROFILL" : @"BIGINT UNSIGNED") : - return @"BIGINT"; - case MYSQL_TYPE_INT24: - // return isUnsigned ? (isZerofill? @"MEDIUMINT UNSIGNED ZEROFILL" : @"MEDIUMINT UNSIGNED") : - return @"MEDIUMINT"; - case MYSQL_TYPE_DATE: - return @"DATE"; - case MYSQL_TYPE_TIME: - return @"TIME"; - case MYSQL_TYPE_DATETIME: - return @"DATETIME"; - case MYSQL_TYPE_TINY_BLOB:// should no appear over the wire - case MYSQL_TYPE_MEDIUM_BLOB:// should no appear over the wire - case MYSQL_TYPE_LONG_BLOB:// should no appear over the wire - case MYSQL_TYPE_BLOB: - { - BOOL isBlob = (charsetnr == MAGIC_BINARY_CHARSET_NR); - switch ((NSInteger)length/[self findCharsetMaxByteLengthPerChar:charsetnr]) { - case 255: return isBlob? @"TINYBLOB":@"TINYTEXT"; - case 65535: return isBlob? @"BLOB":@"TEXT"; - case 16777215: return isBlob? @"MEDIUMBLOB":@"MEDIUMTEXT"; - case 4294967295: return isBlob? @"LONGBLOB":@"LONGTEXT"; - default: - switch (length) { - case 255: return isBlob? @"TINYBLOB":@"TINYTEXT"; - case 65535: return isBlob? @"BLOB":@"TEXT"; - case 16777215: return isBlob? @"MEDIUMBLOB":@"MEDIUMTEXT"; - case 4294967295: return isBlob? @"LONGBLOB":@"LONGTEXT"; - default: - return @"UNKNOWN"; - } - } - } - case MYSQL_TYPE_VAR_STRING: - if (flags & ENUM_FLAG) { - return @"ENUM"; - } - if (flags & SET_FLAG) { - return @"SET"; - } - if (charsetnr == MAGIC_BINARY_CHARSET_NR) { - return @"VARBINARY"; - } - return @"VARCHAR"; - case MYSQL_TYPE_STRING: - if (flags & ENUM_FLAG) { - return @"ENUM"; - } - if (flags & SET_FLAG) { - return @"SET"; - } - if ((flags & BINARY_FLAG) && charsetnr == MAGIC_BINARY_CHARSET_NR) { - return @"BINARY"; - } - return @"CHAR"; - case MYSQL_TYPE_ENUM: - /* This should never happen */ - return @"ENUM"; - case MYSQL_TYPE_YEAR: - return @"YEAR"; - case MYSQL_TYPE_SET: - /* This should never happen */ - return @"SET"; - case MYSQL_TYPE_GEOMETRY: - return @"GEOMETRY"; - default: - return @"UNKNOWN"; - } -} - -/** - * Merge mysql_types into type groups - */ -- (NSString *)mysqlTypeToGroupForType:(NSUInteger)type withCharsetNr:(NSUInteger)charsetnr withFlags:(NSUInteger)flags -{ - switch(type){ - case FIELD_TYPE_BIT: - return @"bit"; - case MYSQL_TYPE_TINY: - case MYSQL_TYPE_SHORT: - case MYSQL_TYPE_LONG: - case MYSQL_TYPE_LONGLONG: - case MYSQL_TYPE_INT24: - return @"integer"; - case MYSQL_TYPE_FLOAT: - case MYSQL_TYPE_DOUBLE: - case MYSQL_TYPE_DECIMAL: - case MYSQL_TYPE_NEWDECIMAL: - return @"float"; - case MYSQL_TYPE_YEAR: - case MYSQL_TYPE_DATETIME: - case MYSQL_TYPE_TIME: - case MYSQL_TYPE_DATE: - case MYSQL_TYPE_TIMESTAMP: - return @"date"; - case MYSQL_TYPE_VAR_STRING: - if (flags & ENUM_FLAG) { - return @"enum"; - } - if (flags & SET_FLAG) { - return @"enum"; - } - if (charsetnr == MAGIC_BINARY_CHARSET_NR) { - return @"binary"; - } - return @"string"; - case MYSQL_TYPE_STRING: - if (flags & ENUM_FLAG) { - return @"enum"; - } - if (flags & SET_FLAG) { - return @"enum"; - } - if ((flags & BINARY_FLAG) && charsetnr == MAGIC_BINARY_CHARSET_NR) { - return @"binary"; - } - return @"string"; - case MYSQL_TYPE_TINY_BLOB: // should no appear over the wire - case MYSQL_TYPE_MEDIUM_BLOB: // should no appear over the wire - case MYSQL_TYPE_LONG_BLOB: // should no appear over the wire - case MYSQL_TYPE_BLOB: - { - if (charsetnr == MAGIC_BINARY_CHARSET_NR) { - return @"blobdata"; - } else { - return @"textdata"; - } - } - case MYSQL_TYPE_GEOMETRY: - return @"geometry"; - default: - return @"blobdata"; - - } -} - -/** - * Convert a mysql_charsetnr into a charset name as string - */ -- (NSString *)findCharsetName:(NSUInteger)charsetnr -{ - const OUR_CHARSET * c = our_charsets60; - - do { - if (c->nr == charsetnr) - return [self stringWithCString:c->name]; - ++c; - } while (c[0].nr != 0); - - return @"UNKNOWN"; -} - -/** - * Convert a mysql_charsetnr into a collation name as string - */ -- (NSString *)findCharsetCollation:(NSUInteger)charsetnr -{ - const OUR_CHARSET * c = our_charsets60; - - do { - if (c->nr == charsetnr) - return [self stringWithCString:c->collation]; - ++c; - } while (c[0].nr != 0); - - return @"UNKNOWN"; -} - -/** - * Return the max byte length to store a char by using - * a specific mysql_charsetnr - */ -- (NSUInteger)findCharsetMaxByteLengthPerChar:(NSUInteger)charsetnr -{ - const OUR_CHARSET * c = our_charsets60; - - do { - if (c->nr == charsetnr) - return c->char_maxlen; - ++c; - } while (c[0].nr != 0); - - return 1; -} - -#pragma mark - - -/** - * Do one really needs an explanation for this method? Which by the way you should not use... - */ -- (void) dealloc -{ - if (mResult) mysql_free_result(mResult); - if (mNames) [mNames release]; - if (mTimeZone) [mTimeZone release]; - - [super dealloc]; -} - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.h b/Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.h deleted file mode 100644 index f161bd0c..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.h +++ /dev/null @@ -1,42 +0,0 @@ -// -// $Id$ -// -// MCPResultPlus.h -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 03/06/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import - -#import "MCPResult.h" - -@interface MCPResult (MCPResultPlus) - -// Getting a complete column as an array -- (NSArray *)fetchColAtIndex:(NSUInteger)col; -- (NSArray *)fetchColWithName:(NSString *)colName; - -// Getting the complete result as 2D array -- (id)fetch2DResultAsType:(MCPReturnType)type; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.m b/Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.m deleted file mode 100644 index dbf9d070..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPResultPlus.m +++ /dev/null @@ -1,188 +0,0 @@ -// -// $Id$ -// -// MCPResultPlus.m -// MCPKit -// -// Created by Serge Cohen (serge.cohen@m4x.org) on 03/06/2002. -// Copyright (c) 2001 Serge Cohen. All rights reserved. -// -// Forked by the Sequel Pro team (sequelpro.com), April 2009 -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at -// More info at - -#import "MCPResultPlus.h" - -/** - * This Category is provided to get shortcuts reformat the table obtained by a MCPResult - * (fetching a column, a 2D array...). - */ -@implementation MCPResult (MCPResultPlus) - -/** - * Getting a complete column into a NSArray (1D). The index starts from 0 (first column). - * - * The index 0 of the returned array always correspond to the first row (ie: returned NSArray is indexed - * by row number), the read position is restored after to it's initial position after the read. - */ -- (NSArray *)fetchColAtIndex:(NSUInteger)col -{ - NSMutableArray *theCol = [NSMutableArray arrayWithCapacity:(NSUInteger)[self numOfRows]]; - MYSQL_ROW_OFFSET thePosition; - NSArray *theRow; - - if ((mResult == NULL) || ([self numOfRows] == 0)) { - // If there is no results, returns nil. - return nil; - } - if (col >= mNumOfFields) { - // Bad column number - NSLog (@"The index : %ld is not within the range 0 - %ld\n", (long)col, (long)mNumOfFields); - return nil; - } - - thePosition = mysql_row_tell(mResult); - - [self dataSeek:0]; - - // One might want to have optimized code here. Maybe in later versions - while ((theRow = [self fetchRowAsType:MCPTypeArray])) - { - [theCol addObject:[theRow objectAtIndex:col]]; - } - - // Returning to the proper row - mysql_row_seek(mResult, thePosition); - - return [NSArray arrayWithArray:theCol]; -} - -/** - * The same as !{fetchColAtIndex:}, but the choice of the column is done by it's field name. Indeed it is just - * a wrapper to !{fetchColAtIndex}. - */ -- (NSArray *)fetchColWithName:(NSString *)colName -{ - NSUInteger theCol; - - if (mResult == NULL) { - // If there is no results, returns nil. - return nil; - } - - if (mNames == nil) { - [self fetchFieldNames]; - } - - if ([mNames indexOfObject:colName] == NSNotFound) { - NSLog(@"No column have been found with name : %@\n", colName); - return nil; - } - - theCol = [mNames indexOfObject:colName]; - - return [self fetchColAtIndex:theCol]; -} - -/** - * Returns the complete result table in a 2D object, which type depends on aType: - * - * - !{MCPTypeArray} : a NSArray of rows as NSArray, - * - * - !{MCPTypeDictionary} : a NSArray of rows as NSDictionary, - * - * - !{MCPTypeFlippedArray} : a NSArray of columns (as NSArray), - * - * - !{MCPTypeFlippedDictionary} : a NSDictionary of columns (as NSArray) - * - * In any case the read position is restored at the end of the call (hence a fetchRow will get the same row - * wether this method is called before it or not). - */ -- (id) fetch2DResultAsType:(MCPReturnType)type; -{ - id theTable, theVect; - MYSQL_ROW_OFFSET thePosition; - NSUInteger i; - - if (mResult == NULL) { - // If there is no results, returns nil. - return nil; - } - - thePosition = mysql_row_tell(mResult); - - [self dataSeek:0]; - - switch (type) - { - case MCPTypeArray : - theTable = [NSMutableArray arrayWithCapacity:(NSUInteger)[self numOfRows]]; - - while ((theVect = [self fetchRowAsArray])) - { - [theTable addObject:theVect]; - } - - theTable = [NSArray arrayWithArray:theTable]; - break; - case MCPTypeDictionary : - theTable = [NSMutableArray arrayWithCapacity:(NSUInteger)[self numOfRows]]; - - while ((theVect = [self fetchRowAsDictionary])) - { - [theTable addObject:theVect]; - } - - theTable = [NSArray arrayWithArray:theTable]; - break; - case MCPTypeFlippedArray : - theTable = [NSMutableArray arrayWithCapacity:mNumOfFields]; - - for (i=0; i - -#import - -#import "MCPResult.h" -#import "mysql.h" - -@class MCPConnection; - -typedef struct SP_MYSQL_ROWS { - char *data; - unsigned long *dataLengths; - struct SP_MYSQL_ROWS *nextRow; -} LOCAL_ROW_DATA; - -@interface MCPStreamingResult : MCPResult -{ - MCPConnection *parentConnection; - - MYSQL_FIELD *fieldDefinitions; - - BOOL fullyStreaming; - BOOL connectionUnlocked; - BOOL dataDownloaded; - BOOL dataFreed; - - LOCAL_ROW_DATA *localDataStore; - LOCAL_ROW_DATA *currentDataStoreEntry; - LOCAL_ROW_DATA *localDataStoreLastEntry; - - unsigned long localDataRows; - unsigned long localDataAllocated; - unsigned long downloadedRowCount; - unsigned long processedRowCount; - unsigned long freedRowCount; - - pthread_mutex_t dataCreationLock; - pthread_mutex_t dataFreeLock; - - IMP isConnectedPtr; - SEL isConnectedSEL; -} - -- (id)initWithMySQLPtr:(MYSQL *)mySQLPtr encoding:(NSStringEncoding)theEncoding timeZone:(NSTimeZone *)theTimeZone connection:(MCPConnection *)theConnection; -- (id)initWithMySQLPtr:(MYSQL *)mySQLPtr encoding:(NSStringEncoding)theEncoding timeZone:(NSTimeZone *)theTimeZone connection:(MCPConnection *)theConnection withFullStreaming:(BOOL)useFullStreaming; - -// Results fetching -- (NSArray *)fetchNextRowAsArray; -- (void) cancelResultLoad; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m b/Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m deleted file mode 100644 index bdb271fe..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m +++ /dev/null @@ -1,566 +0,0 @@ -// -// $Id$ -// -// MCPStreamingResult.m -// sequel-pro -// -// Created by Rowan Beentje on Aug 16, 2009 -// Copyright 2009 Rowan Beentje. All rights reserved. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at - -#import "MCPStreamingResult.h" -#import "MCPConnection.h" -#import "MCPNull.h" -#import "MCPNumber.h" -#import "MCPGeometryData.h" - -/** - * IMPORTANT NOTE - * - * MCPStreamingResult can operate in two modes. The default mode is a safe implementation, - * which operates in a multithreaded fashion - a worker thread is set up to download the results as - * fast as possible in the background, while the results are made available via a blocking (and so - * single-thread-compatible) fetchNextRowAsArray call. This provides the benefit of allowing a progress - * bar to be shown during downloads, and threaded processing, but still has reasonable memory usage for - * the downloaded result - and won't block the server. - * Alternatively, withFullStreaming: can be set to YES, in which case each row will be accessed on-demand; - * this can be dangerous as it means a SELECT will tie up the server for longer, as for MyISAM tables - * updates (and subsequent reads) must block while a SELECT is still running. However this can be useful - * for certain processes such as working with very large tables to keep memory usage low. - */ - - -@interface MCPStreamingResult (PrivateAPI) - -void _bytes2bin(Byte *n, NSUInteger nbytes, NSUInteger len, char *buf); - -- (void) _downloadAllData; -- (void) _freeAllDataWhenDone; - -@end - -@implementation MCPStreamingResult : MCPResult - -#pragma mark - -#pragma mark Setup and teardown - -/** - * Initialise a MCPStreamingResult in the same way as MCPResult - as used - * internally by the MCPConnection !{queryString:} method. - */ -- (id)initWithMySQLPtr:(MYSQL *)mySQLPtr encoding:(NSStringEncoding)theEncoding timeZone:(NSTimeZone *)theTimeZone connection:(MCPConnection *)theConnection -{ - return [self initWithMySQLPtr:mySQLPtr encoding:theEncoding timeZone:theTimeZone connection:theConnection withFullStreaming:NO]; -} - -/** - * Master initialisation method, allowing selection of either full streaming or safe streaming - * (see "important note" above) - */ -- (id)initWithMySQLPtr:(MYSQL *)mySQLPtr encoding:(NSStringEncoding)theEncoding timeZone:(NSTimeZone *)theTimeZone connection:(MCPConnection *)theConnection withFullStreaming:(BOOL)useFullStreaming -{ - if ((self = [super init])) { - mEncoding = theEncoding; - mTimeZone = [theTimeZone retain]; - parentConnection = theConnection; - fullyStreaming = useFullStreaming; - connectionUnlocked = NO; - - if (mResult) { - mysql_free_result(mResult); - mResult = NULL; - } - - if (mNames) { - [mNames release]; - mNames = nil; - } - - mResult = mysql_use_result(mySQLPtr); - - if (mResult) { - mNumOfFields = mysql_num_fields(mResult); - fieldDefinitions = mysql_fetch_fields(mResult); - } else { - mNumOfFields = 0; - } - - // Obtain SEL references and pointer - isConnectedSEL = @selector(isConnected); - isConnectedPtr = [parentConnection methodForSelector:isConnectedSEL]; - - // If the result is opened in download-data-fast safe mode, set up the additional variables - // and threads required. - if (!fullyStreaming) { - dataDownloaded = NO; - dataFreed = NO; - localDataStore = NULL; - currentDataStoreEntry = NULL; - localDataStoreLastEntry = NULL; - localDataRows = 0; - localDataAllocated = 0; - downloadedRowCount = 0; - processedRowCount = 0; - freedRowCount = 0; - pthread_mutex_init(&dataCreationLock, NULL); - pthread_mutex_init(&dataFreeLock, NULL); - - // Start the data download thread - [NSThread detachNewThreadSelector:@selector(_downloadAllData) toTarget:self withObject:nil]; - - // Start the data freeing thread - [NSThread detachNewThreadSelector:@selector(_freeAllDataWhenDone) toTarget:self withObject:nil]; - } - } - - return self; -} - -/** - * Deallocate the result and unlock the parent connection for further use - */ -- (void) dealloc -{ - [self cancelResultLoad]; //this should close the connection if it is still open - - if (!connectionUnlocked) { - //this should NEVER happen - NSLog(@"MCPStreamingResult: The connection has not been unlocked."); - [parentConnection unlockConnection]; - } - - if (!fullyStreaming) { - pthread_mutex_destroy(&dataFreeLock); - pthread_mutex_destroy(&dataCreationLock); - } - - [super dealloc]; -} - -#pragma mark - -#pragma mark Results fetching - -/** - * Retrieve the next row of the result as an array. Should be called in a loop - * until nil is returned to ensure all the results have been retrieved. - */ -- (NSArray *)fetchNextRowAsArray -{ - MYSQL_ROW theRow; - char *theRowData, *buf; - unsigned long *fieldLengths; - NSUInteger i, copiedDataLength; - NSMutableArray *returnArray; - - // Retrieve the next row according to the mode this result set is in. - // If fully streaming, retrieve the MYSQL_ROW - if (fullyStreaming) { - theRow = mysql_fetch_row(mResult); - - // If no data was returned, we're at the end of the result set - unlock the connection and return nil - if (theRow == NULL) { - if (!connectionUnlocked) { - [parentConnection unlockConnection]; - connectionUnlocked = YES; - } - return nil; - } - - // Retrieve the lengths of the returned data - fieldLengths = mysql_fetch_lengths(mResult); - - // If in cached-streaming/fast download mode, get a reference to the data for the current row - } else { - copiedDataLength = 0; - - // Lock the data mutex - pthread_mutex_lock(&dataCreationLock); - - // Check to see whether we need to wait for the data to be availabe - // - if so, wait 1ms before checking again. - while (!dataDownloaded && processedRowCount == downloadedRowCount) { - pthread_mutex_unlock(&dataCreationLock); - usleep(1000); - pthread_mutex_lock(&dataCreationLock); - } - - // If all rows have been processed, we're at the end of the result set - return nil - // once all memory has been freed - if (processedRowCount == downloadedRowCount) { - pthread_mutex_unlock(&dataCreationLock); - - while (!dataFreed) usleep(1000); - - // Update the connection's error statuses in case of error during content download - [parentConnection updateErrorStatuses]; - - return nil; - } - - // Retrieve a reference to the data and the associated lengths - theRowData = currentDataStoreEntry->data; - fieldLengths = currentDataStoreEntry->dataLengths; - - // Unlock the data mutex - pthread_mutex_unlock(&dataCreationLock); - } - - // Initialise the array to return - returnArray = [NSMutableArray arrayWithCapacity:mNumOfFields]; - for (i = 0; i < mNumOfFields; i++) { - id cellData = nil; - char *theData = NULL; - - // In fully streaming mode, get a reference to the data for the MYSQL_ROW - if (fullyStreaming) { - if (theRow[i] == NULL) { - cellData = [NSNull null]; - } else { - theData = theRow[i]; - } - - // In cached-streaming mode, use a reference to the downloaded data - } else { - if (fieldLengths[i] == NSNotFound) { - cellData = [NSNull null]; - } else { - theData = theRowData+copiedDataLength; - copiedDataLength += fieldLengths[i] + 1; - } - } - - // If the data hasn't already been detected as NULL - in which case it will have been - // set to NSNull - process the data by type - - if (cellData == nil) { - switch (fieldDefinitions[i].type) { - case FIELD_TYPE_TINY: - case FIELD_TYPE_SHORT: - case FIELD_TYPE_INT24: - case FIELD_TYPE_LONG: - case FIELD_TYPE_LONGLONG: - case FIELD_TYPE_DECIMAL: - case FIELD_TYPE_NEWDECIMAL: - case FIELD_TYPE_FLOAT: - case FIELD_TYPE_DOUBLE: - case FIELD_TYPE_TIMESTAMP: - case FIELD_TYPE_DATE: - case FIELD_TYPE_TIME: - case FIELD_TYPE_DATETIME: - case FIELD_TYPE_YEAR: - case FIELD_TYPE_VAR_STRING: - case FIELD_TYPE_STRING: - case FIELD_TYPE_SET: - case FIELD_TYPE_ENUM: - case FIELD_TYPE_NEWDATE: // Don't know what the format for this type is... - - // For fields of type BINARY/VARBINARY, return the data. Also add an extra check to make - // sure it's binary data (seems that it's returned as type STRING) to get around a MySQL - // bug (#28214) returning DATE fields with the binary flag set. - if ((fieldDefinitions[i].flags & BINARY_FLAG) && - (fieldDefinitions[i].type == FIELD_TYPE_STRING || fieldDefinitions[i].type == FIELD_TYPE_VAR_STRING)) - { - cellData = [NSData dataWithBytes:theData length:fieldLengths[i]]; - } - // For string data, convert to text - else { - cellData = [[[NSString alloc] initWithBytes:theData length:fieldLengths[i] encoding:mEncoding] autorelease]; - } - - break; - - case FIELD_TYPE_BIT: - // Get a binary representation of the data - - buf = malloc(fieldDefinitions[i].length + 1); - _bytes2bin((Byte *)theData, fieldLengths[i], fieldDefinitions[i].length, buf); - - cellData = (theData != NULL) ? [NSString stringWithUTF8String:buf] : @""; - - free(buf); - break; - - case FIELD_TYPE_TINY_BLOB: - case FIELD_TYPE_BLOB: - case FIELD_TYPE_MEDIUM_BLOB: - case FIELD_TYPE_LONG_BLOB: - - // For binary data, return the data if force-return-as-string is not enabled - if ((fieldDefinitions[i].flags & BINARY_FLAG) && !mReturnDataAsStrings) { - cellData = [NSData dataWithBytes:theData length:fieldLengths[i]]; - } - else { - cellData = [[NSString alloc] initWithBytes:theData length:fieldLengths[i] encoding:mEncoding]; - - if (cellData) [cellData autorelease]; - } - - break; - - case FIELD_TYPE_NULL: - cellData = [NSNull null]; - break; - - case FIELD_TYPE_GEOMETRY: - cellData = [MCPGeometryData dataWithBytes:theData length:fieldLengths[i]]; - break; - - default: - NSLog(@"in fetchNextRowAsArray : Unknown type : %d for column %lu, sending back a NSData object", (int)fieldDefinitions[i].type, (unsigned long)i); - cellData = [NSData dataWithBytes:theData length:fieldLengths[i]]; - break; - } - - // If a creator returned a nil object, replace with NSNull - if (cellData == nil) cellData = [NSNull null]; - } - - [returnArray insertObject:cellData atIndex:i]; - } - - // If in cached-streaming mode, update the current entry processed count - if (!fullyStreaming) { - - // Lock both mutexes - pthread_mutex_lock(&dataCreationLock); - pthread_mutex_lock(&dataFreeLock); - - // Update the active-data pointer to the next item in the list, or set to NULL if no more items - currentDataStoreEntry = currentDataStoreEntry->nextRow; - - // Increment counter - processedRowCount++; - - // Unlock both mutexes - pthread_mutex_unlock(&dataCreationLock); - pthread_mutex_unlock(&dataFreeLock); - } - - return returnArray; -} - -/* - * Ensure the result set is fully processed and freed without any processing - * This method ensures that the connection is unlocked. - */ -- (void) cancelResultLoad -{ - MYSQL_ROW theRow; - - // Loop through all the rows and ensure the rows are fetched. - // If fully streaming, loop through the rows directly - if (fullyStreaming) { - while (1) { - theRow = mysql_fetch_row(mResult); - - // If no data was returned, we're at the end of the result set - return. - if (theRow == NULL) { - if (!connectionUnlocked) { - [parentConnection unlockConnection]; - connectionUnlocked = YES; - } - return; - } - } - - // If in cached-streaming/fast download mode, loop until all data is fetched and freed - } else { - - while (1) { - - // Check to see whether we need to wait for the data to be available - // - if so, wait 1ms before checking again - while (!dataDownloaded && processedRowCount == downloadedRowCount) usleep(1000); - - // If all rows have been processed, we're at the end of the result set - return - // once all memory has been freed - if (processedRowCount == downloadedRowCount) { - while (!dataFreed) usleep(1000); - // we don't need to unlock the connection because - // the data loading thread already did that - return; - } - processedRowCount++; - } - } -} - -#pragma mark - -#pragma mark Overrides for safety - -/** - * If numOfRows is used before the data is fully downloaded, -1 will be returned; - * otherwise the number of rows is returned. - */ -- (my_ulonglong)numOfRows -{ - if (!dataDownloaded) return -1; - - return downloadedRowCount; -} - -- (void)dataSeek:(my_ulonglong) row -{ - NSLog(@"dataSeek cannot be used with streaming results"); -} - -@end - -@implementation MCPStreamingResult (PrivateAPI) - -/** - * Provides a binary representation of the supplied chars (n) in the supplied buffer (buf). The resulting - * binary representation will be zero-padded according to the supplied field length (len). - */ -void _bytes2bin(Byte *n, NSUInteger nbytes, NSUInteger len, char *buf) -{ - - // NSUInteger i = 0; - // nbytes--; - // while (++i <= len) - // buf[len - i] = ( (n[nbytes - (i >> 3)] >> (i & 0x7)) & 1 ) ? '1' : '0'; - // - // buf[len] = '\0'; - // ↑ why does this code not working anymore? - - NSUInteger i = 0; - nbytes--; - len--; - while (i <= len) - buf[len - i++] = ( (n[nbytes - (i >> 3)] >> (i & 0x7)) & 1 ) ? '1' : '0'; - - buf[len+1] = '\0'; - -} - -/** - * Used internally to download results in a background thread - */ -- (void)_downloadAllData -{ - NSAutoreleasePool *downloadPool = [[NSAutoreleasePool alloc] init]; - MYSQL_ROW theRow; - unsigned long *fieldLengths; - NSUInteger i, dataCopiedLength, rowDataLength; - LOCAL_ROW_DATA *newRowStore; - - size_t sizeOfLocalRowData = sizeof(LOCAL_ROW_DATA); - size_t sizeOfDataLengths = (size_t)(sizeof(unsigned long) * mNumOfFields); - - // Loop through the rows until the end of the data is reached - indicated via a NULL - while ((*isConnectedPtr)(parentConnection, isConnectedSEL) && (theRow = mysql_fetch_row(mResult))) { - - // Retrieve the lengths of the returned data - fieldLengths = mysql_fetch_lengths(mResult); - rowDataLength = 0; - dataCopiedLength = 0; - for (i = 0; i < mNumOfFields; i++) - rowDataLength += fieldLengths[i]; - - // Initialise memory for the row and set a NULL pointer for the next item - newRowStore = malloc(sizeOfLocalRowData); - newRowStore->nextRow = NULL; - - // Set up the row data store - a char* - and copy in the data if there is any, - // using a null terminator for each field boundary for easier data processing later - newRowStore->data = malloc(sizeof(char) * (rowDataLength + mNumOfFields)); - for (i = 0; i < mNumOfFields; i++) { - if (theRow[i] != NULL) { - memcpy(newRowStore->data+dataCopiedLength, theRow[i], fieldLengths[i]); - newRowStore->data[dataCopiedLength+fieldLengths[i]] = '\0'; - dataCopiedLength += fieldLengths[i] + 1; - } else { - fieldLengths[i] = NSNotFound; - } - } - - // Set up and copy in the field lengths - newRowStore->dataLengths = memcpy(malloc(sizeOfDataLengths), fieldLengths, sizeOfDataLengths); - - // Lock both mutexes - pthread_mutex_lock(&dataCreationLock); - pthread_mutex_lock(&dataFreeLock); - - // Add the newly allocated row to end of the storage linked list - if (localDataStore) { - localDataStoreLastEntry->nextRow = newRowStore; - } else { - localDataStore = newRowStore; - } - localDataStoreLastEntry = newRowStore; - if (!currentDataStoreEntry) currentDataStoreEntry = newRowStore; - - // Update the downloaded row count - downloadedRowCount++; - - // Unlock both mutexes - pthread_mutex_unlock(&dataCreationLock); - pthread_mutex_unlock(&dataFreeLock); - } - - // Unlock the parent connection now data has been retrieved - [parentConnection unlockConnection]; - connectionUnlocked = YES; - - dataDownloaded = YES; - [downloadPool drain]; -} - -/** - * Used internally to free data which has been fully processed; done in a thread to allow - * fetchNextRowAsArray to be faster. - */ -- (void) _freeAllDataWhenDone -{ - NSAutoreleasePool *dataFreeingPool = [[NSAutoreleasePool alloc] init]; - - while (!dataDownloaded || freedRowCount != downloadedRowCount) { - - // Lock the data free mutex - pthread_mutex_lock(&dataFreeLock); - - // If the freed row count matches the processed row count, wait before retrying - if (freedRowCount == processedRowCount) { - pthread_mutex_unlock(&dataFreeLock); - usleep(1000); - continue; - } - - // Free a single item off the bottom of the list - // Update the data pointer to the next item in the list, or set to NULL if no more items - LOCAL_ROW_DATA *rowToRemove = localDataStore; - localDataStore = localDataStore->nextRow; - - // Free memory for the first row - rowToRemove->nextRow = NULL; - free(rowToRemove->dataLengths); - if (rowToRemove->data != NULL) free(rowToRemove->data); - free(rowToRemove); - - // Increment the counter - freedRowCount++; - - // Unlock the data free mutex - pthread_mutex_unlock(&dataFreeLock); - } - - dataFreed = YES; - [dataFreeingPool drain]; -} - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPStringAdditions.h b/Frameworks/MCPKit/MCPFoundationKit/MCPStringAdditions.h deleted file mode 100644 index bf57b789..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPStringAdditions.h +++ /dev/null @@ -1,46 +0,0 @@ -// -// $Id$ -// -// MCPStringAdditions.h -// sequel-pro -// -// Created by Stuart Connolly (stuconnolly.com) on March 25, 2010 -// Copyright (c) 2010 Stuart Connolly. All rights reserved. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at - -#import - -/** - * NSStringDataUsingLossyEncoding(aStr, enc, lossy) := [aStr dataUsingEncoding:enc allowLossyConversion:lossy] - */ -static inline NSData *NSStringDataUsingLossyEncoding(NSString *self, NSInteger encoding, NSInteger lossy) -{ - typedef NSData *(*SPStringDataUsingLossyEncodingMethodPtr)(NSString*, SEL, NSInteger, NSInteger); - static SPStringDataUsingLossyEncodingMethodPtr SPNSStringDataUsingLossyEncoding; - - if (!SPNSStringDataUsingLossyEncoding) SPNSStringDataUsingLossyEncoding = (SPStringDataUsingLossyEncodingMethodPtr)[self methodForSelector:@selector(dataUsingEncoding:allowLossyConversion:)]; - - return SPNSStringDataUsingLossyEncoding(self, @selector(dataUsingEncoding:allowLossyConversion:), encoding, lossy); -} - -@interface NSString (MCPStringAdditions) - -- (NSString *)backtickQuotedString; -- (NSString *)tickQuotedString; - -@end diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPStringAdditions.m b/Frameworks/MCPKit/MCPFoundationKit/MCPStringAdditions.m deleted file mode 100644 index bd5b06cd..00000000 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPStringAdditions.m +++ /dev/null @@ -1,50 +0,0 @@ -// -// $Id$ -// -// MCPStringAdditions.m -// sequel-pro -// -// Created by Stuart Connolly (stuconnolly.com) on March 25, 2010 -// Copyright (c) 2010 Stuart Connolly. All rights reserved. -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at - - - -@implementation NSString (MCPStringAdditions) - -/** - * Returns the string quoted with backticks as required for MySQL identifiers - * eg.: tablename => `tablename` - * my`table => `my``table` - */ -- (NSString *)backtickQuotedString -{ - return [NSString stringWithFormat: @"`%@`", [self stringByReplacingOccurrencesOfString:@"`" withString:@"``"]]; -} - -/** - * Returns the string quoted with ticks as required for MySQL identifiers - * eg.: tablename => 'tablename' - * my'table => 'my''table' - */ -- (NSString *)tickQuotedString -{ - return [NSString stringWithFormat: @"'%@'", [self stringByReplacingOccurrencesOfString:@"'" withString:@"''"]]; -} - -@end diff --git a/Frameworks/MCPKit/MySQL/include/my_alloc.h b/Frameworks/MCPKit/MySQL/include/my_alloc.h deleted file mode 100644 index 93b7438a..00000000 --- a/Frameworks/MCPKit/MySQL/include/my_alloc.h +++ /dev/null @@ -1,51 +0,0 @@ -/* Copyright (C) 2000 MySQL AB - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -/* - Data structures for mysys/my_alloc.c (root memory allocator) -*/ - -#ifndef _my_alloc_h -#define _my_alloc_h - -#define ALLOC_MAX_BLOCK_TO_DROP 4096 -#define ALLOC_MAX_BLOCK_USAGE_BEFORE_DROP 10 - -typedef struct st_used_mem -{ /* struct for once_alloc (block) */ - struct st_used_mem *next; /* Next block in use */ - unsigned int left; /* memory left in block */ - unsigned int size; /* size of block */ -} USED_MEM; - - -typedef struct st_mem_root -{ - USED_MEM *free; /* blocks with free memory in it */ - USED_MEM *used; /* blocks almost without free memory */ - USED_MEM *pre_alloc; /* preallocated block */ - /* if block have less memory it will be put in 'used' list */ - size_t min_malloc; - size_t block_size; /* initial block size */ - unsigned int block_num; /* allocated blocks counter */ - /* - first free block in queue test counter (if it exceed - MAX_BLOCK_USAGE_BEFORE_DROP block will be dropped in 'used' list) - */ - unsigned int first_block_usage; - - void (*error_handler)(void); -} MEM_ROOT; -#endif diff --git a/Frameworks/MCPKit/MySQL/include/my_list.h b/Frameworks/MCPKit/MySQL/include/my_list.h deleted file mode 100644 index 775b5658..00000000 --- a/Frameworks/MCPKit/MySQL/include/my_list.h +++ /dev/null @@ -1,45 +0,0 @@ -/* Copyright (C) 2000 MySQL AB - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -#ifndef _list_h_ -#define _list_h_ - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct st_list { - struct st_list *prev,*next; - void *data; -} LIST; - -typedef int (*list_walk_action)(void *,void *); - -extern LIST *list_add(LIST *root,LIST *element); -extern LIST *list_delete(LIST *root,LIST *element); -extern LIST *list_cons(void *data,LIST *root); -extern LIST *list_reverse(LIST *root); -extern void list_free(LIST *root,unsigned int free_data); -extern unsigned int list_length(LIST *); -extern int list_walk(LIST *,list_walk_action action,unsigned char * argument); - -#define list_rest(a) ((a)->next) -#define list_push(a,b) (a)=list_cons((b),(a)) -#define list_pop(A) {LIST *old=(A); (A)=list_delete(old,old) ; my_free((unsigned char *) old,MYF(MY_FAE)); } - -#ifdef __cplusplus -} -#endif -#endif diff --git a/Frameworks/MCPKit/MySQL/include/mysql.h b/Frameworks/MCPKit/MySQL/include/mysql.h deleted file mode 100644 index 699bd1f1..00000000 --- a/Frameworks/MCPKit/MySQL/include/mysql.h +++ /dev/null @@ -1,870 +0,0 @@ -/* Copyright (C) 2000-2003 MySQL AB - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -/* - This file defines the client API to MySQL and also the ABI of the - dynamically linked libmysqlclient. - - The ABI should never be changed in a released product of MySQL - thus you need to take great care when changing the file. In case - the file is changed so the ABI is broken, you must also - update the SHAREDLIB_MAJOR_VERSION in configure.in . - -*/ - -#ifndef _mysql_h -#define _mysql_h - -#ifdef _AIX /* large-file support will break without this */ -#include -#endif - -#ifdef __CYGWIN__ /* CYGWIN implements a UNIX API */ -#undef WIN -#undef _WIN -#undef _WIN32 -#undef _WIN64 -#undef __WIN__ -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -#ifndef _global_h /* If not standard header */ -#ifndef MYSQL_ABI_CHECK -#include -#endif -#ifdef __LCC__ -#include /* For windows */ -#endif -typedef char my_bool; -#if (defined(_WIN32) || defined(_WIN64)) && !defined(__WIN__) -#define __WIN__ -#endif -#if !defined(__WIN__) -#define STDCALL -#else -#define STDCALL __stdcall -#endif - -#ifndef my_socket_defined -#ifdef __WIN__ -#define my_socket SOCKET -#else -typedef int my_socket; -#endif /* __WIN__ */ -#endif /* my_socket_defined */ -#endif /* _global_h */ - -#include "mysql_version.h" -#include "mysql_com.h" -#include "mysql_time.h" - -#include "my_list.h" /* for LISTs used in 'MYSQL' and 'MYSQL_STMT' */ - -extern unsigned int mysql_port; -extern char *mysql_unix_port; - -#define CLIENT_NET_READ_TIMEOUT 365*24*3600 /* Timeout on read */ -#define CLIENT_NET_WRITE_TIMEOUT 365*24*3600 /* Timeout on write */ - -#ifdef __NETWARE__ -#pragma pack(push, 8) /* 8 byte alignment */ -#endif - -#define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG) -#define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG) -#define IS_BLOB(n) ((n) & BLOB_FLAG) -#define IS_NUM(t) ((t) <= MYSQL_TYPE_INT24 || (t) == MYSQL_TYPE_YEAR || (t) == MYSQL_TYPE_NEWDECIMAL) -#define IS_NUM_FIELD(f) ((f)->flags & NUM_FLAG) -#define INTERNAL_NUM_FIELD(f) (((f)->type <= MYSQL_TYPE_INT24 && ((f)->type != MYSQL_TYPE_TIMESTAMP || (f)->length == 14 || (f)->length == 8)) || (f)->type == MYSQL_TYPE_YEAR) -#define IS_LONGDATA(t) ((t) >= MYSQL_TYPE_TINY_BLOB && (t) <= MYSQL_TYPE_STRING) - - -typedef struct st_mysql_field { - char *name; /* Name of column */ - char *org_name; /* Original column name, if an alias */ - char *table; /* Table of column if column was a field */ - char *org_table; /* Org table name, if table was an alias */ - char *db; /* Database for table */ - char *catalog; /* Catalog for table */ - char *def; /* Default value (set by mysql_list_fields) */ - unsigned long length; /* Width of column (create length) */ - unsigned long max_length; /* Max width for selected set */ - unsigned int name_length; - unsigned int org_name_length; - unsigned int table_length; - unsigned int org_table_length; - unsigned int db_length; - unsigned int catalog_length; - unsigned int def_length; - unsigned int flags; /* Div flags */ - unsigned int decimals; /* Number of decimals in field */ - unsigned int charsetnr; /* Character set */ - enum enum_field_types type; /* Type of field. See mysql_com.h for types */ - void *extension; -} MYSQL_FIELD; - -typedef char **MYSQL_ROW; /* return data as array of strings */ -typedef unsigned int MYSQL_FIELD_OFFSET; /* offset to current field */ - -#ifndef _global_h -#if defined(NO_CLIENT_LONG_LONG) -typedef unsigned long my_ulonglong; -#elif defined (__WIN__) -typedef unsigned __int64 my_ulonglong; -#else -typedef unsigned long long my_ulonglong; -#endif -#endif - -#include "typelib.h" - -#define MYSQL_COUNT_ERROR (~(my_ulonglong) 0) - -/* backward compatibility define - to be removed eventually */ -#define ER_WARN_DATA_TRUNCATED WARN_DATA_TRUNCATED - -typedef struct st_mysql_rows { - struct st_mysql_rows *next; /* list of rows */ - MYSQL_ROW data; - unsigned long length; -} MYSQL_ROWS; - -typedef MYSQL_ROWS *MYSQL_ROW_OFFSET; /* offset to current row */ - -#include "my_alloc.h" - -typedef struct embedded_query_result EMBEDDED_QUERY_RESULT; -typedef struct st_mysql_data { - MYSQL_ROWS *data; - struct embedded_query_result *embedded_info; - MEM_ROOT alloc; - my_ulonglong rows; - unsigned int fields; - /* extra info for embedded library */ - void *extension; -} MYSQL_DATA; - -enum mysql_option -{ - MYSQL_OPT_CONNECT_TIMEOUT, MYSQL_OPT_COMPRESS, MYSQL_OPT_NAMED_PIPE, - MYSQL_INIT_COMMAND, MYSQL_READ_DEFAULT_FILE, MYSQL_READ_DEFAULT_GROUP, - MYSQL_SET_CHARSET_DIR, MYSQL_SET_CHARSET_NAME, MYSQL_OPT_LOCAL_INFILE, - MYSQL_OPT_PROTOCOL, MYSQL_SHARED_MEMORY_BASE_NAME, MYSQL_OPT_READ_TIMEOUT, - MYSQL_OPT_WRITE_TIMEOUT, MYSQL_OPT_USE_RESULT, - MYSQL_OPT_USE_REMOTE_CONNECTION, MYSQL_OPT_USE_EMBEDDED_CONNECTION, - MYSQL_OPT_GUESS_CONNECTION, MYSQL_SET_CLIENT_IP, MYSQL_SECURE_AUTH, - MYSQL_REPORT_DATA_TRUNCATION, MYSQL_OPT_RECONNECT, - MYSQL_OPT_SSL_VERIFY_SERVER_CERT -}; - -struct st_mysql_options { - unsigned int connect_timeout, read_timeout, write_timeout; - unsigned int port, protocol; - unsigned long client_flag; - char *host,*user,*password,*unix_socket,*db; - struct st_dynamic_array *init_commands; - char *my_cnf_file,*my_cnf_group, *charset_dir, *charset_name; - char *ssl_key; /* PEM key file */ - char *ssl_cert; /* PEM cert file */ - char *ssl_ca; /* PEM CA file */ - char *ssl_capath; /* PEM directory of CA-s? */ - char *ssl_cipher; /* cipher to use */ - char *shared_memory_base_name; - unsigned long max_allowed_packet; - my_bool use_ssl; /* if to use SSL or not */ - my_bool compress,named_pipe; - /* - On connect, find out the replication role of the server, and - establish connections to all the peers - */ - my_bool rpl_probe; - /* - Each call to mysql_real_query() will parse it to tell if it is a read - or a write, and direct it to the slave or the master - */ - my_bool rpl_parse; - /* - If set, never read from a master, only from slave, when doing - a read that is replication-aware - */ - my_bool no_master_reads; -#if !defined(CHECK_EMBEDDED_DIFFERENCES) || defined(EMBEDDED_LIBRARY) - my_bool separate_thread; -#endif - enum mysql_option methods_to_use; - char *client_ip; - /* Refuse client connecting to server if it uses old (pre-4.1.1) protocol */ - my_bool secure_auth; - /* 0 - never report, 1 - always report (default) */ - my_bool report_data_truncation; - - /* function pointers for local infile support */ - int (*local_infile_init)(void **, const char *, void *); - int (*local_infile_read)(void *, char *, unsigned int); - void (*local_infile_end)(void *); - int (*local_infile_error)(void *, char *, unsigned int); - void *local_infile_userdata; - void *extension; -}; - -enum mysql_status -{ - MYSQL_STATUS_READY, MYSQL_STATUS_GET_RESULT, MYSQL_STATUS_USE_RESULT, - MYSQL_STATUS_STATEMENT_GET_RESULT -}; - -enum mysql_protocol_type -{ - MYSQL_PROTOCOL_DEFAULT, MYSQL_PROTOCOL_TCP, MYSQL_PROTOCOL_SOCKET, - MYSQL_PROTOCOL_PIPE, MYSQL_PROTOCOL_MEMORY -}; -/* - There are three types of queries - the ones that have to go to - the master, the ones that go to a slave, and the adminstrative - type which must happen on the pivot connectioin -*/ -enum mysql_rpl_type -{ - MYSQL_RPL_MASTER, MYSQL_RPL_SLAVE, MYSQL_RPL_ADMIN -}; - -typedef struct character_set -{ - unsigned int number; /* character set number */ - unsigned int state; /* character set state */ - const char *csname; /* collation name */ - const char *name; /* character set name */ - const char *comment; /* comment */ - const char *dir; /* character set directory */ - unsigned int mbminlen; /* min. length for multibyte strings */ - unsigned int mbmaxlen; /* max. length for multibyte strings */ -} MY_CHARSET_INFO; - -struct st_mysql_methods; -struct st_mysql_stmt; - -typedef struct st_mysql -{ - NET net; /* Communication parameters */ - unsigned char *connector_fd; /* ConnectorFd for SSL */ - char *host,*user,*passwd,*unix_socket,*server_version,*host_info; - char *info, *db; - struct charset_info_st *charset; - MYSQL_FIELD *fields; - MEM_ROOT field_alloc; - my_ulonglong affected_rows; - my_ulonglong insert_id; /* id if insert on table with NEXTNR */ - my_ulonglong extra_info; /* Not used */ - unsigned long thread_id; /* Id for connection in server */ - unsigned long packet_length; - unsigned int port; - unsigned long client_flag,server_capabilities; - unsigned int protocol_version; - unsigned int field_count; - unsigned int server_status; - unsigned int server_language; - unsigned int warning_count; - struct st_mysql_options options; - enum mysql_status status; - my_bool free_me; /* If free in mysql_close */ - my_bool reconnect; /* set to 1 if automatic reconnect */ - - /* session-wide random string */ - char scramble[SCRAMBLE_LENGTH+1]; - - /* - Set if this is the original connection, not a master or a slave we have - added though mysql_rpl_probe() or mysql_set_master()/ mysql_add_slave() - */ - my_bool rpl_pivot; - /* - Pointers to the master, and the next slave connections, points to - itself if lone connection. - */ - struct st_mysql* master, *next_slave; - - struct st_mysql* last_used_slave; /* needed for round-robin slave pick */ - /* needed for send/read/store/use result to work correctly with replication */ - struct st_mysql* last_used_con; - - LIST *stmts; /* list of all statements */ - const struct st_mysql_methods *methods; - void *thd; - /* - Points to boolean flag in MYSQL_RES or MYSQL_STMT. We set this flag - from mysql_stmt_close if close had to cancel result set of this object. - */ - my_bool *unbuffered_fetch_owner; - /* needed for embedded server - no net buffer to store the 'info' */ - char *info_buffer; - void *extension; -} MYSQL; - - -typedef struct st_mysql_res { - my_ulonglong row_count; - MYSQL_FIELD *fields; - MYSQL_DATA *data; - MYSQL_ROWS *data_cursor; - unsigned long *lengths; /* column lengths of current row */ - MYSQL *handle; /* for unbuffered reads */ - const struct st_mysql_methods *methods; - MYSQL_ROW row; /* If unbuffered read */ - MYSQL_ROW current_row; /* buffer to current row */ - MEM_ROOT field_alloc; - unsigned int field_count, current_field; - my_bool eof; /* Used by mysql_fetch_row */ - /* mysql_stmt_close() had to cancel this result */ - my_bool unbuffered_fetch_cancelled; - void *extension; -} MYSQL_RES; - -#define MAX_MYSQL_MANAGER_ERR 256 -#define MAX_MYSQL_MANAGER_MSG 256 - -#define MANAGER_OK 200 -#define MANAGER_INFO 250 -#define MANAGER_ACCESS 401 -#define MANAGER_CLIENT_ERR 450 -#define MANAGER_INTERNAL_ERR 500 - -#if !defined(MYSQL_SERVER) && !defined(MYSQL_CLIENT) -#define MYSQL_CLIENT -#endif - - -typedef struct st_mysql_manager -{ - NET net; - char *host, *user, *passwd; - char *net_buf, *net_buf_pos, *net_data_end; - unsigned int port; - int cmd_status; - int last_errno; - int net_buf_size; - my_bool free_me; - my_bool eof; - char last_error[MAX_MYSQL_MANAGER_ERR]; - void *extension; -} MYSQL_MANAGER; - -typedef struct st_mysql_parameters -{ - unsigned long *p_max_allowed_packet; - unsigned long *p_net_buffer_length; - void *extension; -} MYSQL_PARAMETERS; - -#if !defined(MYSQL_SERVER) && !defined(EMBEDDED_LIBRARY) -#define max_allowed_packet (*mysql_get_parameters()->p_max_allowed_packet) -#define net_buffer_length (*mysql_get_parameters()->p_net_buffer_length) -#endif - -/* - Set up and bring down the server; to ensure that applications will - work when linked against either the standard client library or the - embedded server library, these functions should be called. -*/ -int STDCALL mysql_server_init(int argc, char **argv, char **groups); -void STDCALL mysql_server_end(void); - -/* - mysql_server_init/end need to be called when using libmysqld or - libmysqlclient (exactly, mysql_server_init() is called by mysql_init() so - you don't need to call it explicitely; but you need to call - mysql_server_end() to free memory). The names are a bit misleading - (mysql_SERVER* to be used when using libmysqlCLIENT). So we add more general - names which suit well whether you're using libmysqld or libmysqlclient. We - intend to promote these aliases over the mysql_server* ones. -*/ -#define mysql_library_init mysql_server_init -#define mysql_library_end mysql_server_end - -MYSQL_PARAMETERS *STDCALL mysql_get_parameters(void); - -/* - Set up and bring down a thread; these function should be called - for each thread in an application which opens at least one MySQL - connection. All uses of the connection(s) should be between these - function calls. -*/ -my_bool STDCALL mysql_thread_init(void); -void STDCALL mysql_thread_end(void); - -/* - Functions to get information from the MYSQL and MYSQL_RES structures - Should definitely be used if one uses shared libraries. -*/ - -my_ulonglong STDCALL mysql_num_rows(MYSQL_RES *res); -unsigned int STDCALL mysql_num_fields(MYSQL_RES *res); -my_bool STDCALL mysql_eof(MYSQL_RES *res); -MYSQL_FIELD *STDCALL mysql_fetch_field_direct(MYSQL_RES *res, - unsigned int fieldnr); -MYSQL_FIELD * STDCALL mysql_fetch_fields(MYSQL_RES *res); -MYSQL_ROW_OFFSET STDCALL mysql_row_tell(MYSQL_RES *res); -MYSQL_FIELD_OFFSET STDCALL mysql_field_tell(MYSQL_RES *res); - -unsigned int STDCALL mysql_field_count(MYSQL *mysql); -my_ulonglong STDCALL mysql_affected_rows(MYSQL *mysql); -my_ulonglong STDCALL mysql_insert_id(MYSQL *mysql); -unsigned int STDCALL mysql_errno(MYSQL *mysql); -const char * STDCALL mysql_error(MYSQL *mysql); -const char *STDCALL mysql_sqlstate(MYSQL *mysql); -unsigned int STDCALL mysql_warning_count(MYSQL *mysql); -const char * STDCALL mysql_info(MYSQL *mysql); -unsigned long STDCALL mysql_thread_id(MYSQL *mysql); -const char * STDCALL mysql_character_set_name(MYSQL *mysql); -int STDCALL mysql_set_character_set(MYSQL *mysql, const char *csname); - -MYSQL * STDCALL mysql_init(MYSQL *mysql); -my_bool STDCALL mysql_ssl_set(MYSQL *mysql, const char *key, - const char *cert, const char *ca, - const char *capath, const char *cipher); -const char * STDCALL mysql_get_ssl_cipher(MYSQL *mysql); -my_bool STDCALL mysql_change_user(MYSQL *mysql, const char *user, - const char *passwd, const char *db); -MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host, - const char *user, - const char *passwd, - const char *db, - unsigned int port, - const char *unix_socket, - unsigned long clientflag); -int STDCALL mysql_select_db(MYSQL *mysql, const char *db); -int STDCALL mysql_query(MYSQL *mysql, const char *q); -int STDCALL mysql_send_query(MYSQL *mysql, const char *q, - unsigned long length); -int STDCALL mysql_real_query(MYSQL *mysql, const char *q, - unsigned long length); -MYSQL_RES * STDCALL mysql_store_result(MYSQL *mysql); -MYSQL_RES * STDCALL mysql_use_result(MYSQL *mysql); - -/* perform query on master */ -my_bool STDCALL mysql_master_query(MYSQL *mysql, const char *q, - unsigned long length); -my_bool STDCALL mysql_master_send_query(MYSQL *mysql, const char *q, - unsigned long length); -/* perform query on slave */ -my_bool STDCALL mysql_slave_query(MYSQL *mysql, const char *q, - unsigned long length); -my_bool STDCALL mysql_slave_send_query(MYSQL *mysql, const char *q, - unsigned long length); -void STDCALL mysql_get_character_set_info(MYSQL *mysql, - MY_CHARSET_INFO *charset); - -/* local infile support */ - -#define LOCAL_INFILE_ERROR_LEN 512 - -void -mysql_set_local_infile_handler(MYSQL *mysql, - int (*local_infile_init)(void **, const char *, - void *), - int (*local_infile_read)(void *, char *, - unsigned int), - void (*local_infile_end)(void *), - int (*local_infile_error)(void *, char*, - unsigned int), - void *); - -void -mysql_set_local_infile_default(MYSQL *mysql); - - -/* - enable/disable parsing of all queries to decide if they go on master or - slave -*/ -void STDCALL mysql_enable_rpl_parse(MYSQL* mysql); -void STDCALL mysql_disable_rpl_parse(MYSQL* mysql); -/* get the value of the parse flag */ -int STDCALL mysql_rpl_parse_enabled(MYSQL* mysql); - -/* enable/disable reads from master */ -void STDCALL mysql_enable_reads_from_master(MYSQL* mysql); -void STDCALL mysql_disable_reads_from_master(MYSQL* mysql); -/* get the value of the master read flag */ -my_bool STDCALL mysql_reads_from_master_enabled(MYSQL* mysql); - -enum mysql_rpl_type STDCALL mysql_rpl_query_type(const char* q, int len); - -/* discover the master and its slaves */ -my_bool STDCALL mysql_rpl_probe(MYSQL* mysql); - -/* set the master, close/free the old one, if it is not a pivot */ -int STDCALL mysql_set_master(MYSQL* mysql, const char* host, - unsigned int port, - const char* user, - const char* passwd); -int STDCALL mysql_add_slave(MYSQL* mysql, const char* host, - unsigned int port, - const char* user, - const char* passwd); - -int STDCALL mysql_shutdown(MYSQL *mysql, - enum mysql_enum_shutdown_level - shutdown_level); -int STDCALL mysql_dump_debug_info(MYSQL *mysql); -int STDCALL mysql_refresh(MYSQL *mysql, - unsigned int refresh_options); -int STDCALL mysql_kill(MYSQL *mysql,unsigned long pid); -int STDCALL mysql_set_server_option(MYSQL *mysql, - enum enum_mysql_set_option - option); -int STDCALL mysql_ping(MYSQL *mysql); -const char * STDCALL mysql_stat(MYSQL *mysql); -const char * STDCALL mysql_get_server_info(MYSQL *mysql); -const char * STDCALL mysql_get_client_info(void); -unsigned long STDCALL mysql_get_client_version(void); -const char * STDCALL mysql_get_host_info(MYSQL *mysql); -unsigned long STDCALL mysql_get_server_version(MYSQL *mysql); -unsigned int STDCALL mysql_get_proto_info(MYSQL *mysql); -MYSQL_RES * STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild); -MYSQL_RES * STDCALL mysql_list_tables(MYSQL *mysql,const char *wild); -MYSQL_RES * STDCALL mysql_list_processes(MYSQL *mysql); -int STDCALL mysql_options(MYSQL *mysql,enum mysql_option option, - const void *arg); -void STDCALL mysql_free_result(MYSQL_RES *result); -void STDCALL mysql_data_seek(MYSQL_RES *result, - my_ulonglong offset); -MYSQL_ROW_OFFSET STDCALL mysql_row_seek(MYSQL_RES *result, - MYSQL_ROW_OFFSET offset); -MYSQL_FIELD_OFFSET STDCALL mysql_field_seek(MYSQL_RES *result, - MYSQL_FIELD_OFFSET offset); -MYSQL_ROW STDCALL mysql_fetch_row(MYSQL_RES *result); -unsigned long * STDCALL mysql_fetch_lengths(MYSQL_RES *result); -MYSQL_FIELD * STDCALL mysql_fetch_field(MYSQL_RES *result); -MYSQL_RES * STDCALL mysql_list_fields(MYSQL *mysql, const char *table, - const char *wild); -unsigned long STDCALL mysql_escape_string(char *to,const char *from, - unsigned long from_length); -unsigned long STDCALL mysql_hex_string(char *to,const char *from, - unsigned long from_length); -unsigned long STDCALL mysql_real_escape_string(MYSQL *mysql, - char *to,const char *from, - unsigned long length); -void STDCALL mysql_debug(const char *debug); -void STDCALL myodbc_remove_escape(MYSQL *mysql,char *name); -unsigned int STDCALL mysql_thread_safe(void); -my_bool STDCALL mysql_embedded(void); -MYSQL_MANAGER* STDCALL mysql_manager_init(MYSQL_MANAGER* con); -MYSQL_MANAGER* STDCALL mysql_manager_connect(MYSQL_MANAGER* con, - const char* host, - const char* user, - const char* passwd, - unsigned int port); -void STDCALL mysql_manager_close(MYSQL_MANAGER* con); -int STDCALL mysql_manager_command(MYSQL_MANAGER* con, - const char* cmd, int cmd_len); -int STDCALL mysql_manager_fetch_line(MYSQL_MANAGER* con, - char* res_buf, - int res_buf_size); -my_bool STDCALL mysql_read_query_result(MYSQL *mysql); - - -/* - The following definitions are added for the enhanced - client-server protocol -*/ - -/* statement state */ -enum enum_mysql_stmt_state -{ - MYSQL_STMT_INIT_DONE= 1, MYSQL_STMT_PREPARE_DONE, MYSQL_STMT_EXECUTE_DONE, - MYSQL_STMT_FETCH_DONE -}; - - -/* - This structure is used to define bind information, and - internally by the client library. - Public members with their descriptions are listed below - (conventionally `On input' refers to the binds given to - mysql_stmt_bind_param, `On output' refers to the binds given - to mysql_stmt_bind_result): - - buffer_type - One of the MYSQL_* types, used to describe - the host language type of buffer. - On output: if column type is different from - buffer_type, column value is automatically converted - to buffer_type before it is stored in the buffer. - buffer - On input: points to the buffer with input data. - On output: points to the buffer capable to store - output data. - The type of memory pointed by buffer must correspond - to buffer_type. See the correspondence table in - the comment to mysql_stmt_bind_param. - - The two above members are mandatory for any kind of bind. - - buffer_length - the length of the buffer. You don't have to set - it for any fixed length buffer: float, double, - int, etc. It must be set however for variable-length - types, such as BLOBs or STRINGs. - - length - On input: in case when lengths of input values - are different for each execute, you can set this to - point at a variable containining value length. This - way the value length can be different in each execute. - If length is not NULL, buffer_length is not used. - Note, length can even point at buffer_length if - you keep bind structures around while fetching: - this way you can change buffer_length before - each execution, everything will work ok. - On output: if length is set, mysql_stmt_fetch will - write column length into it. - - is_null - On input: points to a boolean variable that should - be set to TRUE for NULL values. - This member is useful only if your data may be - NULL in some but not all cases. - If your data is never NULL, is_null should be set to 0. - If your data is always NULL, set buffer_type - to MYSQL_TYPE_NULL, and is_null will not be used. - - is_unsigned - On input: used to signify that values provided for one - of numeric types are unsigned. - On output describes signedness of the output buffer. - If, taking into account is_unsigned flag, column data - is out of range of the output buffer, data for this column - is regarded truncated. Note that this has no correspondence - to the sign of result set column, if you need to find it out - use mysql_stmt_result_metadata. - error - where to write a truncation error if it is present. - possible error value is: - 0 no truncation - 1 value is out of range or buffer is too small - - Please note that MYSQL_BIND also has internals members. -*/ - -typedef struct st_mysql_bind -{ - unsigned long *length; /* output length pointer */ - my_bool *is_null; /* Pointer to null indicator */ - void *buffer; /* buffer to get/put data */ - /* set this if you want to track data truncations happened during fetch */ - my_bool *error; - unsigned char *row_ptr; /* for the current data position */ - void (*store_param_func)(NET *net, struct st_mysql_bind *param); - void (*fetch_result)(struct st_mysql_bind *, MYSQL_FIELD *, - unsigned char **row); - void (*skip_result)(struct st_mysql_bind *, MYSQL_FIELD *, - unsigned char **row); - /* output buffer length, must be set when fetching str/binary */ - unsigned long buffer_length; - unsigned long offset; /* offset position for char/binary fetch */ - unsigned long length_value; /* Used if length is 0 */ - unsigned int param_number; /* For null count and error messages */ - unsigned int pack_length; /* Internal length for packed data */ - enum enum_field_types buffer_type; /* buffer type */ - my_bool error_value; /* used if error is 0 */ - my_bool is_unsigned; /* set if integer type is unsigned */ - my_bool long_data_used; /* If used with mysql_send_long_data */ - my_bool is_null_value; /* Used if is_null is 0 */ - void *extension; -} MYSQL_BIND; - - -/* statement handler */ -typedef struct st_mysql_stmt -{ - MEM_ROOT mem_root; /* root allocations */ - LIST list; /* list to keep track of all stmts */ - MYSQL *mysql; /* connection handle */ - MYSQL_BIND *params; /* input parameters */ - MYSQL_BIND *bind; /* output parameters */ - MYSQL_FIELD *fields; /* result set metadata */ - MYSQL_DATA result; /* cached result set */ - MYSQL_ROWS *data_cursor; /* current row in cached result */ - /* - mysql_stmt_fetch() calls this function to fetch one row (it's different - for buffered, unbuffered and cursor fetch). - */ - int (*read_row_func)(struct st_mysql_stmt *stmt, - unsigned char **row); - /* copy of mysql->affected_rows after statement execution */ - my_ulonglong affected_rows; - my_ulonglong insert_id; /* copy of mysql->insert_id */ - unsigned long stmt_id; /* Id for prepared statement */ - unsigned long flags; /* i.e. type of cursor to open */ - unsigned long prefetch_rows; /* number of rows per one COM_FETCH */ - /* - Copied from mysql->server_status after execute/fetch to know - server-side cursor status for this statement. - */ - unsigned int server_status; - unsigned int last_errno; /* error code */ - unsigned int param_count; /* input parameter count */ - unsigned int field_count; /* number of columns in result set */ - enum enum_mysql_stmt_state state; /* statement state */ - char last_error[MYSQL_ERRMSG_SIZE]; /* error message */ - char sqlstate[SQLSTATE_LENGTH+1]; - /* Types of input parameters should be sent to server */ - my_bool send_types_to_server; - my_bool bind_param_done; /* input buffers were supplied */ - unsigned char bind_result_done; /* output buffers were supplied */ - /* mysql_stmt_close() had to cancel this result */ - my_bool unbuffered_fetch_cancelled; - /* - Is set to true if we need to calculate field->max_length for - metadata fields when doing mysql_stmt_store_result. - */ - my_bool update_max_length; - void *extension; -} MYSQL_STMT; - -enum enum_stmt_attr_type -{ - /* - When doing mysql_stmt_store_result calculate max_length attribute - of statement metadata. This is to be consistent with the old API, - where this was done automatically. - In the new API we do that only by request because it slows down - mysql_stmt_store_result sufficiently. - */ - STMT_ATTR_UPDATE_MAX_LENGTH, - /* - unsigned long with combination of cursor flags (read only, for update, - etc) - */ - STMT_ATTR_CURSOR_TYPE, - /* - Amount of rows to retrieve from server per one fetch if using cursors. - Accepts unsigned long attribute in the range 1 - ulong_max - */ - STMT_ATTR_PREFETCH_ROWS -}; - - -typedef struct st_mysql_methods -{ - my_bool (*read_query_result)(MYSQL *mysql); - my_bool (*advanced_command)(MYSQL *mysql, - enum enum_server_command command, - const unsigned char *header, - unsigned long header_length, - const unsigned char *arg, - unsigned long arg_length, - my_bool skip_check, - MYSQL_STMT *stmt); - MYSQL_DATA *(*read_rows)(MYSQL *mysql,MYSQL_FIELD *mysql_fields, - unsigned int fields); - MYSQL_RES * (*use_result)(MYSQL *mysql); - void (*fetch_lengths)(unsigned long *to, - MYSQL_ROW column, unsigned int field_count); - void (*flush_use_result)(MYSQL *mysql); -#if !defined(MYSQL_SERVER) || defined(EMBEDDED_LIBRARY) - MYSQL_FIELD * (*list_fields)(MYSQL *mysql); - my_bool (*read_prepare_result)(MYSQL *mysql, MYSQL_STMT *stmt); - int (*stmt_execute)(MYSQL_STMT *stmt); - int (*read_binary_rows)(MYSQL_STMT *stmt); - int (*unbuffered_fetch)(MYSQL *mysql, char **row); - void (*free_embedded_thd)(MYSQL *mysql); - const char *(*read_statistics)(MYSQL *mysql); - my_bool (*next_result)(MYSQL *mysql); - int (*read_change_user_result)(MYSQL *mysql, char *buff, const char *passwd); - int (*read_rows_from_cursor)(MYSQL_STMT *stmt); -#endif -} MYSQL_METHODS; - - -MYSQL_STMT * STDCALL mysql_stmt_init(MYSQL *mysql); -int STDCALL mysql_stmt_prepare(MYSQL_STMT *stmt, const char *query, - unsigned long length); -int STDCALL mysql_stmt_execute(MYSQL_STMT *stmt); -int STDCALL mysql_stmt_fetch(MYSQL_STMT *stmt); -int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *bind_arg, - unsigned int column, - unsigned long offset); -int STDCALL mysql_stmt_store_result(MYSQL_STMT *stmt); -unsigned long STDCALL mysql_stmt_param_count(MYSQL_STMT * stmt); -my_bool STDCALL mysql_stmt_attr_set(MYSQL_STMT *stmt, - enum enum_stmt_attr_type attr_type, - const void *attr); -my_bool STDCALL mysql_stmt_attr_get(MYSQL_STMT *stmt, - enum enum_stmt_attr_type attr_type, - void *attr); -my_bool STDCALL mysql_stmt_bind_param(MYSQL_STMT * stmt, MYSQL_BIND * bnd); -my_bool STDCALL mysql_stmt_bind_result(MYSQL_STMT * stmt, MYSQL_BIND * bnd); -my_bool STDCALL mysql_stmt_close(MYSQL_STMT * stmt); -my_bool STDCALL mysql_stmt_reset(MYSQL_STMT * stmt); -my_bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt); -my_bool STDCALL mysql_stmt_send_long_data(MYSQL_STMT *stmt, - unsigned int param_number, - const char *data, - unsigned long length); -MYSQL_RES *STDCALL mysql_stmt_result_metadata(MYSQL_STMT *stmt); -MYSQL_RES *STDCALL mysql_stmt_param_metadata(MYSQL_STMT *stmt); -unsigned int STDCALL mysql_stmt_errno(MYSQL_STMT * stmt); -const char *STDCALL mysql_stmt_error(MYSQL_STMT * stmt); -const char *STDCALL mysql_stmt_sqlstate(MYSQL_STMT * stmt); -MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_seek(MYSQL_STMT *stmt, - MYSQL_ROW_OFFSET offset); -MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_tell(MYSQL_STMT *stmt); -void STDCALL mysql_stmt_data_seek(MYSQL_STMT *stmt, my_ulonglong offset); -my_ulonglong STDCALL mysql_stmt_num_rows(MYSQL_STMT *stmt); -my_ulonglong STDCALL mysql_stmt_affected_rows(MYSQL_STMT *stmt); -my_ulonglong STDCALL mysql_stmt_insert_id(MYSQL_STMT *stmt); -unsigned int STDCALL mysql_stmt_field_count(MYSQL_STMT *stmt); - -my_bool STDCALL mysql_commit(MYSQL * mysql); -my_bool STDCALL mysql_rollback(MYSQL * mysql); -my_bool STDCALL mysql_autocommit(MYSQL * mysql, my_bool auto_mode); -my_bool STDCALL mysql_more_results(MYSQL *mysql); -int STDCALL mysql_next_result(MYSQL *mysql); -void STDCALL mysql_close(MYSQL *sock); - - -/* status return codes */ -#define MYSQL_NO_DATA 100 -#define MYSQL_DATA_TRUNCATED 101 - -#define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT) - -#ifdef USE_OLD_FUNCTIONS -MYSQL * STDCALL mysql_connect(MYSQL *mysql, const char *host, - const char *user, const char *passwd); -int STDCALL mysql_create_db(MYSQL *mysql, const char *DB); -int STDCALL mysql_drop_db(MYSQL *mysql, const char *DB); -#define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT) -#endif -#define HAVE_MYSQL_REAL_CONNECT - -/* - The following functions are mainly exported because of mysqlbinlog; - They are not for general usage -*/ - -#define simple_command(mysql, command, arg, length, skip_check) \ - (*(mysql)->methods->advanced_command)(mysql, command, 0, \ - 0, arg, length, skip_check, NULL) -#define stmt_command(mysql, command, arg, length, stmt) \ - (*(mysql)->methods->advanced_command)(mysql, command, 0, \ - 0, arg, length, 1, stmt) - -#ifdef __NETWARE__ -#pragma pack(pop) /* restore alignment */ -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* _mysql_h */ diff --git a/Frameworks/MCPKit/MySQL/include/mysql_com.h b/Frameworks/MCPKit/MySQL/include/mysql_com.h deleted file mode 100644 index 357519d5..00000000 --- a/Frameworks/MCPKit/MySQL/include/mysql_com.h +++ /dev/null @@ -1,532 +0,0 @@ -/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -/* -** Common definition between mysql server & client -*/ - -#ifndef _mysql_com_h -#define _mysql_com_h - -#define HOSTNAME_LENGTH 60 -#define SYSTEM_CHARSET_MBMAXLEN 3 -#define NAME_CHAR_LEN 64 /* Field/table name length */ -#define USERNAME_CHAR_LENGTH 16 -#define NAME_LEN (NAME_CHAR_LEN*SYSTEM_CHARSET_MBMAXLEN) -#define USERNAME_LENGTH (USERNAME_CHAR_LENGTH*SYSTEM_CHARSET_MBMAXLEN) - -#define SERVER_VERSION_LENGTH 60 -#define SQLSTATE_LENGTH 5 - -/* - USER_HOST_BUFF_SIZE -- length of string buffer, that is enough to contain - username and hostname parts of the user identifier with trailing zero in - MySQL standard format: - user_name_part@host_name_part\0 -*/ -#define USER_HOST_BUFF_SIZE HOSTNAME_LENGTH + USERNAME_LENGTH + 2 - -#define LOCAL_HOST "localhost" -#define LOCAL_HOST_NAMEDPIPE "." - - -#if defined(__WIN__) && !defined( _CUSTOMCONFIG_) -#define MYSQL_NAMEDPIPE "MySQL" -#define MYSQL_SERVICENAME "MySQL" -#endif /* __WIN__ */ - -/* - You should add new commands to the end of this list, otherwise old - servers won't be able to handle them as 'unsupported'. -*/ - -enum enum_server_command -{ - COM_SLEEP, COM_QUIT, COM_INIT_DB, COM_QUERY, COM_FIELD_LIST, - COM_CREATE_DB, COM_DROP_DB, COM_REFRESH, COM_SHUTDOWN, COM_STATISTICS, - COM_PROCESS_INFO, COM_CONNECT, COM_PROCESS_KILL, COM_DEBUG, COM_PING, - COM_TIME, COM_DELAYED_INSERT, COM_CHANGE_USER, COM_BINLOG_DUMP, - COM_TABLE_DUMP, COM_CONNECT_OUT, COM_REGISTER_SLAVE, - COM_STMT_PREPARE, COM_STMT_EXECUTE, COM_STMT_SEND_LONG_DATA, COM_STMT_CLOSE, - COM_STMT_RESET, COM_SET_OPTION, COM_STMT_FETCH, COM_DAEMON, - /* don't forget to update const char *command_name[] in sql_parse.cc */ - - /* Must be last */ - COM_END -}; - - -/* - Length of random string sent by server on handshake; this is also length of - obfuscated password, recieved from client -*/ -#define SCRAMBLE_LENGTH 20 -#define SCRAMBLE_LENGTH_323 8 -/* length of password stored in the db: new passwords are preceeded with '*' */ -#define SCRAMBLED_PASSWORD_CHAR_LENGTH (SCRAMBLE_LENGTH*2+1) -#define SCRAMBLED_PASSWORD_CHAR_LENGTH_323 (SCRAMBLE_LENGTH_323*2) - - -#define NOT_NULL_FLAG 1 /* Field can't be NULL */ -#define PRI_KEY_FLAG 2 /* Field is part of a primary key */ -#define UNIQUE_KEY_FLAG 4 /* Field is part of a unique key */ -#define MULTIPLE_KEY_FLAG 8 /* Field is part of a key */ -#define BLOB_FLAG 16 /* Field is a blob */ -#define UNSIGNED_FLAG 32 /* Field is unsigned */ -#define ZEROFILL_FLAG 64 /* Field is zerofill */ -#define BINARY_FLAG 128 /* Field is binary */ - -/* The following are only sent to new clients */ -#define ENUM_FLAG 256 /* field is an enum */ -#define AUTO_INCREMENT_FLAG 512 /* field is a autoincrement field */ -#define TIMESTAMP_FLAG 1024 /* Field is a timestamp */ -#define SET_FLAG 2048 /* field is a set */ -#define NO_DEFAULT_VALUE_FLAG 4096 /* Field doesn't have default value */ -#define ON_UPDATE_NOW_FLAG 8192 /* Field is set to NOW on UPDATE */ -#define NUM_FLAG 32768 /* Field is num (for clients) */ -#define PART_KEY_FLAG 16384 /* Intern; Part of some key */ -#define GROUP_FLAG 32768 /* Intern: Group field */ -#define UNIQUE_FLAG 65536 /* Intern: Used by sql_yacc */ -#define BINCMP_FLAG 131072 /* Intern: Used by sql_yacc */ -#define GET_FIXED_FIELDS_FLAG (1 << 18) /* Used to get fields in item tree */ -#define FIELD_IN_PART_FUNC_FLAG (1 << 19)/* Field part of partition func */ -#define FIELD_IN_ADD_INDEX (1<< 20) /* Intern: Field used in ADD INDEX */ -#define FIELD_IS_RENAMED (1<< 21) /* Intern: Field is being renamed */ - -#define REFRESH_GRANT 1 /* Refresh grant tables */ -#define REFRESH_LOG 2 /* Start on new log file */ -#define REFRESH_TABLES 4 /* close all tables */ -#define REFRESH_HOSTS 8 /* Flush host cache */ -#define REFRESH_STATUS 16 /* Flush status variables */ -#define REFRESH_THREADS 32 /* Flush thread cache */ -#define REFRESH_SLAVE 64 /* Reset master info and restart slave - thread */ -#define REFRESH_MASTER 128 /* Remove all bin logs in the index - and truncate the index */ - -/* The following can't be set with mysql_refresh() */ -#define REFRESH_READ_LOCK 16384 /* Lock tables for read */ -#define REFRESH_FAST 32768 /* Intern flag */ - -/* RESET (remove all queries) from query cache */ -#define REFRESH_QUERY_CACHE 65536 -#define REFRESH_QUERY_CACHE_FREE 0x20000L /* pack query cache */ -#define REFRESH_DES_KEY_FILE 0x40000L -#define REFRESH_USER_RESOURCES 0x80000L - -#define CLIENT_LONG_PASSWORD 1 /* new more secure passwords */ -#define CLIENT_FOUND_ROWS 2 /* Found instead of affected rows */ -#define CLIENT_LONG_FLAG 4 /* Get all column flags */ -#define CLIENT_CONNECT_WITH_DB 8 /* One can specify db on connect */ -#define CLIENT_NO_SCHEMA 16 /* Don't allow database.table.column */ -#define CLIENT_COMPRESS 32 /* Can use compression protocol */ -#define CLIENT_ODBC 64 /* Odbc client */ -#define CLIENT_LOCAL_FILES 128 /* Can use LOAD DATA LOCAL */ -#define CLIENT_IGNORE_SPACE 256 /* Ignore spaces before '(' */ -#define CLIENT_PROTOCOL_41 512 /* New 4.1 protocol */ -#define CLIENT_INTERACTIVE 1024 /* This is an interactive client */ -#define CLIENT_SSL 2048 /* Switch to SSL after handshake */ -#define CLIENT_IGNORE_SIGPIPE 4096 /* IGNORE sigpipes */ -#define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */ -#define CLIENT_RESERVED 16384 /* Old flag for 4.1 protocol */ -#define CLIENT_SECURE_CONNECTION 32768 /* New 4.1 authentication */ -#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */ -#define CLIENT_MULTI_RESULTS (1UL << 17) /* Enable/disable multi-results */ - -#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30) -#define CLIENT_REMEMBER_OPTIONS (1UL << 31) - -/* Gather all possible capabilites (flags) supported by the server */ -#define CLIENT_ALL_FLAGS (CLIENT_LONG_PASSWORD | \ - CLIENT_FOUND_ROWS | \ - CLIENT_LONG_FLAG | \ - CLIENT_CONNECT_WITH_DB | \ - CLIENT_NO_SCHEMA | \ - CLIENT_COMPRESS | \ - CLIENT_ODBC | \ - CLIENT_LOCAL_FILES | \ - CLIENT_IGNORE_SPACE | \ - CLIENT_PROTOCOL_41 | \ - CLIENT_INTERACTIVE | \ - CLIENT_SSL | \ - CLIENT_IGNORE_SIGPIPE | \ - CLIENT_TRANSACTIONS | \ - CLIENT_RESERVED | \ - CLIENT_SECURE_CONNECTION | \ - CLIENT_MULTI_STATEMENTS | \ - CLIENT_MULTI_RESULTS | \ - CLIENT_SSL_VERIFY_SERVER_CERT | \ - CLIENT_REMEMBER_OPTIONS) - -/* - Switch off the flags that are optional and depending on build flags - If any of the optional flags is supported by the build it will be switched - on before sending to the client during the connection handshake. -*/ -#define CLIENT_BASIC_FLAGS (((CLIENT_ALL_FLAGS & ~CLIENT_SSL) \ - & ~CLIENT_COMPRESS) \ - & ~CLIENT_SSL_VERIFY_SERVER_CERT) - -#define SERVER_STATUS_IN_TRANS 1 /* Transaction has started */ -#define SERVER_STATUS_AUTOCOMMIT 2 /* Server in auto_commit mode */ -#define SERVER_MORE_RESULTS_EXISTS 8 /* Multi query - next query exists */ -#define SERVER_QUERY_NO_GOOD_INDEX_USED 16 -#define SERVER_QUERY_NO_INDEX_USED 32 -/** - The server was able to fulfill the clients request and opened a - read-only non-scrollable cursor for a query. This flag comes - in reply to COM_STMT_EXECUTE and COM_STMT_FETCH commands. -*/ -#define SERVER_STATUS_CURSOR_EXISTS 64 -/** - This flag is sent when a read-only cursor is exhausted, in reply to - COM_STMT_FETCH command. -*/ -#define SERVER_STATUS_LAST_ROW_SENT 128 -#define SERVER_STATUS_DB_DROPPED 256 /* A database was dropped */ -#define SERVER_STATUS_NO_BACKSLASH_ESCAPES 512 -/** - Sent to the client if after a prepared statement reprepare - we discovered that the new statement returns a different - number of result set columns. -*/ -#define SERVER_STATUS_METADATA_CHANGED 1024 - -/** - Server status flags that must be cleared when starting - execution of a new SQL statement. - Flags from this set are only added to the - current server status by the execution engine, but - never removed -- the execution engine expects them - to disappear automagically by the next command. -*/ -#define SERVER_STATUS_CLEAR_SET (SERVER_QUERY_NO_GOOD_INDEX_USED| \ - SERVER_QUERY_NO_INDEX_USED|\ - SERVER_MORE_RESULTS_EXISTS|\ - SERVER_STATUS_METADATA_CHANGED) - -#define MYSQL_ERRMSG_SIZE 512 -#define NET_READ_TIMEOUT 30 /* Timeout on read */ -#define NET_WRITE_TIMEOUT 60 /* Timeout on write */ -#define NET_WAIT_TIMEOUT 8*60*60 /* Wait for new query */ - -#define ONLY_KILL_QUERY 1 - - -struct st_vio; /* Only C */ -typedef struct st_vio Vio; - -#define MAX_TINYINT_WIDTH 3 /* Max width for a TINY w.o. sign */ -#define MAX_SMALLINT_WIDTH 5 /* Max width for a SHORT w.o. sign */ -#define MAX_MEDIUMINT_WIDTH 8 /* Max width for a INT24 w.o. sign */ -#define MAX_INT_WIDTH 10 /* Max width for a LONG w.o. sign */ -#define MAX_BIGINT_WIDTH 20 /* Max width for a LONGLONG */ -#define MAX_CHAR_WIDTH 255 /* Max length for a CHAR colum */ -#define MAX_BLOB_WIDTH 16777216 /* Default width for blob */ - -typedef struct st_net { -#if !defined(CHECK_EMBEDDED_DIFFERENCES) || !defined(EMBEDDED_LIBRARY) - Vio *vio; - unsigned char *buff,*buff_end,*write_pos,*read_pos; - my_socket fd; /* For Perl DBI/dbd */ - /* - The following variable is set if we are doing several queries in one - command ( as in LOAD TABLE ... FROM MASTER ), - and do not want to confuse the client with OK at the wrong time - */ - unsigned long remain_in_buf,length, buf_length, where_b; - unsigned long max_packet,max_packet_size; - unsigned int pkt_nr,compress_pkt_nr; - unsigned int write_timeout, read_timeout, retry_count; - int fcntl; - unsigned int *return_status; - unsigned char reading_or_writing; - char save_char; - my_bool unused0; /* Please remove with the next incompatible ABI change. */ - my_bool unused; /* Please remove with the next incompatible ABI change */ - my_bool compress; - my_bool unused1; /* Please remove with the next incompatible ABI change. */ - /* - Pointer to query object in query cache, do not equal NULL (0) for - queries in cache that have not stored its results yet - */ -#endif - /* - 'query_cache_query' should be accessed only via query cache - functions and methods to maintain proper locking. - */ - unsigned char *query_cache_query; - unsigned int last_errno; - unsigned char error; - my_bool unused2; /* Please remove with the next incompatible ABI change. */ - my_bool return_errno; - /** Client library error message buffer. Actually belongs to struct MYSQL. */ - char last_error[MYSQL_ERRMSG_SIZE]; - /** Client library sqlstate buffer. Set along with the error message. */ - char sqlstate[SQLSTATE_LENGTH+1]; - void *extension; -#if defined(MYSQL_SERVER) && !defined(EMBEDDED_LIBRARY) - /* - Controls whether a big packet should be skipped. - - Initially set to FALSE by default. Unauthenticated sessions must have - this set to FALSE so that the server can't be tricked to read packets - indefinitely. - */ - my_bool skip_big_packet; -#endif -} NET; - - -#define packet_error (~(unsigned long) 0) - -enum enum_field_types { MYSQL_TYPE_DECIMAL, MYSQL_TYPE_TINY, - MYSQL_TYPE_SHORT, MYSQL_TYPE_LONG, - MYSQL_TYPE_FLOAT, MYSQL_TYPE_DOUBLE, - MYSQL_TYPE_NULL, MYSQL_TYPE_TIMESTAMP, - MYSQL_TYPE_LONGLONG,MYSQL_TYPE_INT24, - MYSQL_TYPE_DATE, MYSQL_TYPE_TIME, - MYSQL_TYPE_DATETIME, MYSQL_TYPE_YEAR, - MYSQL_TYPE_NEWDATE, MYSQL_TYPE_VARCHAR, - MYSQL_TYPE_BIT, - MYSQL_TYPE_NEWDECIMAL=246, - MYSQL_TYPE_ENUM=247, - MYSQL_TYPE_SET=248, - MYSQL_TYPE_TINY_BLOB=249, - MYSQL_TYPE_MEDIUM_BLOB=250, - MYSQL_TYPE_LONG_BLOB=251, - MYSQL_TYPE_BLOB=252, - MYSQL_TYPE_VAR_STRING=253, - MYSQL_TYPE_STRING=254, - MYSQL_TYPE_GEOMETRY=255 - -}; - -/* For backward compatibility */ -#define CLIENT_MULTI_QUERIES CLIENT_MULTI_STATEMENTS -#define FIELD_TYPE_DECIMAL MYSQL_TYPE_DECIMAL -#define FIELD_TYPE_NEWDECIMAL MYSQL_TYPE_NEWDECIMAL -#define FIELD_TYPE_TINY MYSQL_TYPE_TINY -#define FIELD_TYPE_SHORT MYSQL_TYPE_SHORT -#define FIELD_TYPE_LONG MYSQL_TYPE_LONG -#define FIELD_TYPE_FLOAT MYSQL_TYPE_FLOAT -#define FIELD_TYPE_DOUBLE MYSQL_TYPE_DOUBLE -#define FIELD_TYPE_NULL MYSQL_TYPE_NULL -#define FIELD_TYPE_TIMESTAMP MYSQL_TYPE_TIMESTAMP -#define FIELD_TYPE_LONGLONG MYSQL_TYPE_LONGLONG -#define FIELD_TYPE_INT24 MYSQL_TYPE_INT24 -#define FIELD_TYPE_DATE MYSQL_TYPE_DATE -#define FIELD_TYPE_TIME MYSQL_TYPE_TIME -#define FIELD_TYPE_DATETIME MYSQL_TYPE_DATETIME -#define FIELD_TYPE_YEAR MYSQL_TYPE_YEAR -#define FIELD_TYPE_NEWDATE MYSQL_TYPE_NEWDATE -#define FIELD_TYPE_ENUM MYSQL_TYPE_ENUM -#define FIELD_TYPE_SET MYSQL_TYPE_SET -#define FIELD_TYPE_TINY_BLOB MYSQL_TYPE_TINY_BLOB -#define FIELD_TYPE_MEDIUM_BLOB MYSQL_TYPE_MEDIUM_BLOB -#define FIELD_TYPE_LONG_BLOB MYSQL_TYPE_LONG_BLOB -#define FIELD_TYPE_BLOB MYSQL_TYPE_BLOB -#define FIELD_TYPE_VAR_STRING MYSQL_TYPE_VAR_STRING -#define FIELD_TYPE_STRING MYSQL_TYPE_STRING -#define FIELD_TYPE_CHAR MYSQL_TYPE_TINY -#define FIELD_TYPE_INTERVAL MYSQL_TYPE_ENUM -#define FIELD_TYPE_GEOMETRY MYSQL_TYPE_GEOMETRY -#define FIELD_TYPE_BIT MYSQL_TYPE_BIT - - -/* Shutdown/kill enums and constants */ - -/* Bits for THD::killable. */ -#define MYSQL_SHUTDOWN_KILLABLE_CONNECT (unsigned char)(1 << 0) -#define MYSQL_SHUTDOWN_KILLABLE_TRANS (unsigned char)(1 << 1) -#define MYSQL_SHUTDOWN_KILLABLE_LOCK_TABLE (unsigned char)(1 << 2) -#define MYSQL_SHUTDOWN_KILLABLE_UPDATE (unsigned char)(1 << 3) - -enum mysql_enum_shutdown_level { - /* - We want levels to be in growing order of hardness (because we use number - comparisons). Note that DEFAULT does not respect the growing property, but - it's ok. - */ - SHUTDOWN_DEFAULT = 0, - /* wait for existing connections to finish */ - SHUTDOWN_WAIT_CONNECTIONS= MYSQL_SHUTDOWN_KILLABLE_CONNECT, - /* wait for existing trans to finish */ - SHUTDOWN_WAIT_TRANSACTIONS= MYSQL_SHUTDOWN_KILLABLE_TRANS, - /* wait for existing updates to finish (=> no partial MyISAM update) */ - SHUTDOWN_WAIT_UPDATES= MYSQL_SHUTDOWN_KILLABLE_UPDATE, - /* flush InnoDB buffers and other storage engines' buffers*/ - SHUTDOWN_WAIT_ALL_BUFFERS= (MYSQL_SHUTDOWN_KILLABLE_UPDATE << 1), - /* don't flush InnoDB buffers, flush other storage engines' buffers*/ - SHUTDOWN_WAIT_CRITICAL_BUFFERS= (MYSQL_SHUTDOWN_KILLABLE_UPDATE << 1) + 1, - /* Now the 2 levels of the KILL command */ -#if MYSQL_VERSION_ID >= 50000 - KILL_QUERY= 254, -#endif - KILL_CONNECTION= 255 -}; - - -enum enum_cursor_type -{ - CURSOR_TYPE_NO_CURSOR= 0, - CURSOR_TYPE_READ_ONLY= 1, - CURSOR_TYPE_FOR_UPDATE= 2, - CURSOR_TYPE_SCROLLABLE= 4 -}; - - -/* options for mysql_set_option */ -enum enum_mysql_set_option -{ - MYSQL_OPTION_MULTI_STATEMENTS_ON, - MYSQL_OPTION_MULTI_STATEMENTS_OFF -}; - -#define net_new_transaction(net) ((net)->pkt_nr=0) - -#ifdef __cplusplus -extern "C" { -#endif - -my_bool my_net_init(NET *net, Vio* vio); -void my_net_local_init(NET *net); -void net_end(NET *net); - void net_clear(NET *net, my_bool clear_buffer); -my_bool net_realloc(NET *net, size_t length); -my_bool net_flush(NET *net); -my_bool my_net_write(NET *net,const unsigned char *packet, size_t len); -my_bool net_write_command(NET *net,unsigned char command, - const unsigned char *header, size_t head_len, - const unsigned char *packet, size_t len); -int net_real_write(NET *net,const unsigned char *packet, size_t len); -unsigned long my_net_read(NET *net); - -#ifdef _global_h -void my_net_set_write_timeout(NET *net, uint timeout); -void my_net_set_read_timeout(NET *net, uint timeout); -#endif - -/* - The following function is not meant for normal usage - Currently it's used internally by manager.c -*/ -struct sockaddr; -int my_connect(my_socket s, const struct sockaddr *name, unsigned int namelen, - unsigned int timeout); - -struct rand_struct { - unsigned long seed1,seed2,max_value; - double max_value_dbl; -}; - -#ifdef __cplusplus -} -#endif - - /* The following is for user defined functions */ - -enum Item_result {STRING_RESULT=0, REAL_RESULT, INT_RESULT, ROW_RESULT, - DECIMAL_RESULT}; - -typedef struct st_udf_args -{ - unsigned int arg_count; /* Number of arguments */ - enum Item_result *arg_type; /* Pointer to item_results */ - char **args; /* Pointer to argument */ - unsigned long *lengths; /* Length of string arguments */ - char *maybe_null; /* Set to 1 for all maybe_null args */ - char **attributes; /* Pointer to attribute name */ - unsigned long *attribute_lengths; /* Length of attribute arguments */ - void *extension; -} UDF_ARGS; - - /* This holds information about the result */ - -typedef struct st_udf_init -{ - my_bool maybe_null; /* 1 if function can return NULL */ - unsigned int decimals; /* for real functions */ - unsigned long max_length; /* For string functions */ - char *ptr; /* free pointer for function data */ - my_bool const_item; /* 1 if function always returns the same value */ - void *extension; -} UDF_INIT; -/* - TODO: add a notion for determinism of the UDF. - See Item_udf_func::update_used_tables () -*/ - - /* Constants when using compression */ -#define NET_HEADER_SIZE 4 /* standard header size */ -#define COMP_HEADER_SIZE 3 /* compression header extra size */ - - /* Prototypes to password functions */ - -#ifdef __cplusplus -extern "C" { -#endif - -/* - These functions are used for authentication by client and server and - implemented in sql/password.c -*/ - -void randominit(struct rand_struct *, unsigned long seed1, - unsigned long seed2); -double my_rnd(struct rand_struct *); -void create_random_string(char *to, unsigned int length, struct rand_struct *rand_st); - -void hash_password(unsigned long *to, const char *password, unsigned int password_len); -void make_scrambled_password_323(char *to, const char *password); -void scramble_323(char *to, const char *message, const char *password); -my_bool check_scramble_323(const char *, const char *message, - unsigned long *salt); -void get_salt_from_password_323(unsigned long *res, const char *password); -void make_password_from_salt_323(char *to, const unsigned long *salt); - -void make_scrambled_password(char *to, const char *password); -void scramble(char *to, const char *message, const char *password); -my_bool check_scramble(const char *reply, const char *message, - const unsigned char *hash_stage2); -void get_salt_from_password(unsigned char *res, const char *password); -void make_password_from_salt(char *to, const unsigned char *hash_stage2); -char *octet2hex(char *to, const char *str, unsigned int len); - -/* end of password.c */ - -char *get_tty_password(const char *opt_message); -const char *mysql_errno_to_sqlstate(unsigned int mysql_errno); - -/* Some other useful functions */ - -my_bool my_thread_init(void); -void my_thread_end(void); - -#ifdef _global_h -ulong STDCALL net_field_length(uchar **packet); -my_ulonglong net_field_length_ll(uchar **packet); -uchar *net_store_length(uchar *pkg, ulonglong length); -#endif - -#ifdef __cplusplus -} -#endif - -#define NULL_LENGTH ((unsigned long) ~0) /* For net_store_length */ -#define MYSQL_STMT_HEADER 4 -#define MYSQL_LONG_DATA_HEADER 6 - -#endif diff --git a/Frameworks/MCPKit/MySQL/include/mysql_embed.h b/Frameworks/MCPKit/MySQL/include/mysql_embed.h deleted file mode 100644 index a7d6e610..00000000 --- a/Frameworks/MCPKit/MySQL/include/mysql_embed.h +++ /dev/null @@ -1,29 +0,0 @@ -/* Copyright (C) 2000 MySQL AB - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -/* Defines that are unique to the embedded version of MySQL */ - -#ifdef EMBEDDED_LIBRARY - -/* Things we don't need in the embedded version of MySQL */ -/* TODO HF add #undef HAVE_VIO if we don't want client in embedded library */ - -#undef HAVE_OPENSSL -#undef HAVE_SMEM /* No shared memory */ -#undef HAVE_NDBCLUSTER_DB /* No NDB cluster */ - -#define DONT_USE_RAID - -#endif /* EMBEDDED_LIBRARY */ diff --git a/Frameworks/MCPKit/MySQL/include/mysql_time.h b/Frameworks/MCPKit/MySQL/include/mysql_time.h deleted file mode 100644 index 0a3f17a8..00000000 --- a/Frameworks/MCPKit/MySQL/include/mysql_time.h +++ /dev/null @@ -1,55 +0,0 @@ -/* Copyright (C) 2004 MySQL AB - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -#ifndef _mysql_time_h_ -#define _mysql_time_h_ - -/* - Time declarations shared between the server and client API: - you should not add anything to this header unless it's used - (and hence should be visible) in mysql.h. - If you're looking for a place to add new time-related declaration, - it's most likely my_time.h. See also "C API Handling of Date - and Time Values" chapter in documentation. -*/ - -enum enum_mysql_timestamp_type -{ - MYSQL_TIMESTAMP_NONE= -2, MYSQL_TIMESTAMP_ERROR= -1, - MYSQL_TIMESTAMP_DATE= 0, MYSQL_TIMESTAMP_DATETIME= 1, MYSQL_TIMESTAMP_TIME= 2 -}; - - -/* - Structure which is used to represent datetime values inside MySQL. - - We assume that values in this structure are normalized, i.e. year <= 9999, - month <= 12, day <= 31, hour <= 23, hour <= 59, hour <= 59. Many functions - in server such as my_system_gmt_sec() or make_time() family of functions - rely on this (actually now usage of make_*() family relies on a bit weaker - restriction). Also functions that produce MYSQL_TIME as result ensure this. - There is one exception to this rule though if this structure holds time - value (time_type == MYSQL_TIMESTAMP_TIME) days and hour member can hold - bigger values. -*/ -typedef struct st_mysql_time -{ - unsigned int year, month, day, hour, minute, second; - unsigned long second_part; - my_bool neg; - enum enum_mysql_timestamp_type time_type; -} MYSQL_TIME; - -#endif /* _mysql_time_h_ */ diff --git a/Frameworks/MCPKit/MySQL/include/mysql_version.h b/Frameworks/MCPKit/MySQL/include/mysql_version.h deleted file mode 100644 index 1eba2ede..00000000 --- a/Frameworks/MCPKit/MySQL/include/mysql_version.h +++ /dev/null @@ -1,30 +0,0 @@ -/* Copyright Abandoned 1996, 1999, 2001 MySQL AB - This file is public domain and comes with NO WARRANTY of any kind */ - -/* Version numbers for protocol & mysqld */ - -#ifndef _mysql_version_h -#define _mysql_version_h -#ifdef _CUSTOMCONFIG_ -#include -#else -#define PROTOCOL_VERSION 10 -#define MYSQL_SERVER_VERSION "5.1.57" -#define MYSQL_BASE_VERSION "mysqld-5.1" -#define MYSQL_SERVER_SUFFIX_DEF "" -#define FRM_VER 6 -#define MYSQL_VERSION_ID 50157 -#define MYSQL_PORT 3306 -#define MYSQL_PORT_DEFAULT 0 -#define MYSQL_UNIX_ADDR "/tmp/mysql.sock" -#define MYSQL_CONFIG_NAME "my" -#define MYSQL_COMPILATION_COMMENT "Source distribution" - -/* mysqld compile time options */ -#endif /* _CUSTOMCONFIG_ */ - -#ifndef LICENSE -#define LICENSE GPL -#endif /* LICENSE */ - -#endif /* _mysql_version_h */ diff --git a/Frameworks/MCPKit/MySQL/include/typelib.h b/Frameworks/MCPKit/MySQL/include/typelib.h deleted file mode 100644 index 46106d1b..00000000 --- a/Frameworks/MCPKit/MySQL/include/typelib.h +++ /dev/null @@ -1,39 +0,0 @@ -/* Copyright (C) 2000 MySQL AB - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - - -#ifndef _typelib_h -#define _typelib_h - -#include "my_alloc.h" - -typedef struct st_typelib { /* Different types saved here */ - unsigned int count; /* How many types */ - const char *name; /* Name of typelib */ - const char **type_names; - unsigned int *type_lengths; -} TYPELIB; - -extern my_ulonglong find_typeset(char *x, TYPELIB *typelib,int *error_position); -extern int find_type_or_exit(const char *x, TYPELIB *typelib, - const char *option); -extern int find_type(char *x, const TYPELIB *typelib, unsigned int full_name); -extern void make_type(char *to,unsigned int nr,TYPELIB *typelib); -extern const char *get_type(TYPELIB *typelib,unsigned int nr); -extern TYPELIB *copy_typelib(MEM_ROOT *root, TYPELIB *from); - -extern TYPELIB sql_protocol_typelib; - -#endif /* _typelib_h */ diff --git a/Frameworks/MCPKit/MySQL/lib/libmysqlclient.a b/Frameworks/MCPKit/MySQL/lib/libmysqlclient.a deleted file mode 100644 index 969697fb..00000000 Binary files a/Frameworks/MCPKit/MySQL/lib/libmysqlclient.a and /dev/null differ diff --git a/Frameworks/MCPKit/MySQL/lib/libmysqlclient_r.a b/Frameworks/MCPKit/MySQL/lib/libmysqlclient_r.a deleted file mode 100644 index 3c8d05fd..00000000 Binary files a/Frameworks/MCPKit/MySQL/lib/libmysqlclient_r.a and /dev/null differ diff --git a/Frameworks/MCPKit/Support files/NSNotificationAdditions.h b/Frameworks/MCPKit/Support files/NSNotificationAdditions.h deleted file mode 100644 index 82777ebb..00000000 --- a/Frameworks/MCPKit/Support files/NSNotificationAdditions.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// $Id: NSNotificationAdditions.h 2045 2010-03-31 18:01:50Z stuart02 $ -// -// NSNotificationAdditions.h -// sequel-pro -// -// Copied from the Colloquy project; original code available from Trac at -// http://colloquy.info/project/browser/trunk/Additions/NSNotificationAdditions.h -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at - -@interface NSNotificationCenter (NSNotificationCenterAdditions) - -- (void)postNotificationOnMainThread:(NSNotification *)aNotification; -- (void)postNotificationOnMainThread:(NSNotification *)aNotification waitUntilDone:(BOOL)shouldWaitUntilDone; - -- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject; -- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo; -- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo waitUntilDone:(BOOL)shouldWaitUntilDone; - -@end diff --git a/Frameworks/MCPKit/Support files/NSNotificationAdditions.m b/Frameworks/MCPKit/Support files/NSNotificationAdditions.m deleted file mode 100644 index 91b8134d..00000000 --- a/Frameworks/MCPKit/Support files/NSNotificationAdditions.m +++ /dev/null @@ -1,97 +0,0 @@ -// -// $Id: NSNotificationAdditions.m 2045 2010-03-31 18:01:50Z stuart02 $ -// -// NSNotificationAdditions.m -// sequel-pro -// -// Copied from the Colloquy project; original code available from Trac at -// http://colloquy.info/project/browser/trunk/Additions/NSNotificationAdditions.m -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// More info at - -#import "NSNotificationAdditions.h" -#import "pthread.h" - -@interface NSNotificationCenter (NSNotificationCenterAdditions_PrivateAPI) -+ (void)_postNotification:(NSNotification *)aNotification; -+ (void)_postNotificationWithDetails:(NSDictionary *)anInfoDictionary; -@end - -@implementation NSNotificationCenter (NSNotificationCenterAdditions) - -- (void)postNotificationOnMainThread:(NSNotification *)aNotification -{ - if (pthread_main_np()) return [self postNotification:aNotification]; - - [self performSelectorOnMainThread:@selector(_postNotification:) withObject:aNotification waitUntilDone:NO]; -} - -- (void)postNotificationOnMainThread:(NSNotification *)aNotification waitUntilDone:(BOOL)shouldWaitUntilDone -{ - if (pthread_main_np()) return [self postNotification:aNotification]; - - [self performSelectorOnMainThread:@selector(_postNotification:) withObject:aNotification waitUntilDone:shouldWaitUntilDone]; -} - -- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject -{ - if (pthread_main_np()) return [self postNotificationName:aName object:anObject userInfo:nil]; - - [self postNotificationOnMainThreadWithName:aName object:anObject userInfo:nil waitUntilDone:NO]; -} - -- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo -{ - if(pthread_main_np()) return [self postNotificationName:aName object:anObject userInfo:aUserInfo]; - - [self postNotificationOnMainThreadWithName:aName object:anObject userInfo:aUserInfo waitUntilDone:NO]; -} - -- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo waitUntilDone:(BOOL)shouldWaitUntilDone -{ - if (pthread_main_np()) return [self postNotificationName:aName object:anObject userInfo:aUserInfo]; - - NSMutableDictionary *info = [[NSMutableDictionary allocWithZone:nil] initWithCapacity:3]; - - if (aName) [info setObject:aName forKey:@"name"]; - if (anObject) [info setObject:anObject forKey:@"object"]; - if (aUserInfo) [info setObject:aUserInfo forKey:@"userInfo"]; - - [[self class] performSelectorOnMainThread:@selector(_postNotificationWithDetails:) withObject:info waitUntilDone:shouldWaitUntilDone]; -} - -@end - -@implementation NSNotificationCenter (NSNotificationCenterAdditions_PrivateAPI) - -+ (void)_postNotification:(NSNotification *)aNotification -{ - [[self defaultCenter] postNotification:aNotification]; -} - -+ (void)_postNotificationWithDetails:(NSDictionary *)anInfoDictionary -{ - NSString *name = [anInfoDictionary objectForKey:@"name"]; - id object = [anInfoDictionary objectForKey:@"object"]; - NSDictionary *userInfo = [anInfoDictionary objectForKey:@"userInfo"]; - - [[self defaultCenter] postNotificationName:name object:object userInfo:userInfo]; - - [anInfoDictionary release]; -} - -@end diff --git a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj index 344a498b..a9f8db0d 100644 --- a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj +++ b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj @@ -30,6 +30,8 @@ 584294FF14CB8002000F8438 /* Server Info.m in Sources */ = {isa = PBXBuildFile; fileRef = 584294FD14CB8002000F8438 /* Server Info.m */; }; 586A99FB14F02E21007F82BF /* SPMySQLStreamingResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; 586A99FC14F02E21007F82BF /* SPMySQLStreamingResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; }; + 586AA16714F30C5F007F82BF /* Convenience Methods.h in Headers */ = {isa = PBXBuildFile; fileRef = 586AA16514F30C5F007F82BF /* Convenience Methods.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 586AA16814F30C5F007F82BF /* Convenience Methods.m in Sources */ = {isa = PBXBuildFile; fileRef = 586AA16614F30C5F007F82BF /* Convenience Methods.m */; }; 5884127714CC63830078027F /* SPMySQL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5884127614CC63830078027F /* SPMySQL.h */; settings = {ATTRIBUTES = (Public, ); }; }; 588412A814CC7A4D0078027F /* Locking.h in Headers */ = {isa = PBXBuildFile; fileRef = 588412A614CC7A4D0078027F /* Locking.h */; }; 5884133C14CCEC6B0078027F /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 5884133B14CCEC6B0078027F /* libz.dylib */; }; @@ -92,6 +94,8 @@ 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLStreamingResult.h; path = Source/SPMySQLStreamingResult.h; sourceTree = ""; }; 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLStreamingResult.m; path = Source/SPMySQLStreamingResult.m; sourceTree = ""; }; 586AA0E714F1CEC8007F82BF /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = ""; }; + 586AA16514F30C5F007F82BF /* Convenience Methods.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Convenience Methods.h"; path = "Source/SPMySQLResult Categories/Convenience Methods.h"; sourceTree = ""; }; + 586AA16614F30C5F007F82BF /* Convenience Methods.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Convenience Methods.m"; path = "Source/SPMySQLResult Categories/Convenience Methods.m"; sourceTree = ""; }; 5884127614CC63830078027F /* SPMySQL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQL.h; path = Source/SPMySQL.h; sourceTree = ""; }; 588412A614CC7A4D0078027F /* Locking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Locking.h; path = "Source/SPMySQLConnection Categories/Locking.h"; sourceTree = ""; }; 588412A714CC7A4D0078027F /* Locking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Locking.m; path = "Source/SPMySQLConnection Categories/Locking.m"; sourceTree = ""; }; @@ -335,6 +339,8 @@ children = ( 58C7C1E614DB6E8600436315 /* Field Definitions.h */, 58C7C1E714DB6E8600436315 /* Field Definitions.m */, + 586AA16514F30C5F007F82BF /* Convenience Methods.h */, + 586AA16614F30C5F007F82BF /* Convenience Methods.m */, ); name = "Result Categories"; sourceTree = ""; @@ -376,6 +382,7 @@ 58C00BD114E7459600AC489A /* Databases & Tables.h in Headers */, 58C00CA514E845D800AC489A /* SPMySQL Private APIs.h in Headers */, 586A99FB14F02E21007F82BF /* SPMySQLStreamingResult.h in Headers */, + 586AA16714F30C5F007F82BF /* Convenience Methods.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -458,6 +465,7 @@ 58C00AB614E4892E00AC489A /* Delegate & Proxy.m in Sources */, 58C00BD214E7459600AC489A /* Databases & Tables.m in Sources */, 586A99FC14F02E21007F82BF /* SPMySQLStreamingResult.m in Sources */, + 586AA16814F30C5F007F82BF /* Convenience Methods.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -526,7 +534,11 @@ 1DEB91B208733DA50010E9CD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ARCHS = ( + i386, + ppc, + x86_64, + ); GCC_C_LANGUAGE_STANDARD = gnu99; GCC_OPTIMIZATION_LEVEL = 0; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; @@ -555,7 +567,11 @@ 1DEB91B308733DA50010E9CD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ARCHS = ( + i386, + ppc, + x86_64, + ); GCC_C_LANGUAGE_STANDARD = gnu99; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -579,6 +595,60 @@ }; name = Release; }; + 586AA55214F5D599007F82BF /* Distribution */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = ( + i386, + ppc, + x86_64, + ); + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; + GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; + GCC_WARN_MISSING_PARENTHESES = YES; + GCC_WARN_PROTOTYPE_CONVERSION = YES; + GCC_WARN_SHADOW = YES; + GCC_WARN_SIGN_COMPARE = YES; + GCC_WARN_STRICT_SELECTOR_MATCH = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACH_O_TYPE = mh_dylib; + PREBINDING = NO; + SDKROOT = macosx10.5; + VALID_ARCHS = "i386 ppc x86_64"; + }; + name = Distribution; + }; + 586AA55314F5D599007F82BF /* Distribution */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + FRAMEWORK_VERSION = A; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = Source/SPMySQLFramework_Prefix.pch; + INFOPLIST_FILE = Resources/Info.plist; + INSTALL_PATH = "@executable_path/../Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/MySQL Client Libraries/lib\"", + ); + PRODUCT_NAME = SPMySQL; + WRAPPER_EXTENSION = framework; + }; + name = Distribution; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -587,6 +657,7 @@ buildConfigurations = ( 1DEB91AE08733DA50010E9CD /* Debug */, 1DEB91AF08733DA50010E9CD /* Release */, + 586AA55314F5D599007F82BF /* Distribution */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -596,6 +667,7 @@ buildConfigurations = ( 1DEB91B208733DA50010E9CD /* Debug */, 1DEB91B308733DA50010E9CD /* Release */, + 586AA55214F5D599007F82BF /* Distribution */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQL.h b/Frameworks/SPMySQLFramework/Source/SPMySQL.h index a9150f46..3c4c78f8 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQL.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQL.h @@ -57,6 +57,7 @@ #import "SPMySQLStreamingResult.h" #import "SPMySQLFastStreamingResult.h" #import "Field Definitions.h" +#import "Convenience Methods.h" // Result data objects -#import "SPMySQLGeometryData.h" \ No newline at end of file +#import "SPMySQLGeometryData.h" diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h index ff55f796..9ab8bc6a 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h @@ -45,6 +45,10 @@ - (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming; - (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType; +// Query convenience functions +- (NSArray *)getAllRowsFromQuery:(NSString *)theQueryString; +- (id)getFirstFieldFromQuery:(NSString *)theQueryString; + // Query information - (unsigned long long)rowsAffectedByLastQuery; - (unsigned long long)lastInsertID; @@ -100,4 +104,4 @@ static inline id SPMySQLConnectionQueryString(SPMySQLConnection* self, NSString if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionQueryStringMethodPtr)[self methodForSelector:cachedSelector]; return cachedMethodPointer(self, cachedSelector, theQueryString, theEncoding, theReturnType); -} \ No newline at end of file +} diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m index 4134880c..e3ce599a 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m @@ -356,6 +356,27 @@ return [theResult autorelease]; } +#pragma mark - +#pragma mark Query convenience functions + +/** + * Run a query and retrieve the entire result set as an array of dictionaries. + * Returns nil if there was a problem running the query or retrieving any results. + */ +- (NSArray *)getAllRowsFromQuery:(NSString *)theQueryString +{ + return [[self queryString:theQueryString] getAllRows]; +} + +/** + * Run a query and retrieve the first field of any response. Returns nil if there + * was a problem running the query or retrieving any results. + */ +- (id)getFirstFieldFromQuery:(NSString *)theQueryString +{ + return [[[self queryString:theQueryString] getRowAsArray] objectAtIndex:0]; +} + #pragma mark - #pragma mark Query information diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h index db6dc0af..5d1a5d11 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h @@ -174,4 +174,4 @@ + (NSString *)findSocketPath; -@end \ No newline at end of file +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h index f1a1f911..97e94170 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h @@ -30,6 +30,8 @@ // // More info at +#import "SPMySQLConstants.h" + @protocol SPMySQLConnectionDelegate @optional diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h index afd7c95a..2da553c6 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h @@ -74,4 +74,4 @@ typedef enum { */ - (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; -@end \ No newline at end of file +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h index 6fb3d279..b1689569 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h @@ -73,4 +73,4 @@ typedef enum { SPMySQLResultAsResult = 0, SPMySQLResultAsFastStreamingResult = 1, SPMySQLResultAsLowMemStreamingResult = 2 -} SPMySQLResultType; \ No newline at end of file +} SPMySQLResultType; diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.h b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.h new file mode 100644 index 00000000..7d870a93 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.h @@ -0,0 +1,38 @@ +// +// $Id$ +// +// Convenience Methods.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 20, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLResult (Convenience_Methods) + +- (NSArray *)getAllRows; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.m b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.m new file mode 100644 index 00000000..7e3619e1 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.m @@ -0,0 +1,71 @@ +// +// $Id$ +// +// Convenience Methods.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 20, 2012 +// Copyright (c) 2012 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 + +#import "Convenience Methods.h" + +@implementation SPMySQLResult (Convenience_Methods) + +/** + * Iterates over the result set, retrieving all the rows, and returns them + * as an array. + * The rows are in the default format for this instance, as controlled via + * -setDefaultRowReturnType:. + * Returns nil if there are no rows to return. + */ +- (NSArray *)getAllRows +{ + unsigned long long previousSeekPosition = currentRowIndex; + + NSMutableArray *rowsToReturn; + + // If the number of rows is known, pre-set the size; otherwise just create an array + if (numberOfRows != NSNotFound) { + rowsToReturn = [[NSMutableArray alloc] initWithCapacity:numberOfRows]; + } else { + rowsToReturn = [[NSMutableArray alloc] init]; + } + + // Loop through the rows in the instance-specified return format + for (id eachRow in self) { + [rowsToReturn addObject:eachRow]; + } + + // Seek to the previous position if appropriate + if (previousSeekPosition) [self seekToRow:previousSeekPosition]; + + // Instead of empty arrays, return nil if there are no rows. + if (![rowsToReturn count]) return nil; + + return rowsToReturn; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h b/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h index baddf8aa..29518b5d 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h @@ -73,6 +73,7 @@ typedef enum { // Result set information - (NSUInteger)numberOfFields; - (unsigned long long)numberOfRows; +- (double)queryExecutionTime; // Column information - (NSArray *)fieldNames; @@ -117,4 +118,4 @@ static inline id SPMySQLResultGetRow(SPMySQLResult* self, SPMySQLResultRowType r if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetRowMethodPtr)[self methodForSelector:cachedSelector]; return cachedMethodPointer(self, cachedSelector, rowType); -} \ No newline at end of file +} -- cgit v1.2.3 From 0c91f439a5b23e1b5a6d8139eb47aa5694e2925f Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Fri, 24 Feb 2012 00:30:18 +0000 Subject: Improvements to SPMySQL framework: - Correctly record affected rows - Fix thread safety/autorelease issues when draining pools during fast iteration - Improve streaming result processing speed --- .../SPMySQLFramework.xcodeproj/project.pbxproj | 7 +- .../Source/SPMySQLArrayAdditions.h | 50 ++++++++++ .../Querying & Preparation.m | 3 +- .../Source/SPMySQLFastStreamingResult.m | 104 +++++++++------------ .../SPMySQLResult Categories/Convenience Methods.m | 2 +- Frameworks/SPMySQLFramework/Source/SPMySQLResult.m | 13 ++- 6 files changed, 112 insertions(+), 67 deletions(-) create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLArrayAdditions.h (limited to 'Frameworks') diff --git a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj index a9f8db0d..933a68b7 100644 --- a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj +++ b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj @@ -32,6 +32,7 @@ 586A99FC14F02E21007F82BF /* SPMySQLStreamingResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; }; 586AA16714F30C5F007F82BF /* Convenience Methods.h in Headers */ = {isa = PBXBuildFile; fileRef = 586AA16514F30C5F007F82BF /* Convenience Methods.h */; settings = {ATTRIBUTES = (Public, ); }; }; 586AA16814F30C5F007F82BF /* Convenience Methods.m in Sources */ = {isa = PBXBuildFile; fileRef = 586AA16614F30C5F007F82BF /* Convenience Methods.m */; }; + 586AA81414F6C648007F82BF /* SPMySQLArrayAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 586AA81214F6C648007F82BF /* SPMySQLArrayAdditions.h */; }; 5884127714CC63830078027F /* SPMySQL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5884127614CC63830078027F /* SPMySQL.h */; settings = {ATTRIBUTES = (Public, ); }; }; 588412A814CC7A4D0078027F /* Locking.h in Headers */ = {isa = PBXBuildFile; fileRef = 588412A614CC7A4D0078027F /* Locking.h */; }; 5884133C14CCEC6B0078027F /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 5884133B14CCEC6B0078027F /* libz.dylib */; }; @@ -96,6 +97,7 @@ 586AA0E714F1CEC8007F82BF /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = ""; }; 586AA16514F30C5F007F82BF /* Convenience Methods.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Convenience Methods.h"; path = "Source/SPMySQLResult Categories/Convenience Methods.h"; sourceTree = ""; }; 586AA16614F30C5F007F82BF /* Convenience Methods.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Convenience Methods.m"; path = "Source/SPMySQLResult Categories/Convenience Methods.m"; sourceTree = ""; }; + 586AA81214F6C648007F82BF /* SPMySQLArrayAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLArrayAdditions.h; path = Source/SPMySQLArrayAdditions.h; sourceTree = ""; }; 5884127614CC63830078027F /* SPMySQL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQL.h; path = Source/SPMySQL.h; sourceTree = ""; }; 588412A614CC7A4D0078027F /* Locking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Locking.h; path = "Source/SPMySQLConnection Categories/Locking.h"; sourceTree = ""; }; 588412A714CC7A4D0078027F /* Locking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Locking.m; path = "Source/SPMySQLConnection Categories/Locking.m"; sourceTree = ""; }; @@ -330,6 +332,7 @@ children = ( 58C009D314E31D3800AC489A /* SPMySQLStringAdditions.h */, 58C009D414E31D3800AC489A /* SPMySQLStringAdditions.m */, + 586AA81214F6C648007F82BF /* SPMySQLArrayAdditions.h */, ); name = "Category Additions"; sourceTree = ""; @@ -383,6 +386,7 @@ 58C00CA514E845D800AC489A /* SPMySQL Private APIs.h in Headers */, 586A99FB14F02E21007F82BF /* SPMySQLStreamingResult.h in Headers */, 586AA16714F30C5F007F82BF /* Convenience Methods.h in Headers */, + 586AA81414F6C648007F82BF /* SPMySQLArrayAdditions.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -549,7 +553,6 @@ GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; GCC_WARN_MISSING_PARENTHESES = YES; - GCC_WARN_PROTOTYPE_CONVERSION = YES; GCC_WARN_SHADOW = YES; GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_STRICT_SELECTOR_MATCH = YES; @@ -581,7 +584,6 @@ GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; GCC_WARN_MISSING_PARENTHESES = YES; - GCC_WARN_PROTOTYPE_CONVERSION = YES; GCC_WARN_SHADOW = YES; GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_STRICT_SELECTOR_MATCH = YES; @@ -612,7 +614,6 @@ GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; GCC_WARN_MISSING_PARENTHESES = YES; - GCC_WARN_PROTOTYPE_CONVERSION = YES; GCC_WARN_SHADOW = YES; GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_STRICT_SELECTOR_MATCH = YES; diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLArrayAdditions.h b/Frameworks/SPMySQLFramework/Source/SPMySQLArrayAdditions.h new file mode 100644 index 00000000..46c6d8e0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLArrayAdditions.h @@ -0,0 +1,50 @@ +// +// $Id$ +// +// SPMySQLArrayAdditions.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 23, 2012 +// Copyright (c) 2012 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 + +/** + * Set up a static function to allow fast mutable array insertion using + * cached selectors. + * At least in 10.7, inserting items into an array at a known point + * using NSMutableArray methods appears to be the fastest way of adding + * items to a CF/NSMutableArray. + */ +static inline void SPMySQLMutableArrayInsertObject(NSMutableArray *self, id anObject, NSUInteger anIndex) +{ + typedef id (*SPMySQLMutableArrayInsertObjectPtr)(NSMutableArray*, SEL, id, NSUInteger); + static SPMySQLMutableArrayInsertObjectPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(insertObject:atIndex:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLMutableArrayInsertObjectPtr)[self methodForSelector:cachedSelector]; + + cachedMethodPointer(self, cachedSelector, anObject, anIndex); +} diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m index e3ce599a..cb5ce70d 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m @@ -346,9 +346,10 @@ } } - // Update error string and ID + // Update error string and ID, and the rows affected [self _updateLastErrorMessage:theErrorMessage]; [self _updateLastErrorID:theErrorID]; + lastQueryAffectedRowCount = theAffectedRowCount; // Store the result time on the response object [theResult _setQueryExecutionTime:queryExecutionTime]; diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m b/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m index f084dee0..8ba55134 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m @@ -32,8 +32,11 @@ #import "SPMySQLFastStreamingResult.h" #import "SPMySQL Private APIs.h" +#import "SPMySQLArrayAdditions.h" #include +static id NSNullPointer; + /** * This type of streaming result operates in a multithreaded fashion - a worker * thread is set up to download the results as fast as possible in the background, @@ -45,7 +48,7 @@ typedef struct st_spmysqlstreamingrowdata { char *data; - NSUInteger *dataLengths; + unsigned long *dataLengths; struct st_spmysqlstreamingrowdata *nextRow; } SPMySQLStreamingRowData; @@ -61,6 +64,16 @@ typedef struct st_spmysqlstreamingrowdata { #pragma mark - +/** + * In the one-off class initialisation, cache static variables + */ ++ (void)initialize +{ + + // Cached NSNull singleton reference + if (!NSNullPointer) NSNullPointer = [NSNull null]; +} + /** * Standard init method, constructing the SPMySQLStreamingResult around a MySQL * result pointer and the encoding to use when working with the data. @@ -137,9 +150,19 @@ typedef struct st_spmysqlstreamingrowdata { { NSUInteger copiedDataLength = 0; char *theRowData; - NSUInteger *fieldLengths; + unsigned long *fieldLengths; id theReturnData; + // If the target type was unspecified, use the instance default + if (theType == SPMySQLResultRowAsDefault) theType = defaultRowReturnType; + + // Set up the return data as appropriate + if (theType == SPMySQLResultRowAsArray) { + theReturnData = [NSMutableArray arrayWithCapacity:numberOfFields]; + } else { + theReturnData = [NSMutableDictionary dictionaryWithCapacity:numberOfFields]; + } + // Lock the data mutex for safe access of variables and counters pthread_mutex_lock(&dataLock); @@ -164,40 +187,32 @@ typedef struct st_spmysqlstreamingrowdata { theRowData = currentDataStoreEntry->data; fieldLengths = currentDataStoreEntry->dataLengths; - // If the target type was unspecified, use the instance default - if (theType == SPMySQLResultRowAsDefault) theType = defaultRowReturnType; - - // Set up the return data as appropriate - if (theType == SPMySQLResultRowAsArray) { - theReturnData = [NSMutableArray arrayWithCapacity:numberOfFields]; - } else { - theReturnData = [NSMutableDictionary dictionaryWithCapacity:numberOfFields]; - } - // Convert each of the cells in the row in turn + unsigned long fieldLength; + id cellData; + char *rawCellData; for (NSUInteger i = 0; i < numberOfFields; i++) { - char *rawCellData; - NSUInteger fieldLength = fieldLengths[i]; + fieldLength = fieldLengths[i]; // If the length of this cell is NSNotFound, it's a null reference if (fieldLength == NSNotFound) { - rawCellData = NULL; + cellData = nil; // Otherwise grab a reference to that data using pointer arithmetic } else { rawCellData = theRowData + copiedDataLength; copiedDataLength += fieldLength; - } - // Convert to the correct object type - id cellData = SPMySQLResultGetObject(self, rawCellData, fieldLength, fieldTypes[i], i); + // Convert to the correct object type + cellData = SPMySQLResultGetObject(self, rawCellData, fieldLength, fieldTypes[i], i); + } // If object creation failed, display a null - if (!cellData) cellData = [NSNull null]; + if (!cellData) cellData = NSNullPointer; // Add to the result array/dictionary if (theType == SPMySQLResultRowAsArray) { - [(NSMutableArray *)theReturnData addObject:cellData]; + SPMySQLMutableArrayInsertObject(theReturnData, cellData, i); } else { [(NSMutableDictionary *)theReturnData setObject:cellData forKey:fieldNames[i]]; } @@ -211,6 +226,7 @@ typedef struct st_spmysqlstreamingrowdata { // Update the active-data pointer to the next item in the list (which may be NULL) currentDataStoreEntry = currentDataStoreEntry->nextRow; + if (!currentDataStoreEntry) lastDataStoreEntry = NULL; // Increment the processed counter and row index processedRowCount++; @@ -221,7 +237,6 @@ typedef struct st_spmysqlstreamingrowdata { pthread_mutex_unlock(&dataLock); // Free the memory for the processed row - previousDataStoreEntry->nextRow = NULL; free(previousDataStoreEntry->dataLengths); if (previousDataStoreEntry->data != NULL) free(previousDataStoreEntry->data); free(previousDataStoreEntry); @@ -260,6 +275,7 @@ typedef struct st_spmysqlstreamingrowdata { // Update the active-data pointer to the next item in the list (which may be NULL) currentDataStoreEntry = currentDataStoreEntry->nextRow; + if (!currentDataStoreEntry) lastDataStoreEntry = NULL; processedRowCount++; currentRowIndex++; @@ -269,7 +285,6 @@ typedef struct st_spmysqlstreamingrowdata { pthread_mutex_unlock(&dataLock); // Free the memory for the processed row - previousDataStoreEntry->nextRow = NULL; free(previousDataStoreEntry->dataLengths); if (previousDataStoreEntry->data != NULL) free(previousDataStoreEntry->data); free(previousDataStoreEntry); @@ -287,47 +302,20 @@ typedef struct st_spmysqlstreamingrowdata { - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len { - // If all rows have already been processed, return 0 to stop iteration. - if (dataDownloaded && processedRowCount == downloadedRowCount) return 0; + // To avoid lock issues, return one row at a time. + id nextRow = SPMySQLResultGetRow(self, SPMySQLResultRowAsDefault); - // If the MySQL row pointer does not match the requested state, throw an exception - if (state->state != currentRowIndex) { - [NSException raise:NSRangeException format:@"SPMySQLFastStreamingResult results can only be accessed linearly"]; - } - - // Determine how many objects to return. Default to 128 items, or the number of items requested - NSUInteger itemsToReturn = 128; - if (len < 128) itemsToReturn = len; - - // If there are fewer items available in the downloaded-but-processed queue, limit to that - if (downloadedRowCount - processedRowCount < itemsToReturn) { - itemsToReturn = downloadedRowCount - processedRowCount; - } - - // If no rows are available to be processed, wait for a single item to be readied. - if (!itemsToReturn) itemsToReturn = 1; + // If no row was available, return 0 to stop iteration. + if (!nextRow) return 0; - // Retrieve rows and add them to the result stack - NSUInteger i, itemsRetrieved = 0; - id eachRow; - for (i = 0; i < itemsToReturn; i++) { - eachRow = SPMySQLResultGetRow(self, SPMySQLResultRowAsDefault); - - // If nil was returned the end of the result resource has been reached - if (!eachRow) { - if (!itemsRetrieved) return 0; - break; - } - - stackbuf[i] = eachRow; - itemsRetrieved++; - } + // Otherwise, add the item to the buffer and return the appropriate state. + stackbuf[0] = nextRow; - state->state += itemsRetrieved; + state->state += 1; state->itemsPtr = stackbuf; state->mutationsPtr = (unsigned long *)self; - return itemsRetrieved; + return 1; } @end @@ -349,7 +337,7 @@ typedef struct st_spmysqlstreamingrowdata { SPMySQLStreamingRowData *newRowStore; size_t sizeOfStreamingRowData = sizeof(SPMySQLStreamingRowData); - size_t sizeOfDataLengths = (size_t)(sizeof(NSUInteger) * numberOfFields); + size_t sizeOfDataLengths = (size_t)(sizeof(unsigned long) * numberOfFields); size_t sizeOfChar = sizeof(char); // Loop through the rows until the end of the data is reached - indicated via a NULL diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.m b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.m index 7e3619e1..2b049264 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Convenience Methods.m @@ -49,7 +49,7 @@ // If the number of rows is known, pre-set the size; otherwise just create an array if (numberOfRows != NSNotFound) { - rowsToReturn = [[NSMutableArray alloc] initWithCapacity:numberOfRows]; + rowsToReturn = [[NSMutableArray alloc] initWithCapacity:(NSUInteger)numberOfRows]; } else { rowsToReturn = [[NSMutableArray alloc] init]; } diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m b/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m index b110958d..3ccd5727 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m @@ -32,8 +32,10 @@ #import "SPMySQLResult.h" #import "SPMySQL Private APIs.h" +#import "SPMySQLArrayAdditions.h" static SPMySQLResultFieldProcessor fieldProcessingMap[256]; +static id NSNullPointer; @implementation SPMySQLResult @@ -52,6 +54,9 @@ static SPMySQLResultFieldProcessor fieldProcessingMap[256]; + (void)initialize { + // Cached NSNull singleton reference + if (!NSNullPointer) NSNullPointer = [NSNull null]; + // Go through the list of enum_field_types in mysql_com.h, mapping each to the method for // processing that result set. fieldProcessingMap[MYSQL_TYPE_DECIMAL] = SPMySQLResultFieldAsString; @@ -266,11 +271,11 @@ static SPMySQLResultFieldProcessor fieldProcessingMap[256]; id cellData = SPMySQLResultGetObject(self, theRow[i], theRowDataLengths[i], fieldTypes[i], i); // If object creation failed, display a null - if (!cellData) cellData = [NSNull null]; + if (!cellData) cellData = NSNullPointer; // Add to the result array/dictionary if (theType == SPMySQLResultRowAsArray) { - [(NSMutableArray *)theReturnData addObject:cellData]; + SPMySQLMutableArrayInsertObject(theReturnData, cellData, i); } else { [(NSMutableDictionary *)theReturnData setObject:cellData forKey:fieldNames[i]]; } @@ -389,7 +394,7 @@ static SPMySQLResultFieldProcessor fieldProcessingMap[256]; { // A NULL pointer for the data indicates a null value; return a NSNull object. - if (bytes == NULL) return [NSNull null]; + if (bytes == NULL) return NSNullPointer; // Determine the field processor to use SPMySQLResultFieldProcessor dataProcessor = fieldProcessingMap[fieldType]; @@ -445,7 +450,7 @@ static SPMySQLResultFieldProcessor fieldProcessingMap[256]; // Convert null types to NSNulls case SPMySQLResultFieldAsNull: - return [NSNull null]; + return NSNullPointer; case SPMySQLResultFieldAsUnhandled: NSLog(@"SPMySQLResult processing encountered an unknown field type (%d), falling back to NSData handling", fieldType); -- cgit v1.2.3 From 79eff5bf42154da8d7730e0e0159160f68ec4e16 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Wed, 14 Mar 2012 01:16:18 +0000 Subject: =?UTF-8?q?Final=20feature=20work=20on=20the=20SPMySQL=20branch=20?= =?UTF-8?q?before=20merging:=20=20-=20Add=20a=20ping=20keepalive=20managin?= =?UTF-8?q?g=20object=20to=20prevent=20retain=20cycles=20from=20the=20NSTi?= =?UTF-8?q?mer=20=20-=20Add=20-[SPMySQLConnection=20copy]=20support=20=20-?= =?UTF-8?q?=20Refactor=20Hans-J=C3=B6rg=20Bibiko's=20database=20structure?= =?UTF-8?q?=20retrieval,=20moving=20it=20out=20of=20the=20MySQL=20framewor?= =?UTF-8?q?k=20and=20building=20it=20around=20a=20copy=20of=20the=20connec?= =?UTF-8?q?tion.=20=20This=20reduces=20the=20amount=20of=20connections-ove?= =?UTF-8?q?r-time=20used=20by=20Sequel=20Pro=20to=20two=20constant=20conne?= =?UTF-8?q?ctions=20(addressing=20Issue=20#1097)=20and=20improves=20robust?= =?UTF-8?q?ness.=20=20-=20Use=20the=20database=20structure=20retrieval=20c?= =?UTF-8?q?onnection=20for=20faster=20query=20cancellation=20without=20an?= =?UTF-8?q?=20extra=20connection=20required,=20if=20possible?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SPMySQLFramework.xcodeproj/project.pbxproj | 16 +++ .../Source/SPMySQLConnection Categories/Copying.h | 36 ++++++ .../Source/SPMySQLConnection Categories/Copying.m | 71 ++++++++++++ .../Ping & KeepAlive.h | 5 +- .../Ping & KeepAlive.m | 15 +-- .../Querying & Preparation.h | 1 - .../Querying & Preparation.m | 10 +- .../SPMySQLFramework/Source/SPMySQLConnection.h | 6 +- .../SPMySQLFramework/Source/SPMySQLConnection.m | 16 +-- .../Source/SPMySQLKeepAliveTimer.h | 45 ++++++++ .../Source/SPMySQLKeepAliveTimer.m | 127 +++++++++++++++++++++ 11 files changed, 311 insertions(+), 37 deletions(-) create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Copying.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Copying.m create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLKeepAliveTimer.h create mode 100644 Frameworks/SPMySQLFramework/Source/SPMySQLKeepAliveTimer.m (limited to 'Frameworks') diff --git a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj index 933a68b7..2f8d300c 100644 --- a/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj +++ b/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj/project.pbxproj @@ -28,6 +28,10 @@ 584294FB14CB8002000F8438 /* Encoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 584294F914CB8002000F8438 /* Encoding.m */; }; 584294FE14CB8002000F8438 /* Server Info.h in Headers */ = {isa = PBXBuildFile; fileRef = 584294FC14CB8002000F8438 /* Server Info.h */; settings = {ATTRIBUTES = (Public, ); }; }; 584294FF14CB8002000F8438 /* Server Info.m in Sources */ = {isa = PBXBuildFile; fileRef = 584294FD14CB8002000F8438 /* Server Info.m */; }; + 584D812E15057ECD00F24774 /* SPMySQLKeepAliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 584D812C15057ECD00F24774 /* SPMySQLKeepAliveTimer.h */; }; + 584D812F15057ECD00F24774 /* SPMySQLKeepAliveTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 584D812D15057ECD00F24774 /* SPMySQLKeepAliveTimer.m */; }; + 584D82551509775000F24774 /* Copying.h in Headers */ = {isa = PBXBuildFile; fileRef = 584D82531509775000F24774 /* Copying.h */; }; + 584D82561509775000F24774 /* Copying.m in Sources */ = {isa = PBXBuildFile; fileRef = 584D82541509775000F24774 /* Copying.m */; }; 586A99FB14F02E21007F82BF /* SPMySQLStreamingResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; 586A99FC14F02E21007F82BF /* SPMySQLStreamingResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */; }; 586AA16714F30C5F007F82BF /* Convenience Methods.h in Headers */ = {isa = PBXBuildFile; fileRef = 586AA16514F30C5F007F82BF /* Convenience Methods.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -92,6 +96,10 @@ 584294F914CB8002000F8438 /* Encoding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Encoding.m; path = "Source/SPMySQLConnection Categories/Encoding.m"; sourceTree = ""; }; 584294FC14CB8002000F8438 /* Server Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Server Info.h"; path = "Source/SPMySQLConnection Categories/Server Info.h"; sourceTree = ""; }; 584294FD14CB8002000F8438 /* Server Info.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Server Info.m"; path = "Source/SPMySQLConnection Categories/Server Info.m"; sourceTree = ""; }; + 584D812C15057ECD00F24774 /* SPMySQLKeepAliveTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLKeepAliveTimer.h; path = Source/SPMySQLKeepAliveTimer.h; sourceTree = ""; }; + 584D812D15057ECD00F24774 /* SPMySQLKeepAliveTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLKeepAliveTimer.m; path = Source/SPMySQLKeepAliveTimer.m; sourceTree = ""; }; + 584D82531509775000F24774 /* Copying.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Copying.h; path = "Source/SPMySQLConnection Categories/Copying.h"; sourceTree = ""; }; + 584D82541509775000F24774 /* Copying.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Copying.m; path = "Source/SPMySQLConnection Categories/Copying.m"; sourceTree = ""; }; 586A99F914F02E21007F82BF /* SPMySQLStreamingResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SPMySQLStreamingResult.h; path = Source/SPMySQLStreamingResult.h; sourceTree = ""; }; 586A99FA14F02E21007F82BF /* SPMySQLStreamingResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SPMySQLStreamingResult.m; path = Source/SPMySQLStreamingResult.m; sourceTree = ""; }; 586AA0E714F1CEC8007F82BF /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = ""; }; @@ -202,6 +210,8 @@ 58C7C1E314DB6E4C00436315 /* SPMySQLFastStreamingResult.m */, 58C7C1E114DB6E3000436315 /* Result Categories */, 580A331B14D75CCF000D6933 /* Result types */, + 584D812C15057ECD00F24774 /* SPMySQLKeepAliveTimer.h */, + 584D812D15057ECD00F24774 /* SPMySQLKeepAliveTimer.m */, ); name = Classes; sourceTree = ""; @@ -288,6 +298,8 @@ 584294EB14CB8002000F8438 /* Connection Categories */ = { isa = PBXGroup; children = ( + 584D82531509775000F24774 /* Copying.h */, + 584D82541509775000F24774 /* Copying.m */, 58C00AB314E4892E00AC489A /* Delegate & Proxy.h */, 58C00AB414E4892E00AC489A /* Delegate & Proxy.m */, 58C00BCF14E7459600AC489A /* Databases & Tables.h */, @@ -387,6 +399,8 @@ 586A99FB14F02E21007F82BF /* SPMySQLStreamingResult.h in Headers */, 586AA16714F30C5F007F82BF /* Convenience Methods.h in Headers */, 586AA81414F6C648007F82BF /* SPMySQLArrayAdditions.h in Headers */, + 584D812E15057ECD00F24774 /* SPMySQLKeepAliveTimer.h in Headers */, + 584D82551509775000F24774 /* Copying.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -470,6 +484,8 @@ 58C00BD214E7459600AC489A /* Databases & Tables.m in Sources */, 586A99FC14F02E21007F82BF /* SPMySQLStreamingResult.m in Sources */, 586AA16814F30C5F007F82BF /* Convenience Methods.m in Sources */, + 584D812F15057ECD00F24774 /* SPMySQLKeepAliveTimer.m in Sources */, + 584D82561509775000F24774 /* Copying.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Copying.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Copying.h new file mode 100644 index 00000000..83d055d5 --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Copying.h @@ -0,0 +1,36 @@ +// +// $Id$ +// +// Copying.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on March 8, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLConnection (Copying) + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Copying.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Copying.m new file mode 100644 index 00000000..c2df2a4b --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Copying.m @@ -0,0 +1,71 @@ +// +// $Id$ +// +// Copying.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on March 8, 2012 +// Copyright (c) 2012 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 + +#import "Copying.h" + +@implementation SPMySQLConnection (Copying) + +/** + * Provide a copy of the SPMySQLConnection instance. + * The copy should inherit the full setup, but will not inherit + * the connection state - it will not be connected, and any connection + * details such as the selected database/encoding will not be inherited. + * Note that any proxy will not be referenced in the new connection, and + * should also be set if desired. + */ +- (id)copyWithZone:(NSZone *)zone +{ + SPMySQLConnection *copy = [[[self class] allocWithZone:zone] init]; + + // Synthesized details + [copy setDelegate:delegate]; + [copy setHost:host]; + [copy setUsername:username]; + [copy setPassword:password]; + [copy setPort:port]; + [copy setUseSocket:useSocket]; + [copy setSocketPath:socketPath]; + [copy setUseSSL:useSSL]; + [copy setSslKeyFilePath:sslKeyFilePath]; + [copy setSslCertificatePath:sslCertificatePath]; + [copy setSslCACertificatePath:sslCACertificatePath]; + [copy setTimeout:timeout]; + [copy setUseKeepAlive:useKeepAlive]; + [copy setRetryQueriesOnConnectionFailure:retryQueriesOnConnectionFailure]; + [copy setDelegateQueryLogging:delegateQueryLogging]; + + // Active connection state details, like selected database and encoding, are *not* copied. + + return copy; +} + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h index 3788c653..e84c4ca6 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h @@ -40,11 +40,8 @@ typedef struct { @interface SPMySQLConnection (Ping_and_KeepAlive) -// Setup functions -- (void)_initKeepAlivePingTimer; - // Keepalive ping initialisation -- (void)_keepAlive:(NSTimer *)theTimer; +- (void)_keepAlive; - (void)_threadedKeepAlive; // Master ping method diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m index 9e25edcb..3ce0c0cd 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m @@ -37,19 +37,6 @@ @implementation SPMySQLConnection (Ping_and_KeepAlive) -#pragma mark - -#pragma mark Setup functions - -/** - * Set up the keepalive timer; this should be called on the main - * thread, to ensure the timer isn't descheduled when child threads - * terminate. - */ -- (void)_initKeepAlivePingTimer -{ - keepAliveTimer = [[NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(_keepAlive:) userInfo:nil repeats:YES] retain]; -} - #pragma mark - #pragma mark Keepalive ping initialisation @@ -58,7 +45,7 @@ * This method is called every ten seconds and spawns a thread which determines * whether or not it should perform a ping. */ -- (void)_keepAlive:(NSTimer *)theTimer +- (void)_keepAlive { // Do nothing if not connected or if keepalive is disabled diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h index 9ab8bc6a..0f086a89 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h @@ -61,7 +61,6 @@ // Query cancellation - (void)cancelCurrentQuery; -- (BOOL)lastQueryWasCancelled; - (BOOL)lastQueryWasCancelledUsingReconnect; @end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m index cb5ce70d..9b54029c 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m @@ -282,7 +282,7 @@ } else { // Prevent retries if the query was cancelled or not a connection error - if (lastQueryWasCancelled && ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) { + if (lastQueryWasCancelled || ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) { break; } } @@ -548,14 +548,6 @@ lastQueryWasCancelledUsingReconnect = YES; } -/** - * Returns whether the last query was cancelled using cancelCurrentQuery. - */ -- (BOOL)lastQueryWasCancelled -{ - return lastQueryWasCancelled; -} - /** * If the last query was cancelled, returns whether that query cancellation * required the connection to be reset or whether the query was successfully diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h index 5d1a5d11..8f3b7f9f 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h @@ -30,6 +30,8 @@ // // More info at +@class SPMySQLKeepAliveTimer; + @interface SPMySQLConnection : NSObject { // Delegate @@ -80,7 +82,7 @@ // Timeout and keep-alive NSUInteger timeout; BOOL useKeepAlive; - NSTimer *keepAliveTimer; + SPMySQLKeepAliveTimer *keepAliveTimer; CGFloat keepAliveInterval; uint64_t lastKeepAliveTime; NSUInteger keepAlivePingFailures; @@ -153,6 +155,8 @@ @property (readwrite, assign) BOOL delegateQueryLogging; +@property (readwrite, assign) BOOL lastQueryWasCancelled; + #pragma mark - #pragma mark Connection and disconnection diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m index 4968266d..4f1e8a74 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m @@ -31,6 +31,7 @@ // More info at #import "SPMySQL Private APIs.h" +#import "SPMySQLKeepAliveTimer.h" #include #include #include @@ -71,6 +72,7 @@ const char *SPMySQLSSLPermissibleCiphers = "DHE-RSA-AES256-SHA:AES256-SHA:DHE-RS @synthesize mysqlConnectionThreadId; @synthesize retryQueriesOnConnectionFailure; @synthesize delegateQueryLogging; +@synthesize lastQueryWasCancelled; #pragma mark - #pragma mark Initialisation and teardown @@ -161,11 +163,7 @@ const char *SPMySQLSSLPermissibleCiphers = "DHE-RSA-AES256-SHA:AES256-SHA:DHE-RS retryQueriesOnConnectionFailure = YES; // Start the ping keepalive timer - if ([NSThread isMainThread]) { - [self _initKeepAlivePingTimer]; - } else { - [self performSelectorOnMainThread:@selector(_initKeepAlivePingTimer) withObject:nil waitUntilDone:YES]; - } + keepAliveTimer = [[SPMySQLKeepAliveTimer alloc] initWithInterval:10 target:self selector:@selector(_keepAlive)]; } return self; @@ -181,6 +179,10 @@ const char *SPMySQLSSLPermissibleCiphers = "DHE-RSA-AES256-SHA:AES256-SHA:DHE-RS // Unset the delegate [self setDelegate:nil]; + // Clear the keepalive timer + [keepAliveTimer invalidate]; + [keepAliveTimer release]; + // Disconnect if appropriate (which should also disconnect any proxy) [self disconnect]; @@ -196,14 +198,12 @@ const char *SPMySQLSSLPermissibleCiphers = "DHE-RSA-AES256-SHA:AES256-SHA:DHE-RS } [connectionLock release], connectionLock = nil; - [encoding dealloc]; + [encoding release]; if (previousEncoding) [previousEncoding release], previousEncoding = nil; if (database) [database release], database = nil; if (serverVersionString) [serverVersionString release], serverVersionString = nil; if (queryErrorMessage) [queryErrorMessage release], queryErrorMessage = nil; - [keepAliveTimer invalidate]; - [keepAliveTimer release]; [delegateDecisionLock release]; [NSObject cancelPreviousPerformRequestsWithTarget:self]; diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLKeepAliveTimer.h b/Frameworks/SPMySQLFramework/Source/SPMySQLKeepAliveTimer.h new file mode 100644 index 00000000..ebe46bed --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLKeepAliveTimer.h @@ -0,0 +1,45 @@ +// +// $Id$ +// +// SPMySQLKeepAliveTimer.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on March 5, 2012 +// Copyright (c) 2012 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 + + +@interface SPMySQLKeepAliveTimer : NSObject { + id timerTarget; + SEL timerSelector; + NSTimeInterval timerRepeatInterval; + + NSTimer *wrappedTimer; +} + +- (id)initWithInterval:(NSTimeInterval)anInterval target:(id)aTarget selector:(SEL)aSelector; +- (void)invalidate; + +@end diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLKeepAliveTimer.m b/Frameworks/SPMySQLFramework/Source/SPMySQLKeepAliveTimer.m new file mode 100644 index 00000000..f9164aff --- /dev/null +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLKeepAliveTimer.m @@ -0,0 +1,127 @@ +// +// $Id$ +// +// SPMySQLKeepAliveTimer.m +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on March 5, 2012 +// Copyright (c) 2012 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 + + +#import "SPMySQLKeepAliveTimer.h" +#import "SPMySQL Private APIs.h" + +@interface SPMySQLKeepAliveTimer (Private_API) + +- (void)_initKeepAliveTimer; +- (void)_forwardPing; + +@end + +#pragma mark - + +@implementation SPMySQLKeepAliveTimer + +/** + * Prevent SPMySQLKeepAliveTimer from being init'd normally. + */ +- (id)init +{ + [NSException raise:NSInternalInconsistencyException format:@"SPMySQLKeepAliveTimers should not be init'd directly; use initWithInterval:target:selector: instead."]; + return nil; +} + +/** + * Initialise the SPMySQLKeepAliveTimer. This also sets up the contained timer, + * which has to be wrapped in this class to prevent retain cycles preventing the + * parent connection from being released. + * + * After initialisation, the delegate should be set to ensure that the timer events + * are received. + */ +- (id)initWithInterval:(NSTimeInterval)anInterval target:(id)aTarget selector:(SEL)aSelector +{ + if ((self = [super init])) { + wrappedTimer = nil; + + // Keep a weak reference to the target + timerTarget = aTarget; + timerSelector = aSelector; + timerRepeatInterval = anInterval; + + // Ensure the timer is set up on the main thread + if ([NSThread isMainThread]) { + [self _initKeepAliveTimer]; + } else { + [self performSelectorOnMainThread:@selector(_initKeepAliveTimer) withObject:nil waitUntilDone:YES]; + } + } + + return self; +} + +/** + * Invalidate the wrapped timer, which also releases the reference to the timer + * target (this object), breaking retain loops. + */ +- (void)invalidate +{ + if ([NSThread isMainThread]) { + [wrappedTimer invalidate]; + } else { + [wrappedTimer performSelectorOnMainThread:@selector(invalidate) withObject:nil waitUntilDone:YES]; + } +} + +- (void)dealloc +{ + [wrappedTimer dealloc]; + [super dealloc]; +} + +@end + +@implementation SPMySQLKeepAliveTimer (Private_API) + +/** + * Set up the timer to tickle the target. This must be set up on the main thread + * to ensure the timer events keep firing. + */ +- (void)_initKeepAliveTimer +{ + wrappedTimer = [[NSTimer scheduledTimerWithTimeInterval:timerRepeatInterval target:self selector:@selector(_forwardPing) userInfo:nil repeats:YES] retain]; +} + +/** + * Forward the NSTimer-fired ping to the target object. Performing this forwarding + * breaks the retain cycle. + */ +- (void)_forwardPing +{ + [timerTarget performSelector:timerSelector]; +} + +@end -- cgit v1.2.3 From a9f95273a69035e6be8249a42322350df695870f Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Wed, 14 Mar 2012 01:50:43 +0000 Subject: SPMySQL integration bugfixes: - Fix a bug where the socket path would not be autodetected if an empty string was supplied - Fix a bug fetching primary key column names for tables - Fix a bug building database structures on MySQL 3.x servers --- Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Frameworks') diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m index 4f1e8a74..6308a3f5 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m @@ -656,7 +656,7 @@ const char *SPMySQLSSLPermissibleCiphers = "DHE-RSA-AES256-SHA:AES256-SHA:DHE-RS // If set to use a socket and a socket was supplied, use it; otherwise, search for a socket to use if (useSocket) { - if (socketPath) { + if ([socketPath length]) { theSocket = [self _cStringForString:socketPath]; } else { theSocket = [self _cStringForString:[SPMySQLConnection findSocketPath]]; -- cgit v1.2.3