<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for iOS Place</title>
	<atom:link href="http://blog.iosplace.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.iosplace.com</link>
	<description></description>
	<lastBuildDate>Sat, 20 Apr 2013 02:00:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Build and use dylib on iOS by iOS Root Bypass &#124; x24x24x24x24</title>
		<link>http://blog.iosplace.com/?p=33&#038;cpage=1#comment-14323</link>
		<dc:creator>iOS Root Bypass &#124; x24x24x24x24</dc:creator>
		<pubDate>Sat, 20 Apr 2013 02:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=33#comment-14323</guid>
		<description><![CDATA[[...] Setup dylib compiling for iOS from XCode from the instructions at &#8220;Build and use dylib on iOS&#8221; by iOS Place. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Setup dylib compiling for iOS from XCode from the instructions at &#8220;Build and use dylib on iOS&#8221; by iOS Place. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by Vivek</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-13853</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Wed, 10 Apr 2013 19:38:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-13853</guid>
		<description><![CDATA[Ok...I managed to get it compiled. But how to include this file in my project. Any help will be greatly appreciated. BTW I am using Xcode 4.2]]></description>
		<content:encoded><![CDATA[<p>Ok&#8230;I managed to get it compiled. But how to include this file in my project. Any help will be greatly appreciated. BTW I am using Xcode 4.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by Michael Ozeryansky</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-12761</link>
		<dc:creator>Michael Ozeryansky</dc:creator>
		<pubDate>Sun, 17 Mar 2013 05:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-12761</guid>
		<description><![CDATA[Thanks!

I had to change the version numbers for the sdks.
But everything compiled.

This was much easier than the last cross compile I did.
I kinda want to know what the tweaks were for though.]]></description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>I had to change the version numbers for the sdks.<br />
But everything compiled.</p>
<p>This was much easier than the last cross compile I did.<br />
I kinda want to know what the tweaks were for though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by ios 连接mac mysql服务器 &#124; Zdhaano</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-11238</link>
		<dc:creator>ios 连接mac mysql服务器 &#124; Zdhaano</dc:creator>
		<pubDate>Sun, 13 Jan 2013 03:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-11238</guid>
		<description><![CDATA[[...] 二、iOS系统上访问MySQLserver 在iPhone/iPad上访问MySQLserver，是通过官方MySQL　client库来实现。因为iOS完全兼容C语言，所以通过官方的client源码生成静态库来调用。我们将制作这个静态库libmysqlclient.a，支持simulator和ios设备。参考此处 １、下载client的源码，在选择版本框中，选择（source code），以免下错。当前版本(mysql-connector-c-6.0.2.tar.gz) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 二、iOS系统上访问MySQLserver 在iPhone/iPad上访问MySQLserver，是通过官方MySQL　client库来实现。因为iOS完全兼容C语言，所以通过官方的client源码生成静态库来调用。我们将制作这个静态库libmysqlclient.a，支持simulator和ios设备。参考此处 １、下载client的源码，在选择版本框中，选择（source code），以免下错。当前版本(mysql-connector-c-6.0.2.tar.gz) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by SB</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-10470</link>
		<dc:creator>SB</dc:creator>
		<pubDate>Wed, 05 Dec 2012 15:19:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-10470</guid>
		<description><![CDATA[YEEEEEEHHHAAAA!!! Success!

Note I had to build using the -DSKIP_SSL=1 definition to avoid the errors. It looks like there is an issue with yaSSL (a small SSL library written in C). Some of their definitions appear not to follow the correct ISO C standard :( WT..... so what! I say! Is it me or compilers turning into sissies? LOL

The only change I had to make was in include/my_global.h on line 129 adding &#124;&#124; defined(__arm__) at the end. The rest did not cause compiler issues. The verdict is out on the run time issues :)

  234  cmake -G Xcode -DSKIP_SSL=1 
  235  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphonesimulator6.0 ONLY_ACTIVE_ARCH=NO ARCHS=i386 PRODUCT_NAME=mysqlclient_simulator
  239   xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=armv7s PRODUCT_NAME=mysqlclient_device_armv7s
  240   xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=armv7 PRODUCT_NAME=mysqlclient_device_armv7
  241   lipo libmysql/Release-iphonesimulator/libmysqlclient_simulator.a libmysql/Release-iphoneos/libmysqlclient_device_armv7.a libmysql/Release-iphoneos/libmysqlclient_device_armv7s.a -create -output libmysql/Release-iphoneos/libmysqlclient.a]]></description>
		<content:encoded><![CDATA[<p>YEEEEEEHHHAAAA!!! Success!</p>
<p>Note I had to build using the -DSKIP_SSL=1 definition to avoid the errors. It looks like there is an issue with yaSSL (a small SSL library written in C). Some of their definitions appear not to follow the correct ISO C standard :( WT&#8230;.. so what! I say! Is it me or compilers turning into sissies? LOL</p>
<p>The only change I had to make was in include/my_global.h on line 129 adding || defined(__arm__) at the end. The rest did not cause compiler issues. The verdict is out on the run time issues :)</p>
<p>  234  cmake -G Xcode -DSKIP_SSL=1<br />
  235  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphonesimulator6.0 ONLY_ACTIVE_ARCH=NO ARCHS=i386 PRODUCT_NAME=mysqlclient_simulator<br />
  239   xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=armv7s PRODUCT_NAME=mysqlclient_device_armv7s<br />
  240   xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=armv7 PRODUCT_NAME=mysqlclient_device_armv7<br />
  241   lipo libmysql/Release-iphonesimulator/libmysqlclient_simulator.a libmysql/Release-iphoneos/libmysqlclient_device_armv7.a libmysql/Release-iphoneos/libmysqlclient_device_armv7s.a -create -output libmysql/Release-iphoneos/libmysqlclient.a</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by SB</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-10452</link>
		<dc:creator>SB</dc:creator>
		<pubDate>Tue, 04 Dec 2012 19:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-10452</guid>
		<description><![CDATA[Here are the steps I did how ever when I link it in the project I get the following errors, any help is greatly appreciated. I&#039;m guessing something to do with the encryption library?

  204  cd mysql-connector-c-6.0.2/
  205  vim include/my_net.h
  206  vim include/my_config.h
  207  vim include/my_global.h 

    -- Changed lines as documented

  216  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphonesimulator6.0 ONLY_ACTIVE_ARCH=NO ARCHS=i386 PRODUCT_NAME=mysqlclient_simulator

  217  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=”armv7 armv7s” PRODUCT_NAME=mysqlclient_device
    -- The above did not work and complained that the ARC=&quot;armv7 does note exists so...

  218  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=armv7s PRODUCT_NAME=mysqlclient_device_armv7s

  221  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=armv7 PRODUCT_NAME=mysqlclient_device_armv7

  222  lipo libmysql/Release-iphonesimulator/libmysqlclient_simulator.a libmysql/Release-iphoneos/libmysqlclient_device_armv7.a  libmysql/Release-iphoneos/libmysqlclient_device_armv7s.a -create -output libmysql/Release-iphoneos/libmysqlclient.a


Added libmysqlclient.a to my project and I am getting the bellow linker errors using 10.7.5 xCode Version 4.5.2 (4G2008a) building for iOS 6 


ERROR ::::::::::::

Ld /Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Intermediates/isiodiTouchScanner.build/Debug-iphoneos/isiodiTouchScanner.build/Objects-normal/armv7/isiodiTouchScanner normal armv7
    cd /Users/shawn/Projects/isiodiTouchScanner
    setenv IPHONEOS_DEPLOYMENT_TARGET 6.0
    setenv PATH &quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin&quot;
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -L/Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Products/Debug-iphoneos -L/Users/shawn/Projects/isiodiTouchScanner -L/Users/shawn/Projects/isiodiTouchScanner/LineaSDK &quot;-L/Users/shawn/Projects/isiodiTouchScanner/../DTDevices-iOS_2011-11-07_v1.29 RC/Library&quot; -F/Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Products/Debug-iphoneos -filelist /Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Intermediates/isiodiTouchScanner.build/Debug-iphoneos/isiodiTouchScanner.build/Objects-normal/armv7/isiodiTouchScanner.LinkFileList -dead_strip -fobjc-link-runtime -miphoneos-version-min=6.0 -framework Foundation -framework UIKit -framework CoreGraphics -framework ExternalAccessory -ldtdev -lmysqlclient -o /Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Intermediates/isiodiTouchScanner.build/Debug-iphoneos/isiodiTouchScanner.build/Objects-normal/armv7/isiodiTouchScanner

Undefined symbols for architecture armv7:
  &quot;vtable for __cxxabiv1::__vmi_class_type_info&quot;, referenced from:
      typeinfo for TaoCrypt::DES in libmysqlclient.a(des.o)
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
  &quot;std::terminate()&quot;, referenced from:
      yaSSL::read_file(yaSSL::SSL_CTX*, char const*, int, yaSSL::CertType) in libmysqlclient.a(ssl.o)
      _yaEVP_BytesToKey in libmysqlclient.a(ssl.o)
      _yaTLSv1_client_method in libmysqlclient.a(ssl.o)
      _yaSSL_CTX_new in libmysqlclient.a(ssl.o)
      _yaSSL_new in libmysqlclient.a(ssl.o)
      _yaBN_bin2bn in libmysqlclient.a(ssl.o)
      yaSSL::SSL::~SSL() in libmysqlclient.a(ssl.o)
      ...
  &quot;___gxx_personality_sj0&quot;, referenced from:
      yaSSL::read_file(yaSSL::SSL_CTX*, char const*, int, yaSSL::CertType) in libmysqlclient.a(ssl.o)
      _yaEVP_BytesToKey in libmysqlclient.a(ssl.o)
      _yaTLSv1_client_method in libmysqlclient.a(ssl.o)
      _yaSSL_CTX_new in libmysqlclient.a(ssl.o)
      _yaSSL_new in libmysqlclient.a(ssl.o)
      _yaBN_bin2bn in libmysqlclient.a(ssl.o)
      yaSSL::SSL::~SSL() in libmysqlclient.a(ssl.o)
      ...
  &quot;vtable for __cxxabiv1::__si_class_type_info&quot;, referenced from:
      typeinfo for TaoCrypt::HASH in libmysqlclient.a(ssl.o)
      typeinfo for yaSSL::Alert in libmysqlclient.a(yassl_imp.o)
      typeinfo for yaSSL::HandShakeHeader in libmysqlclient.a(yassl_imp.o)
      typeinfo for yaSSL::Finished in libmysqlclient.a(yassl_imp.o)
      typeinfo for yaSSL::ClientKeyBase in libmysqlclient.a(yassl_imp.o)
      typeinfo for yaSSL::EncryptedPreMasterSecret in libmysqlclient.a(yassl_imp.o)
      typeinfo for yaSSL::ClientDiffieHellmanPublic in libmysqlclient.a(yassl_imp.o)
      ...
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
  &quot;vtable for __cxxabiv1::__class_type_info&quot;, referenced from:
      typeinfo for yaSSL::virtual_base in libmysqlclient.a(yassl_imp.o)
      typeinfo for TaoCrypt::BasicDES in libmysqlclient.a(crypto_wrapper.o)
      typeinfo for TaoCrypt::virtual_base in libmysqlclient.a(dsa.o)
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)]]></description>
		<content:encoded><![CDATA[<p>Here are the steps I did how ever when I link it in the project I get the following errors, any help is greatly appreciated. I&#8217;m guessing something to do with the encryption library?</p>
<p>  204  cd mysql-connector-c-6.0.2/<br />
  205  vim include/my_net.h<br />
  206  vim include/my_config.h<br />
  207  vim include/my_global.h </p>
<p>    &#8212; Changed lines as documented</p>
<p>  216  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphonesimulator6.0 ONLY_ACTIVE_ARCH=NO ARCHS=i386 PRODUCT_NAME=mysqlclient_simulator</p>
<p>  217  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=”armv7 armv7s” PRODUCT_NAME=mysqlclient_device<br />
    &#8212; The above did not work and complained that the ARC=&#8221;armv7 does note exists so&#8230;</p>
<p>  218  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=armv7s PRODUCT_NAME=mysqlclient_device_armv7s</p>
<p>  221  xcodebuild -project libmysql.xcodeproj -target mysqlclient -configuration Release -sdk iphoneos6.0 ONLY_ACTIVE_ARCH=NO ARCHS=armv7 PRODUCT_NAME=mysqlclient_device_armv7</p>
<p>  222  lipo libmysql/Release-iphonesimulator/libmysqlclient_simulator.a libmysql/Release-iphoneos/libmysqlclient_device_armv7.a  libmysql/Release-iphoneos/libmysqlclient_device_armv7s.a -create -output libmysql/Release-iphoneos/libmysqlclient.a</p>
<p>Added libmysqlclient.a to my project and I am getting the bellow linker errors using 10.7.5 xCode Version 4.5.2 (4G2008a) building for iOS 6 </p>
<p>ERROR ::::::::::::</p>
<p>Ld /Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Intermediates/isiodiTouchScanner.build/Debug-iphoneos/isiodiTouchScanner.build/Objects-normal/armv7/isiodiTouchScanner normal armv7<br />
    cd /Users/shawn/Projects/isiodiTouchScanner<br />
    setenv IPHONEOS_DEPLOYMENT_TARGET 6.0<br />
    setenv PATH &#8220;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin&#8221;<br />
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -L/Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Products/Debug-iphoneos -L/Users/shawn/Projects/isiodiTouchScanner -L/Users/shawn/Projects/isiodiTouchScanner/LineaSDK &#8220;-L/Users/shawn/Projects/isiodiTouchScanner/../DTDevices-iOS_2011-11-07_v1.29 RC/Library&#8221; -F/Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Products/Debug-iphoneos -filelist /Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Intermediates/isiodiTouchScanner.build/Debug-iphoneos/isiodiTouchScanner.build/Objects-normal/armv7/isiodiTouchScanner.LinkFileList -dead_strip -fobjc-link-runtime -miphoneos-version-min=6.0 -framework Foundation -framework UIKit -framework CoreGraphics -framework ExternalAccessory -ldtdev -lmysqlclient -o /Users/shawn/Library/Developer/Xcode/DerivedData/isiodiTouchScanner-acubwxhdincilfghghclcfqzzrsc/Build/Intermediates/isiodiTouchScanner.build/Debug-iphoneos/isiodiTouchScanner.build/Objects-normal/armv7/isiodiTouchScanner</p>
<p>Undefined symbols for architecture armv7:<br />
  &#8220;vtable for __cxxabiv1::__vmi_class_type_info&#8221;, referenced from:<br />
      typeinfo for TaoCrypt::DES in libmysqlclient.a(des.o)<br />
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.<br />
  &#8220;std::terminate()&#8221;, referenced from:<br />
      yaSSL::read_file(yaSSL::SSL_CTX*, char const*, int, yaSSL::CertType) in libmysqlclient.a(ssl.o)<br />
      _yaEVP_BytesToKey in libmysqlclient.a(ssl.o)<br />
      _yaTLSv1_client_method in libmysqlclient.a(ssl.o)<br />
      _yaSSL_CTX_new in libmysqlclient.a(ssl.o)<br />
      _yaSSL_new in libmysqlclient.a(ssl.o)<br />
      _yaBN_bin2bn in libmysqlclient.a(ssl.o)<br />
      yaSSL::SSL::~SSL() in libmysqlclient.a(ssl.o)<br />
      &#8230;<br />
  &#8220;___gxx_personality_sj0&#8243;, referenced from:<br />
      yaSSL::read_file(yaSSL::SSL_CTX*, char const*, int, yaSSL::CertType) in libmysqlclient.a(ssl.o)<br />
      _yaEVP_BytesToKey in libmysqlclient.a(ssl.o)<br />
      _yaTLSv1_client_method in libmysqlclient.a(ssl.o)<br />
      _yaSSL_CTX_new in libmysqlclient.a(ssl.o)<br />
      _yaSSL_new in libmysqlclient.a(ssl.o)<br />
      _yaBN_bin2bn in libmysqlclient.a(ssl.o)<br />
      yaSSL::SSL::~SSL() in libmysqlclient.a(ssl.o)<br />
      &#8230;<br />
  &#8220;vtable for __cxxabiv1::__si_class_type_info&#8221;, referenced from:<br />
      typeinfo for TaoCrypt::HASH in libmysqlclient.a(ssl.o)<br />
      typeinfo for yaSSL::Alert in libmysqlclient.a(yassl_imp.o)<br />
      typeinfo for yaSSL::HandShakeHeader in libmysqlclient.a(yassl_imp.o)<br />
      typeinfo for yaSSL::Finished in libmysqlclient.a(yassl_imp.o)<br />
      typeinfo for yaSSL::ClientKeyBase in libmysqlclient.a(yassl_imp.o)<br />
      typeinfo for yaSSL::EncryptedPreMasterSecret in libmysqlclient.a(yassl_imp.o)<br />
      typeinfo for yaSSL::ClientDiffieHellmanPublic in libmysqlclient.a(yassl_imp.o)<br />
      &#8230;<br />
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.<br />
  &#8220;vtable for __cxxabiv1::__class_type_info&#8221;, referenced from:<br />
      typeinfo for yaSSL::virtual_base in libmysqlclient.a(yassl_imp.o)<br />
      typeinfo for TaoCrypt::BasicDES in libmysqlclient.a(crypto_wrapper.o)<br />
      typeinfo for TaoCrypt::virtual_base in libmysqlclient.a(dsa.o)<br />
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.<br />
ld: symbol(s) not found for architecture armv7<br />
clang: error: linker command failed with exit code 1 (use -v to see invocation)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by MT</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-9748</link>
		<dc:creator>MT</dc:creator>
		<pubDate>Sun, 28 Oct 2012 16:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-9748</guid>
		<description><![CDATA[I got it to work.  This was key for me:

http://blog.iosplace.com/?p=30&amp;cpage=1#comment-6857

I haven&#039;t yet tried it on an armv7s device, but it fixed the problem I was having with the other builds.]]></description>
		<content:encoded><![CDATA[<p>I got it to work.  This was key for me:</p>
<p><a href="http://blog.iosplace.com/?p=30&#038;cpage=1#comment-6857" rel="nofollow">http://blog.iosplace.com/?p=30&#038;cpage=1#comment-6857</a></p>
<p>I haven&#8217;t yet tried it on an armv7s device, but it fixed the problem I was having with the other builds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by Giulio</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-9739</link>
		<dc:creator>Giulio</dc:creator>
		<pubDate>Sun, 28 Oct 2012 07:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-9739</guid>
		<description><![CDATA[hi Mt ,
now i&#039;ve the libmysql.a work with ios6 for the simulator  
and device
but wvery time i use it the application crash.
i can invoke mysql,and make query but when the queries end app.crash!!!
i&#039;m going crazy..but i dont believe that nobody have a libmysql.a that work with ios6 .]]></description>
		<content:encoded><![CDATA[<p>hi Mt ,<br />
now i&#8217;ve the libmysql.a work with ios6 for the simulator<br />
and device<br />
but wvery time i use it the application crash.<br />
i can invoke mysql,and make query but when the queries end app.crash!!!<br />
i&#8217;m going crazy..but i dont believe that nobody have a libmysql.a that work with ios6 .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by MT</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-9737</link>
		<dc:creator>MT</dc:creator>
		<pubDate>Sun, 28 Oct 2012 04:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-9737</guid>
		<description><![CDATA[Nope, back at it tonight.  I&#039;ll let you know if I make progress.  If you do, post here.]]></description>
		<content:encoded><![CDATA[<p>Nope, back at it tonight.  I&#8217;ll let you know if I make progress.  If you do, post here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build MySql client library for iPhone/iPad by Giulio</title>
		<link>http://blog.iosplace.com/?p=20&#038;cpage=1#comment-9730</link>
		<dc:creator>Giulio</dc:creator>
		<pubDate>Sat, 27 Oct 2012 22:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iosplace.com/?p=20#comment-9730</guid>
		<description><![CDATA[Hi Mt,
i have the same problem .
have you resolved??]]></description>
		<content:encoded><![CDATA[<p>Hi Mt,<br />
i have the same problem .<br />
have you resolved??</p>
]]></content:encoded>
	</item>
</channel>
</rss>
