<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>Xyiry PHP Blog &#124; Where Open Source Lives</title>
	<link>http://php.xyiry.com</link>
	<description>My open source playground</description>
	<pubDate>Sun, 20 Apr 2008 08:52:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Configure Cake PHP on Zend Core For Oracle</title>
		<link>http://php.xyiry.com/configure-cake-php-on-zend-core-for-oracle/</link>
		<comments>http://php.xyiry.com/configure-cake-php-on-zend-core-for-oracle/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 08:51:27 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[CakePHP]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/configure-cake-php-on-zend-core-for-oracle/</guid>
		<description><![CDATA[If you guys are running XAMPP as your apache then its a piece of cake for you to configure cakePHP for the first time.
just open your httpd.conf and look for the following line and uncomment it
 LoadModule rewrite_module modules/mod_rewrite.so
But if you guys are running Zend Core as your apache then you will need a little [...]]]></description>
			<content:encoded><![CDATA[<p>If you guys are running XAMPP as your apache then its a piece of cake for you to configure cakePHP for the first time.</p>
<p>just open your httpd.conf and look for the following line and uncomment it<br />
<strong> LoadModule rewrite_module modules/mod_rewrite.so</strong></p>
<p>But if you guys are running Zend Core as your apache then you will need a little bit more effort to configure your cakePHP for the first time.</p>
<p>Look for these lines in your httpd.conf</p>
<p>1.  LoadModule rewrite_module modules/mod_rewrite.so<br />
<strong>(Uncomment It)</strong><br />
2. &lt;Directory /&gt;<br />
Options FollowSymLinks<br />
AllowOverride None<br />
&lt;/Directory&gt;<br />
<strong>(Change to this)</strong><br />
&lt;Directory /&gt;<br />
Options FollowSymLinks<br />
AllowOverride None<br />
Order deny,allow<br />
Deny from all<br />
&lt;/Directory&gt;</p>
<p>3.  AllowOverride None <strong>(Change to this) </strong>AllowOverride All</p>
<p>4. Restart you apache service and refresh your browser.</p>
<p>That&#8217;s it, Good Luck</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/configure-cake-php-on-zend-core-for-oracle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to truncate DB2 Table</title>
		<link>http://php.xyiry.com/how-to-truncate-db2-table/</link>
		<comments>http://php.xyiry.com/how-to-truncate-db2-table/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 03:48:27 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[IBM DB2]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/how-to-truncate-db2-table/</guid>
		<description><![CDATA[DB2 Truncate is not as straight forward as Oracle Truncate. If in Oracle you can use &#8220;truncate table &#8220;&#8230;  You may use the below command to truncate table in db2.
alter table schema.table_name activate not logged initially with empty table
]]></description>
			<content:encoded><![CDATA[<p>DB2 Truncate is not as straight forward as Oracle Truncate. If in Oracle you can use &#8220;truncate table &#8220;&#8230;  You may use the below command to truncate table in db2.</p>
<p><span name="intelliTXT" id="intelliTXT"><code>alter table schema.table_name activate not logged initially with empty table</code></span></p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/how-to-truncate-db2-table/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to stop db2 instance , if &#8220;db2stop&#8221; fails &#8230;</title>
		<link>http://php.xyiry.com/how-to-stop-db2-instance-if-db2stop-force-fails/</link>
		<comments>http://php.xyiry.com/how-to-stop-db2-instance-if-db2stop-force-fails/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 09:35:37 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[IBM DB2]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/how-to-stop-db2-instance-if-db2stop-force-fails/</guid>
		<description><![CDATA[If your DB2 fails to stop using db2 instance, you may use &#8220;db2stop force&#8221;.
To Start Db2 : db2start
To Stop Db2  : db2stop
To Force Stop Db2  : db2stop force
 

]]></description>
			<content:encoded><![CDATA[<p>If your DB2 fails to stop using db2 instance, you may use &#8220;db2stop force&#8221;.</p>
<p>To Start Db2 : db2start<br />
To Stop Db2  : db2stop</p>
<p>To Force Stop Db2  : db2stop force<br />
<span style="font-size: 10pt; font-family: 'Helvetica','sans-serif'; color: #336666"> <!--[if !supportLineBreakNewLine]--><br />
<!--[endif]--></span></p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/how-to-stop-db2-instance-if-db2stop-force-fails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP find value in array</title>
		<link>http://php.xyiry.com/php-find-value-in-array/</link>
		<comments>http://php.xyiry.com/php-find-value-in-array/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 04:02:22 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/php-find-value-in-array/</guid>
		<description><![CDATA[# Note : This function is for you to find any value needed in an array.
Example : If you want to find &#8220;mysql&#8221; in an array you may use the function &#8220;in_array&#8221; below.
&#60;?
$xyiry = array(&#8221;mysql&#8221;, &#8220;oracle&#8221;, &#8220;informix&#8221;, &#8220;db2&#8243;);
if (in_array(&#8221;mysql&#8221;, $xyiry)) {
echo &#8220;This Database Is Using mySQL&#8221;;
}
?&#62;
]]></description>
			<content:encoded><![CDATA[<p># Note : This function is for you to find any value needed in an array.</p>
<p>Example : If you want to find &#8220;mysql&#8221; in an array you may use the function &#8220;in_array&#8221; below.</p>
<p>&lt;?<br />
$xyiry = array(&#8221;mysql&#8221;, &#8220;oracle&#8221;, &#8220;informix&#8221;, &#8220;db2&#8243;);<br />
if (in_array(&#8221;mysql&#8221;, $xyiry)) {<br />
echo &#8220;This Database Is Using mySQL&#8221;;<br />
}<br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/php-find-value-in-array/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL General Statements</title>
		<link>http://php.xyiry.com/mysql-general-statements/</link>
		<comments>http://php.xyiry.com/mysql-general-statements/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 07:44:42 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/mysql-general-statements/</guid>
		<description><![CDATA[Table of Contents
* mysql_affected_rows — Get number of affected rows in previous MySQL operation
* mysql_change_user — Change logged in user of the active connection
* mysql_client_encoding — Returns the name of the character set
* mysql_close — Close MySQL connection
* mysql_connect — Open a connection to a MySQL Server
* mysql_create_db — Create a MySQL database
* mysql_data_seek — [...]]]></description>
			<content:encoded><![CDATA[<p>Table of Contents</p>
<p>* mysql_affected_rows — Get number of affected rows in previous MySQL operation<br />
* mysql_change_user — Change logged in user of the active connection<br />
* mysql_client_encoding — Returns the name of the character set<br />
* mysql_close — Close MySQL connection<br />
* mysql_connect — Open a connection to a MySQL Server<br />
* mysql_create_db — Create a MySQL database<br />
* mysql_data_seek — Move internal result pointer<br />
* mysql_db_name — Get result data<br />
* mysql_db_query — Send a MySQL query<br />
* mysql_drop_db — Drop (delete) a MySQL database<br />
* mysql_errno — Returns the numerical value of the error message from previous MySQL operation<br />
* mysql_error — Returns the text of the error message from previous MySQL operation<br />
* mysql_escape_string — Escapes a string for use in a mysql_query<br />
* mysql_fetch_array — Fetch a result row as an associative array, a numeric array, or both<br />
* mysql_fetch_assoc — Fetch a result row as an associative array<br />
* mysql_fetch_field — Get column information from a result and return as an object<br />
* mysql_fetch_lengths — Get the length of each output in a result<br />
* mysql_fetch_object — Fetch a result row as an object<br />
* mysql_fetch_row — Get a result row as an enumerated array<br />
* mysql_field_flags — Get the flags associated with the specified field in a result<br />
* mysql_field_len — Returns the length of the specified field<br />
* mysql_field_name — Get the name of the specified field in a result<br />
* mysql_field_seek — Set result pointer to a specified field offset<br />
* mysql_field_table — Get name of the table the specified field is in<br />
* mysql_field_type — Get the type of the specified field in a result<br />
* mysql_free_result — Free result memory<br />
* mysql_get_client_info — Get MySQL client info<br />
* mysql_get_host_info — Get MySQL host info<br />
* mysql_get_proto_info — Get MySQL protocol info<br />
* mysql_get_server_info — Get MySQL server info<br />
* mysql_info — Get information about the most recent query<br />
* mysql_insert_id — Get the ID generated from the previous INSERT operation<br />
* mysql_list_dbs — List databases available on a MySQL server<br />
* mysql_list_fields — List MySQL table fields<br />
* mysql_list_processes — List MySQL processes<br />
* mysql_list_tables — List tables in a MySQL database<br />
* mysql_num_fields — Get number of fields in result<br />
* mysql_num_rows — Get number of rows in result<br />
* mysql_pconnect — Open a persistent connection to a MySQL server<br />
* mysql_ping — Ping a server connection or reconnect if there is no connection<br />
* mysql_query — Send a MySQL query<br />
* mysql_real_escape_string — Escapes special characters in a string for use in a SQL statement<br />
* mysql_result — Get result data<br />
* mysql_select_db — Select a MySQL database<br />
* mysql_set_charset — Sets the client character set<br />
* mysql_stat — Get current system status<br />
* mysql_tablename — Get table name of field<br />
* mysql_thread_id — Return the current thread ID<br />
* mysql_unbuffered_query — Send an SQL query to MySQL, without fetching and buffering the result rows</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/mysql-general-statements/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DB2 General Statements</title>
		<link>http://php.xyiry.com/db2-general-statements/</link>
		<comments>http://php.xyiry.com/db2-general-statements/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 07:43:46 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[IBM DB2]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/db2-general-statements/</guid>
		<description><![CDATA[Table of Contents          
* db2_autocommit — Returns or sets the AUTOCOMMIT state for a database connection
* db2_bind_param — Binds a PHP variable to an SQL statement parameter
* db2_client_info — Returns an object with properties that describe the DB2 database client
* db2_close — Closes a database connection
* db2_column_privileges — Returns a result set listing the columns and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Table of Contents          </strong></p>
<p>* db2_autocommit — Returns or sets the AUTOCOMMIT state for a database connection<br />
* db2_bind_param — Binds a PHP variable to an SQL statement parameter<br />
* db2_client_info — Returns an object with properties that describe the DB2 database client<br />
* db2_close — Closes a database connection<br />
* db2_column_privileges — Returns a result set listing the columns and associated privileges for a table<br />
* db2_columns — Returns a result set listing the columns and associated metadata for a table<br />
* db2_commit — Commits a transaction<br />
* db2_conn_error — Returns a string containing the SQLSTATE returned by the last connection attempt<br />
* db2_conn_errormsg — Returns the last connection error message and SQLCODE value<br />
* db2_connect — Returns a connection to a database<br />
* db2_cursor_type — Returns the cursor type used by a statement resource<br />
* db2_escape_string — Used to escape certain characters.<br />
* db2_exec — Executes an SQL statement directly<br />
* db2_execute — Executes a prepared SQL statement<br />
* db2_fetch_array — Returns an array, indexed by column position, representing a row in a result set<br />
* db2_fetch_assoc — Returns an array, indexed by column name, representing a row in a result set<br />
* db2_fetch_both — Returns an array, indexed by both column name and position, representing a row in a result set<br />
* db2_fetch_object — Returns an object with properties representing columns in the fetched row<br />
* db2_fetch_row — Sets the result set pointer to the next row or requested row<br />
* db2_field_display_size — Returns the maximum number of bytes required to display a column<br />
* db2_field_name — Returns the name of the column in the result set<br />
* db2_field_num — Returns the position of the named column in a result set<br />
* db2_field_precision — Returns the precision of the indicated column in a result set<br />
* db2_field_scale — Returns the scale of the indicated column in a result set<br />
* db2_field_type — Returns the data type of the indicated column in a result set<br />
* db2_field_width — Returns the width of the current value of the indicated column in a result set<br />
* db2_foreign_keys — Returns a result set listing the foreign keys for a table<br />
* db2_free_result — Frees resources associated with a result set<br />
* db2_free_stmt — Frees resources associated with the indicated statement resource<br />
* db2_get_option — Retrieves an option value for a statement resource or a connection resource<br />
* db2_lob_read — Gets a user defined size of LOB files with each invocation<br />
* db2_next_result — Requests the next result set from a stored procedure<br />
* db2_num_fields — Returns the number of fields contained in a result set<br />
* db2_num_rows — Returns the number of rows affected by an SQL statement<br />
* db2_pconnect — Returns a persistent connection to a database<br />
* db2_prepare — Prepares an SQL statement to be executed<br />
* db2_primary_keys — Returns a result set listing primary keys for a table<br />
* db2_procedure_columns — Returns a result set listing stored procedure parameters<br />
* db2_procedures — Returns a result set listing the stored procedures registered in a database<br />
* db2_result — Returns a single column from a row in the result set<br />
* db2_rollback — Rolls back a transaction<br />
* db2_server_info — Returns an object with properties that describe the DB2 database server<br />
* db2_set_option — Set options for connection or statement resources<br />
* db2_special_columns — Returns a result set listing the unique row identifier columns for a table<br />
* db2_statistics — Returns a result set listing the index and statistics for a table<br />
* db2_stmt_error — Returns a string containing the SQLSTATE returned by an SQL statement<br />
* db2_stmt_errormsg — Returns a string containing the last SQL statement error message<br />
* db2_table_privileges — Returns a result set listing the tables and associated privileges in a database<br />
* db2_tables — Returns a result set listing the tables and associated metadata in a database</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/db2-general-statements/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Change date format DB2 from YYYYMMDD to MM/DD/YYYY</title>
		<link>http://php.xyiry.com/change-date-format-db2-from-yyyymmdd-to-mmddyyyy/</link>
		<comments>http://php.xyiry.com/change-date-format-db2-from-yyyymmdd-to-mmddyyyy/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 07:36:43 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[IBM DB2]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/change-date-format-db2-from-yyyymmdd-to-mmddyyyy/</guid>
		<description><![CDATA[==============================================
Module : To get date format for DB2 Date
Programmer : Mohd Izzairi Yamin
Date : 31/03/2008 15:36
==============================================
# DB2 Date Format :
2008-03-24 16:38:58.623431
Lets say, the Field that stores the date is in db2 time stamp format and you want to format it , you can use this simple way to solve that :
Example 1
select Year (DATEFIELD) from [...]]]></description>
			<content:encoded><![CDATA[<p>==============================================<br />
Module : To get date format for DB2 Date<br />
Programmer : Mohd Izzairi Yamin<br />
Date : 31/03/2008 15:36<br />
==============================================</p>
<p># DB2 Date Format :<br />
2008-03-24 16:38:58.623431</p>
<p>Lets say, the Field that stores the date is in db2 time stamp format and you want to format it , you can use this simple way to solve that :</p>
<p><u>Example 1</u></p>
<p>select Year (DATEFIELD) from TABLENAME<br />
select Month (DATEFIELD) from TABLENAME<br />
select day (DATEFIELD) from TABLENAME</p>
<p><u>Example 2</u></p>
<p>select Year(FDTARIKH),MONTH(FDTARIKH),day(FDTARIKH) from TBLOGLOGIN</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/change-date-format-db2-from-yyyymmdd-to-mmddyyyy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create your own desktop applications with Adobe Air</title>
		<link>http://php.xyiry.com/create-your-own-desktop-applications-with-adobe-air/</link>
		<comments>http://php.xyiry.com/create-your-own-desktop-applications-with-adobe-air/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 04:06:29 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[New Technology]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/create-your-own-desktop-applications-with-adobe-air/</guid>
		<description><![CDATA[ 
Have you guys ever thought of creating your own desktop applications using HTML and AJAX? Well now you can by using ADOBE AIR. You can easily develop desktop applications such as Ebay desktop application or even nickelodeon dekstop application.
It would be easier if you are familiar with HTML and AJAX. The best part of Adobe [...]]]></description>
			<content:encoded><![CDATA[<p> <img src="http://blog.xyiry.com/wp-content/uploads/2007/10/adobe-air.jpg" /></p>
<p>Have you guys ever thought of creating your own desktop applications using HTML and AJAX? Well now you can by using <a href="http://labs.adobe.com/technologies/air/">ADOBE AIR.<img src="http://i.ixnp.com/images/v2.27.1/t.gif" id="snap_com_shot_link_icon" class="snap_preview_icon" style="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; font-style: normal; font-weight: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; float: none; position: static; left: auto; top: auto; line-height: normal; background-image: url('http://i.ixnp.com/images/v2.27.1/theme/silver/palette.gif'); background-color: transparent; width: 14px; height: 12px; background-position: -889px 0pt; background-repeat: no-repeat; text-decoration: none; visibility: visible; vertical-align: top; display: inline" /></a> You can easily develop desktop applications such as Ebay desktop application or even nickelodeon dekstop application.</p>
<p>It would be easier if you are familiar with HTML and AJAX. The best part of Adobe AIR is that it can also connect and store data to a database by using Javascript and their XML library which is also suitable for you to create online synchronize system from your desktop. So why wait? try out the new <a href="http://labs.adobe.com/technologies/air/">Adobe AIR<img src="http://i.ixnp.com/images/v2.27.1/t.gif" id="snap_com_shot_link_icon" class="snap_preview_icon" style="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; font-style: normal; font-weight: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; float: none; position: static; left: auto; top: auto; line-height: normal; background-image: url('http://i.ixnp.com/images/v2.27.1/theme/silver/palette.gif'); background-color: transparent; width: 14px; height: 12px; background-position: -889px 0pt; background-repeat: no-repeat; text-decoration: none; visibility: visible; vertical-align: top; display: inline" /></a> today and start developing your own google desktop wannabe apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/create-your-own-desktop-applications-with-adobe-air/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Display message while page loading</title>
		<link>http://php.xyiry.com/display-message-while-page-loading/</link>
		<comments>http://php.xyiry.com/display-message-while-page-loading/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 04:24:44 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[Ajax &amp; Javascript]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/display-message-while-page-loading/</guid>
		<description><![CDATA[================================================================
Module : To display message while page loading
Programmer : Mohd Izzairi Yamin
Date : 9/25/2007 12:29PM
Modified : 9/25/2007 12:29PM
================================================================
&#60;?
function page_load(){
echo &#8220;&#60;SCRIPT TYPE=&#8217;text/javascript&#8217; LANGUAGE=&#8217;javascript&#8217;&#62;&#8221;;
echo &#8220;function reloadPage() {&#8221;;
echo &#8220;if (document.getElementById){&#8221;;
echo &#8220;document.getElementById(&#8217;prepage&#8217;).style.visibility=&#8217;hidden&#8217;;&#8221;;
echo &#8220;}else{&#8221;;
echo &#8220;if (document.layers){&#8221;;
echo &#8220;document.prepage.visibility = &#8216;hidden&#8217;;&#8221;;
echo &#8220;}&#8221;;
echo &#8220;else {&#8221;;
echo &#8220;document.all.prepage.style.visibility = &#8216;hidden&#8217;;&#8221;;
echo &#8220;}&#8221;;
echo &#8220;}&#8221;;
echo &#8220;}&#8221;;
echo &#8220;&#60;/SCRIPT&#62;&#8221;;
}
page_load();
?&#62;
&#60;BODY onLoad=&#8217;reloadPage();&#8217;&#62;
&#60;DIV id=&#8217;prepage&#8217; style=&#8217;position:absolute; font-family:arial; font-size:16; left:0px; top:0px; background-color:white; layer-background-color:white; height:100%; width:100%;&#8217;&#62;
&#60;TABLE [...]]]></description>
			<content:encoded><![CDATA[<p>================================================================<br />
Module : To display message while page loading<br />
Programmer : Mohd Izzairi Yamin<br />
Date : 9/25/2007 12:29PM<br />
Modified : 9/25/2007 12:29PM<br />
================================================================<br />
&lt;?<br />
function page_load(){<br />
echo &#8220;&lt;SCRIPT TYPE=&#8217;text/javascript&#8217; LANGUAGE=&#8217;javascript&#8217;&gt;&#8221;;<br />
echo &#8220;function reloadPage() {&#8221;;<br />
echo &#8220;if (document.getElementById){&#8221;;<br />
echo &#8220;document.getElementById(&#8217;prepage&#8217;).style.visibility=&#8217;hidden&#8217;;&#8221;;<br />
echo &#8220;}else{&#8221;;<br />
echo &#8220;if (document.layers){&#8221;;<br />
echo &#8220;document.prepage.visibility = &#8216;hidden&#8217;;&#8221;;<br />
echo &#8220;}&#8221;;<br />
echo &#8220;else {&#8221;;<br />
echo &#8220;document.all.prepage.style.visibility = &#8216;hidden&#8217;;&#8221;;<br />
echo &#8220;}&#8221;;<br />
echo &#8220;}&#8221;;<br />
echo &#8220;}&#8221;;<br />
echo &#8220;&lt;/SCRIPT&gt;&#8221;;<br />
}<br />
page_load();<br />
?&gt;<br />
&lt;BODY onLoad=&#8217;reloadPage();&#8217;&gt;<br />
&lt;DIV id=&#8217;prepage&#8217; style=&#8217;position:absolute; font-family:arial; font-size:16; left:0px; top:0px; background-color:white; layer-background-color:white; height:100%; width:100%;&#8217;&gt;<br />
&lt;TABLE width=100%&gt;&lt;TR&gt;&lt;TD&gt;&lt;B&gt;Please wait while loading &#8230;..&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;<br />
&lt;/DIV&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/display-message-while-page-loading/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Oracle &#8220;Alter Table&#8221; add Column</title>
		<link>http://php.xyiry.com/oracle-alter-table-add-column/</link>
		<comments>http://php.xyiry.com/oracle-alter-table-add-column/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 09:05:26 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
		
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/oracle-alter-table-add-column/</guid>
		<description><![CDATA[============================================
By Mohd Izzairi Yamin
============================================
First of all if you have a table and you want to add more fields you should use alter table.
alter table
table_name
add
(
column1_name column1_datatype column1_constraint,
column2_name column2_datatype column2_constraint,
column3_name column3_datatype column3_constraint
);
Example 1 using alter table if you want to add 1 field
alter table
xyiry_login
add
login_day  varchar2(12) NOT NULL;
Example 2 using alter table if you want to add more [...]]]></description>
			<content:encoded><![CDATA[<p>============================================<br />
By Mohd Izzairi Yamin<br />
============================================<br />
First of all if you have a table and you want to add more fields you should use alter table.</p>
<p>alter table<br />
table_name<br />
add<br />
(<br />
column1_name column1_datatype column1_constraint,<br />
column2_name column2_datatype column2_constraint,<br />
column3_name column3_datatype column3_constraint<br />
);</p>
<p>Example 1 using alter table if you want to add 1 field</p>
<p>alter table<br />
xyiry_login<br />
add<br />
login_day  varchar2(12) NOT NULL;</p>
<p>Example 2 using alter table if you want to add more than 1 field</p>
<p>ALTER TABLE<br />
xyiry_login<br />
ADD<br />
(<br />
login_day  varchar2(12) NOT NULL,<br />
count_login   number<br />
);</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/oracle-alter-table-add-column/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
