<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Moazzam's Ramblings</title>
	<atom:link href="http://moazzam-khan.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://moazzam-khan.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 01 Mar 2012 17:39:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Copying tables in MySQL</title>
		<link>http://moazzam-khan.com/blog/?p=703</link>
		<comments>http://moazzam-khan.com/blog/?p=703#comments</comments>
		<pubDate>Thu, 01 Mar 2012 16:40:26 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=703</guid>
		<description><![CDATA[There are multiple ways this can be done. I will mention two here. Method 1 In MySQL, run these statements: /*This will create table2 with the schema of table1*/ CREATE TABLE `table2` LIKE `table1` &#160; /*This will copy the data from table1 to table2*/ INSERT INTO `table2` SELECT * FROM `table1` Method 2 On the [...]]]></description>
			<content:encoded><![CDATA[<p>There are multiple ways this can be done. I will mention two here.</p>
<h2>Method 1</h2>
<p>In MySQL, run these statements:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/*This will create table2 with the schema of table1*/</span>
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #ff0000;">`table2`</span> <span style="color: #993333; font-weight: bold;">LIKE</span> <span style="color: #ff0000;">`table1`</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*This will copy the data from table1 to table2*/</span>
<span style="color: #993333; font-weight: bold;">INSERT</span> <span style="color: #993333; font-weight: bold;">INTO</span> <span style="color: #ff0000;">`table2`</span> <span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #ff0000;">`table1`</span></pre></div></div>

<h2>Method 2</h2>
<p>On the command line, run these commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Create a dump from MySQL.</span>
<span style="color: #666666; font-style: italic;"># The -d flag will only copy the structure/schema of the tables. If you want</span>
<span style="color: #666666; font-style: italic;"># to copy the data along with the schema then dont use -d flag</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># In here, two MySQL commands are piped so the output from mysqldump is sent </span>
<span style="color: #666666; font-style: italic;"># to mysql command</span>
mysqldump <span style="color: #660033;">-d</span> <span style="color: #660033;">-u</span> username <span style="color: #660033;">-pPassword</span>  db_name <span style="color: #000000; font-weight: bold;">|</span> mysql <span style="color: #660033;">-u</span> username <span style="color: #660033;">-pPassword</span> db_new_name</pre></div></div>

<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=703" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=703</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get just the fields names of a table in MySQL</title>
		<link>http://moazzam-khan.com/blog/?p=698</link>
		<comments>http://moazzam-khan.com/blog/?p=698#comments</comments>
		<pubDate>Thu, 01 Mar 2012 16:28:32 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=698</guid>
		<description><![CDATA[If you do: DESCRIBE `table_name` Mysql will give you table information which will contain field names, their types, etc. What if you want just the field names and nothing else? You can run this query and do just that: SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'tablename' AND table_schema = 'dbname'; Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>If you do:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">DESCRIBE</span> <span style="color: #ff0000;">`table_name`</span></pre></div></div>

<p>Mysql will give you table information which will contain field names, their types, etc. What if you want just the field names and nothing else? You can run this query and do just that:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> column_name
<span style="color: #993333; font-weight: bold;">FROM</span> INFORMATION_SCHEMA<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">COLUMNS</span>
<span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #993333; font-weight: bold;">TABLE_NAME</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'tablename'</span>
<span style="color: #993333; font-weight: bold;">AND</span>   table_schema <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'dbname'</span>;</pre></div></div>

<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=698" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=698</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Assist in Zend Studio (eclipse based)</title>
		<link>http://moazzam-khan.com/blog/?p=693</link>
		<comments>http://moazzam-khan.com/blog/?p=693#comments</comments>
		<pubDate>Tue, 28 Feb 2012 14:40:10 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code assist]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[intellisense]]></category>
		<category><![CDATA[zend studio]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=693</guid>
		<description><![CDATA[Have you noticed there is a delay autocomplete suggestions when you type in a variable name or a function name? My typing speed is decent and I found the code assist delay to be too much. By the time Zend Studio was ready to show me the suggestions, I had already typed the variable name. [...]]]></description>
			<content:encoded><![CDATA[<p>Have you noticed there is a delay autocomplete suggestions when you type in a variable name or a function name? My typing speed is decent and I found the code assist delay to be too much. By the time Zend Studio was ready to show me the suggestions, I had already typed the variable name. </p>
<p>By default, Zend Studio has a 200 millisecond delay in showing code assist. You can shorten it if you feel the delay is too long. I set it to 100 milliseconds.</p>
<p>Go to Preferences -> Java -> Editor -> Content Assist -> Auto-Activation and decrease Auto activation delay from 200 to 100 (or whatever suits you better). </p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=693" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=693</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing a CSV file into a table in MySQL</title>
		<link>http://moazzam-khan.com/blog/?p=682</link>
		<comments>http://moazzam-khan.com/blog/?p=682#comments</comments>
		<pubDate>Thu, 09 Feb 2012 22:46:00 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql import csv]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=682</guid>
		<description><![CDATA[Here&#8217;s how you would import data into MySQL using a query &#160; /* If the CSV file was created in Windows, then replace '\n' with '\r\n' */ LOAD DATA LOCAL INFILE '/path/to/csv_file.csv' INTO TABLE `table_name` FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY &#34;\&#34;&#34; LINES TERMINATED BY '\n' &#40;field1, field2, field3&#41;; Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how you would import data into MySQL using a query</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">&nbsp;
<span style="color: #808080; font-style: italic;">/*
If the CSV file was created in Windows, then replace '\n' with '\r\n' 
*/</span>
<span style="color: #993333; font-weight: bold;">LOAD</span> <span style="color: #993333; font-weight: bold;">DATA</span> <span style="color: #993333; font-weight: bold;">LOCAL</span> <span style="color: #993333; font-weight: bold;">INFILE</span> <span style="color: #ff0000;">'/path/to/csv_file.csv'</span> <span style="color: #993333; font-weight: bold;">INTO</span> <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #ff0000;">`table_name`</span>
<span style="color: #993333; font-weight: bold;">FIELDS</span> <span style="color: #993333; font-weight: bold;">TERMINATED</span> <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #ff0000;">','</span> 
<span style="color: #993333; font-weight: bold;">OPTIONALLY</span> <span style="color: #993333; font-weight: bold;">ENCLOSED</span> <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span> 
<span style="color: #993333; font-weight: bold;">LINES</span> <span style="color: #993333; font-weight: bold;">TERMINATED</span> <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\n</span>'</span> 
<span style="color: #66cc66;">&#40;</span>field1<span style="color: #66cc66;">,</span> field2<span style="color: #66cc66;">,</span> field3<span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=682" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=682</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool things you can do with MySQL</title>
		<link>http://moazzam-khan.com/blog/?p=677</link>
		<comments>http://moazzam-khan.com/blog/?p=677#comments</comments>
		<pubDate>Thu, 09 Feb 2012 20:36:06 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=677</guid>
		<description><![CDATA[Run a query from command line # Use the -e flag shell&#62;mysql -e &#34;select * from table&#34; Tell MySQL to output the results of a query in HTML or XML # On command line you would write the following to # tell MySQL to output the results in HTML format shell&#62;mysql -e &#34;select * from [...]]]></description>
			<content:encoded><![CDATA[<p>Run a query from command line</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Use the -e flag</span>
shell<span style="color: #000000; font-weight: bold;">&gt;</span>mysql <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;select * from table&quot;</span></pre></div></div>

<p>Tell MySQL to output the results of a query in HTML or XML</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># On command line you would write the following to </span>
<span style="color: #666666; font-style: italic;"># tell MySQL to output the results in HTML format</span>
shell<span style="color: #000000; font-weight: bold;">&gt;</span>mysql <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;select * from table&quot;</span> <span style="color: #660033;">--html</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># This is for XML</span>
shell<span style="color: #000000; font-weight: bold;">&gt;</span> mysql <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;select * from table&quot;</span> <span style="color: #660033;">--xml</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># This is for batched results</span>
shell<span style="color: #000000; font-weight: bold;">&gt;</span> mysql <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;select * from table&quot;</span> <span style="color: #660033;">--batch</span></pre></div></div>

<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=677" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=677</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for a Speedy Zend Studio</title>
		<link>http://moazzam-khan.com/blog/?p=674</link>
		<comments>http://moazzam-khan.com/blog/?p=674#comments</comments>
		<pubDate>Sat, 04 Feb 2012 18:10:31 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=674</guid>
		<description><![CDATA[I found a good article on how to speed up your Zend Studio (eclipse based) on Zend&#8217;s website. Hopefully everyone else will find it as helpful as I found it to be: http://kb.zend.com/index.php?View=entry&#038;EntryID=480 Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>I found a good article on how to speed up your Zend Studio (eclipse based) on Zend&#8217;s website. Hopefully everyone else will find it as helpful as I found it to be:</p>
<p><a href="http://kb.zend.com/index.php?View=entry&#038;EntryID=480" title="10 Tips for Speedy Zend Studio" target="_blank">http://kb.zend.com/index.php?View=entry&#038;EntryID=480</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=674" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=674</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server and Zend Studio9</title>
		<link>http://moazzam-khan.com/blog/?p=666</link>
		<comments>http://moazzam-khan.com/blog/?p=666#comments</comments>
		<pubDate>Fri, 03 Feb 2012 05:44:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[mysql zend studio]]></category>
		<category><![CDATA[zend mysql]]></category>
		<category><![CDATA[zend mysql issue]]></category>
		<category><![CDATA[zend server]]></category>
		<category><![CDATA[zend studio]]></category>
		<category><![CDATA[zend studio 9]]></category>
		<category><![CDATA[zend studio9]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=666</guid>
		<description><![CDATA[If you have Zend Server installed and you have an instance of MySQL that didn&#8217;t come with Zend Server, then Zend Studio will try to connect to the one that came with Zend Server. I discovered this the hard way when my PHPUnit tests kept failing in Zend Studio but ran perfectly from the command [...]]]></description>
			<content:encoded><![CDATA[<p>If you have Zend Server installed and you have an instance of MySQL that didn&#8217;t come with Zend Server, then Zend Studio will try to connect to the one that came with Zend Server. I discovered this the hard way when my PHPUnit tests kept failing in Zend Studio but ran perfectly from the command line (I had PHPUnit installed from PEAR and the one that came with Zend Studio). </p>
<p>So I decided to make Zend Server connect to my default MySQL instance instead of uninstalling Zend Server (because I want to play with it). For those with the same problem, you can do this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Rename Zend Studio's socket file to something else</span>
<span style="color: #666666; font-style: italic;"># If you didn't choose the default, installation path then </span>
<span style="color: #666666; font-style: italic;"># use the path to that location instead</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>zend<span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>mysql.sock <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>zend<span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>mysql_old.sock
&nbsp;
<span style="color: #666666; font-style: italic;"># My MySQL installation's socket file is located in /tmp</span>
<span style="color: #666666; font-style: italic;"># If your's is different, then you will have to modify the source path</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>mysql.sock <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>zend<span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">/</span>tmp</pre></div></div>

<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=666" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=666</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual hosts look up taking too long in OSX Lion</title>
		<link>http://moazzam-khan.com/blog/?p=645</link>
		<comments>http://moazzam-khan.com/blog/?p=645#comments</comments>
		<pubDate>Wed, 23 Nov 2011 15:57:42 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=645</guid>
		<description><![CDATA[If your mac (OSX Lion) is taking too long to get pages with your local web server and you have virtual hosts setup, then it&#8217;s probably because it is checking the DNS servers before it checks for it in your /etc/hosts. The way to resolve this is to have a ::1 entry in your hosts [...]]]></description>
			<content:encoded><![CDATA[<p>If your mac (OSX Lion) is taking too long to get pages with your local web server and you have virtual hosts setup, then it&#8217;s probably because it is checking the DNS servers before it checks for it in your /etc/hosts.</p>
<p>The way to resolve this is to have a ::1 entry in your hosts file for every 127.0.0.1 entry. Here&#8217;s an example:</p>

<div class="wp_syntax"><div class="code"><pre class="code" style="font-family:monospace;">127.0.0.1         example.com
::1               example.com</pre></div></div>

<p>You will notice I have 2 entries for example.com. One is IPv4 and the other is IPv6. My requests to the local web server take almost no time at after I did that. I think Lion tries to use IPv6 before it uses IPv4 and since it doesn&#8217;t find any entries for that in your hosts file, it goes to the internet searching for that domain.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=645" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=645</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some information  on booking flights with Sabre</title>
		<link>http://moazzam-khan.com/blog/?p=637</link>
		<comments>http://moazzam-khan.com/blog/?p=637#comments</comments>
		<pubDate>Wed, 19 Oct 2011 19:04:01 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[book flights]]></category>
		<category><![CDATA[flights]]></category>
		<category><![CDATA[php sabre]]></category>
		<category><![CDATA[sabre]]></category>
		<category><![CDATA[sabre flight]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=637</guid>
		<description><![CDATA[A lot of people contacted me asking about how Sabre works, etc. So, I decided to post this here. The way it works is: You sign up with Sabre for a web services account and you they will give you an IPCC, username and passwrord that you use for communicating with their web services.You will [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of people contacted me asking about how Sabre works, etc. So, I decided to post this here. The way it works is:</p>
<ol>
<li>You sign up with Sabre for a web services account and you they will give you an IPCC, username and passwrord that you use for communicating with their web services.You will send over the username and password for only authentication request. However, you will use your IPCC in all the requests you make.</li>
<li>Your initial request should be a SessionCreate request. You will provide your username and password in it. Upon success, you will receive a binary token. You will use this token in all the subsequent requests you make.</li>
<li>Your subsequent requests will depend on what you want to do and the services you have access to. Sabre has multiple flight services that you can communicate with. You will need to contact them, explain your needs and ask what service will be best for you. LowFareSearch and BargainFinder are probably the ones that are most used.</li>
<li>After you are done selecting the flight, etc. You will send a request to AirBook (if I remember the name correctly) to book a flight. And, there&#8217;s other services you might want to use to pass passenger information, etc.</li>
<li>After you are done, you end the session with a call to SessionCloseRQ.</li>
</ol>
<p>When you get an account with Sabre, you will be able to look at request and response formats for  the for the web services over here: <a title="Sabre web services developer portal" href="https://drc.sabre.com/oer/">https://drc.sabre.com/oer/</a></p>
<p><br style="direction: ltr;" /><span style="direction: ltr;"> </span></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=637" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=637</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nexus S and TMobile data connection</title>
		<link>http://moazzam-khan.com/blog/?p=633</link>
		<comments>http://moazzam-khan.com/blog/?p=633#comments</comments>
		<pubDate>Mon, 17 Oct 2011 06:19:32 +0000</pubDate>
		<dc:creator>Moazzam</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[nexus s data]]></category>
		<category><![CDATA[tmobile cant connect to data]]></category>
		<category><![CDATA[tmobile data]]></category>
		<category><![CDATA[tmobile data network]]></category>

		<guid isPermaLink="false">http://moazzam-khan.com/blog/?p=633</guid>
		<description><![CDATA[Here&#8217;s an interesting tidbit. If you go out of the country and come back. Nexus S won&#8217;t automatically connect to TMobile&#8217;s 3G or edge network. You have to switch it off and start it again for it to connect to the data network. It will, however, let you make phone calls, and send and receive [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an interesting tidbit. If you go out of the country and come back. Nexus S won&#8217;t automatically connect to TMobile&#8217;s 3G or edge network. You have to switch it off and start it again for it to connect to the data network. It will, however, let you make phone calls, and send and receive SMS without restarting it.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://moazzam-khan.com/blog/?p=633" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://moazzam-khan.com/blog/?feed=rss2&#038;p=633</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

