<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>Ming Man Chan&apos;s Blog</title>
      <link>http://blogs.oracle.com/MingMan/</link>
      <description></description>
      <language>en</language>
      <copyright>Copyright 2009</copyright>
      <lastBuildDate>Sun, 02 Nov 2008 18:51:04 +0800</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

      
      <item>
         <title>One thing you cannot achieve using command prompt but Windows PowerShell</title>
         <description><![CDATA[<p><P>I found it is not so special to run vbs (Visual Basic Script) in Windows PowerShell because most of the time you can do that using <A href="http://www.microsoft.com/technet/scriptcenter/topics/beginner/firststeps.mspx">cscript</A> with command prompt (cmd.exe). <br />
<P>But what I guarantee you cannot do is to change directory to a remote machine using command prompt for example,&nbsp; as can see from the picture below I have a machine with IP address 192.168.1.26 so I can change the directory to c root of this machine by <FONT face=Courier size=1>cd </FONT><A><FONT face=Courier size=1>\\192.168.1.26\c$</FONT></A>. I can perform other file operation directly in the remote machine such as make directory, copy file(s), delete directory and more. <br />
<P>In the past in order to manipulate files in between two or more machines you might need to map a network drive with a local drive letter. Windows Powershell gives me a better way to do this today. <br />
<P><A href="http://3upfaq.bay.livefilestore.com/y1pUOEd6q6Gz3vqr3Y0y6XGDeYzZXU7GT7Xb8ev167gsZXV0Y1wmFVbJsvEwbygrwqpvwwWWKKQhc4XhYSsb9pL9Q?PARTNER=WRITER"><IMG title=powershell style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=442 alt=powershell src="http://byfiles.storage.msn.com/y1pYAp5dwOFIGJpEODH67-35QQXFPnTtt6PC4cAKlonlY1jTLnj-GRylOdtBSaz8vGtqpDGDA-wjc1y_9G9SCBg6g?PARTNER=WRITER" width=588 border=0></A> <br />
<P>In order to get to know more about Windows PowerShell go to script center :<A title=http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx href="http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx">http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx</A>. <br />
<P>Please feedback if you have other tips.</P></p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/11/one_thing_you_cannot_achieve_u.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/11/one_thing_you_cannot_achieve_u.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Windows Operating System</category>
        
        
         <pubDate>Sun, 02 Nov 2008 18:51:04 +0800</pubDate>
      </item>
      
      <item>
         <title>Write a simple object to and from XML using C#</title>
         <description><![CDATA[<p><DIV><br />
<P style="MARGIN: 0in 0in 10pt"><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><FONT color=#000000 size=3>Write a simple object to and from XML using </FONT><A href="http://msdn.microsoft.com/en-us/vcsharp/default.aspx"><U><FONT color=#800080 size=3>C#</FONT></U></A></SPAN> <br />
<P style="MARGIN: 0in 0in 10pt"><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><FONT color=#000000 size=3>Write to </FONT><A href="http://msdn.microsoft.com/en-us/xml/default.aspx"><U><FONT color=#800080 size=3>XML</FONT></U></A><FONT size=3><FONT color=#000000> file is always easier than read from XML file. Not too sure what I mean, it is alright because I have a sample for you to understand and comment.</FONT></FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 10pt"><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><FONT size=3><FONT color=#000000>In this sample I have a class BankAccount. I will serialize the BankAccount object to XML with 2 properties and use XMLReader to get back what have been written to the XML file (in the sample the file name for XML file is XMLBank.xml).</FONT></FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 10pt"><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><FONT size=3><FONT color=#000000>For this sample I glue the WriteXML and ReadXML method with the BankAccount. The entire class as below:<SPAN>&nbsp; </SPAN></FONT></FONT></SPAN><br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: 'Courier New'">public</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000> </FONT><SPAN style="COLOR: blue">class</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: #2b91af">BankAccount</SPAN></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp; </SPAN>{</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">public</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: #2b91af">String</SPAN><FONT color=#000000> AccID { </FONT><SPAN style="COLOR: blue">get</SPAN><FONT color=#000000>; </FONT><SPAN style="COLOR: blue">set</SPAN><FONT color=#000000>; }</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">public</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: blue">double</SPAN><FONT color=#000000> Amount { </FONT><SPAN style="COLOR: blue">get</SPAN><FONT color=#000000>; </FONT><SPAN style="COLOR: blue">set</SPAN><FONT color=#000000>; }</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">public</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: blue">void</SPAN><FONT color=#000000> WriteXML()</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp; </SPAN>{</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: #2b91af">XmlSerializer</SPAN><FONT color=#000000> serializer;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: #2b91af">TextWriter</SPAN><FONT color=#000000> writer = </FONT><SPAN style="COLOR: blue">new</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: #2b91af">StreamWriter</SPAN><FONT color=#000000>(</FONT><SPAN style="COLOR: #a31515">"XMLBank.xml"</SPAN><FONT color=#000000>);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: #2b91af">BankAccount</SPAN><FONT color=#000000> bc = </FONT><SPAN style="COLOR: blue">new</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: #2b91af">BankAccount</SPAN><FONT color=#000000>();</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>bc.AccID = </FONT><SPAN style="COLOR: #a31515">"13-0001"</SPAN><FONT color=#000000>;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>bc.Amount = 1000000;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>serializer =<SPAN>&nbsp; </SPAN></FONT><SPAN style="COLOR: blue">new</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: #2b91af">XmlSerializer</SPAN><FONT color=#000000>(</FONT><SPAN style="COLOR: blue">typeof</SPAN><FONT color=#000000>(</FONT><SPAN style="COLOR: #2b91af">BankAccount</SPAN><FONT color=#000000>));</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>serializer.Serialize(writer, bc);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>writer.Close();</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp; </SPAN>}</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">public</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: blue">void</SPAN><FONT color=#000000> ReadXML()</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp; </SPAN>{</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: #2b91af">XmlReader</SPAN><FONT color=#000000> reader = </FONT><SPAN style="COLOR: #2b91af">XmlReader</SPAN><FONT color=#000000>.Create(</FONT><SPAN style="COLOR: #a31515">"XMLBank.xml"</SPAN><FONT color=#000000>);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>reader.Read();</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>reader.ReadStartElement(</FONT><SPAN style="COLOR: #a31515">"BankAccount"</SPAN><FONT color=#000000>);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>reader.ReadStartElement(</FONT><SPAN style="COLOR: #a31515">"AccID"</SPAN><FONT color=#000000>);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: #2b91af">Console</SPAN><FONT color=#000000>.WriteLine(reader.ReadString());</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>reader.ReadToFollowing(</FONT><SPAN style="COLOR: #a31515">"Amount"</SPAN><FONT color=#000000>);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: #2b91af">Console</SPAN><FONT color=#000000>.WriteLine(reader.ReadString());</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp; </SPAN>}</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 10pt"><FONT color=#000000><SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 115%; FONT-FAMILY: 'Arial','sans-serif'"><SPAN>&nbsp; </SPAN>}</SPAN><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"></SPAN></FONT> <br />
<P style="MARGIN: 0in 0in 10pt"><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><FONT color=#000000 size=3>Doing it this way then the application will not tie down to any database such as </FONT><A href="http://www.oracle.com/technology/database/index.html"><U><FONT color=#0000ff size=3>Oracle Database</FONT></U></A><FONT color=#000000 size=3> or </FONT><A href="http://msdn.microsoft.com/en-us/sqlserver/default.aspx"><U><FONT color=#800080 size=3>MS SQL</FONT></U></A><FONT size=3><FONT color=#000000>. <SPAN>&nbsp;</SPAN>If you have better and easier link then do share with me. </FONT></FONT></SPAN><br />
<P style="MARGIN: 0in 0in 10pt"><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><FONT color=#000000 size=3>The complete code is in </FONT><A href="http://skydrive.live.com/"><U><FONT color=#800080 size=3>http://skydrive.live.com</FONT></U></A><FONT size=3><FONT color=#000000>. The sample file name is ConsoleObjtoXML.rar. My MSN ID is <A href="mailto:chanmmn@hotmail.com">chanmmn@hotmail.com</A>.</FONT></FONT></SPAN></P><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><FONT face=Calibri color=#000000 size=3>Resources:</FONT></P><br />
<P style="MARGIN: 0in 0in 10pt"><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><A href="http://msdn.microsoft.com/en-us/library/aa468547.aspx"><FONT color=#800080 size=3><U>A Beginner's Guide to the XML DOM</U></FONT></A><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P><br />
<P style="MARGIN: 0in 0in 10pt"><SPAN><SPAN style="FONT-FAMILY: 'Arial','sans-serif'"><A href="http://www.oracle.com/technology/tech/xml/index.html"><U><FONT color=#0000ff size=3>XML Technology Center</FONT></U></A></SPAN></SPAN></SPAN></P></DIV></p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/10/write_a_simple_object_to_and_f.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/10/write_a_simple_object_to_and_f.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">.NET</category>
        
        
         <pubDate>Sat, 25 Oct 2008 21:42:29 +0800</pubDate>
      </item>
      
      <item>
         <title>The myth of LINQ (simplest sample for ADO.NET Entity Data Model)</title>
         <description><![CDATA[<p><DIV><br />
<P style="MARGIN: 0in 0in 10pt"><FONT face=Calibri color=#000000 size=3>If you are a .NET fan out there then you will basically hearing from many people asking, I have ADO.NET 2.0 so why is there a LINQ? It was a myth to me too. After Microsoft launch </FONT><A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E&amp;displaylang=en"><U><FONT face=Calibri color=#800080 size=3>Service Pack 1 for Visual Studio 2008</FONT></U></A><FONT face=Calibri color=#000000 size=3> then I clear some of my cloud in my head.</FONT> <br />
<P style="MARGIN: 0in 0in 10pt"><FONT face=Calibri color=#000000 size=3>I will only mention one of the unique features here, ADO.NET Entity Data Model from </FONT><A href="http://msdn.microsoft.com/en-us/data/aa937723.aspx"><U><FONT face=Calibri color=#800080 size=3>ADO.NET Entity Framework</FONT></U></A><FONT face=Calibri color=#000000 size=3>. I have not found a better way to bind the Entity Model to DataGridView web control. </FONT><br />
<P style="MARGIN: 0in 0in 10pt"><FONT face=Calibri color=#000000 size=3>In order to create ADO.NET Entity Data Model, right click either Windows Application Project or Web Application Project and choose Add New Item… . Select ADO.NET Entity Data Model from the Add New Item dialog. After that you will have a file with edmx extension.</FONT> <br />
<P style="MARGIN: 0in 0in 10pt"><FONT face=Calibri color=#000000 size=3>I have created a complete Windows Application sample using Northwind database in MS SQL 2008 Express. The Entity named </FONT><SPAN style="FONT-SIZE: 10pt; COLOR: #2b91af; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'">NorthwindEntities</SPAN><FONT size=3><FONT color=#000000><SPAN style="FONT-FAMILY: 'Courier New'">. </SPAN><SPAN><FONT face=Calibri>The entire sample consisted of 2 controls, 1 DataGridView and another is Button. I only have few lines of code in Button click event as below.</FONT></SPAN></FONT></FONT> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN><SPAN><FONT face=Calibri color=#000000 size=3>&nbsp;</FONT></SPAN></SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: 'Courier New'">private</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000> </FONT><SPAN style="COLOR: blue">void</SPAN><FONT color=#000000> btnGetCustomers_Click(</FONT><SPAN style="COLOR: blue">object</SPAN><FONT color=#000000> sender, </FONT><SPAN style="COLOR: #2b91af">EventArgs</SPAN><FONT color=#000000> e)</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>{</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp; </FONT></SPAN><SPAN style="COLOR: #2b91af">NorthwindEntities</SPAN><FONT color=#000000> nwe = </FONT><SPAN style="COLOR: blue">new</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: #2b91af">NorthwindEntities</SPAN><FONT color=#000000>();</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">var</SPAN><FONT color=#000000> cus = </FONT><SPAN style="COLOR: blue">from</SPAN><FONT color=#000000> customer </FONT><SPAN style="COLOR: blue">in</SPAN><FONT color=#000000> nwe.Customers</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">select</SPAN><FONT color=#000000> customer;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp; </SPAN>dataGridView1.DataSource = cus;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 10pt"><FONT color=#000000><SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'">}</SPAN><SPAN></SPAN></FONT> <br />
<P style="MARGIN: 0in 0in 10pt"><SPAN><FONT size=3><FONT color=#000000><FONT face=Calibri>I guess no one will ever say this is difficult. </FONT></FONT></FONT></SPAN><br />
<P style="MARGIN: 0in 0in 10pt"><FONT face=Calibri color=#000000 size=3>The complete code is in </FONT><A href="http://skydrive.live.com/"><U><FONT face=Calibri color=#0000ff size=3>http://skydrive.live.com</FONT></U></A><FONT face=Calibri color=#000000 size=3>. The sample file name is WinAppEntities.rar. My MSN ID is chanmmn@hotmail.com.</FONT> <br />
</BR><br />
Unfortunately, ADO.NET Entity Data Model is not working with <a href="http://www.oracle.com/technology/database/index.html">Oracle Database</a> yet.</p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/10/the_myth_of_linq_simplest_samp.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/10/the_myth_of_linq_simplest_samp.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">.NET</category>
        
        
         <pubDate>Sun, 19 Oct 2008 21:37:54 +0800</pubDate>
      </item>
      
      <item>
         <title>Write Table content from Database to XML file</title>
         <description><![CDATA[<p><DIV><br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>I found the easiest way to write a table or even tables from database to XML file is in.NET languages. To do this in Java you might probably need to include not only one but few proprietary library or open source jar file.</FONT> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>&nbsp;</FONT> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT face=Arial color=#000000>To do this in <A href="http://msdn.microsoft.com/en-us/vcsharp/default.aspx">C#</A>, one of the .NET languages, there is no additional reference need to be added to the project. Only </FONT><SPAN style="COLOR: blue; FONT-FAMILY: 'Courier New'">using</SPAN><FONT color=#000000><SPAN style="FONT-FAMILY: 'Courier New'"> System.Data </SPAN><SPAN><FONT face=Arial>is needed because of the Dataset.</FONT></SPAN></FONT></FONT> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN><FONT face=Arial color=#000000 size=2>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN><FONT size=2><FONT color=#000000><FONT face=Arial>The code segment that writes dataset to XML file as follow (the code segment is from <A href="http://msdn.microsoft.com/">MSDN library</A>):</FONT></FONT></FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN><FONT face=Arial color=#000000 size=2>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000 size=2>&nbsp;&nbsp;&nbsp; </FONT></SPAN></SPAN><SPAN style="FONT-SIZE: 9pt; COLOR: blue; FONT-FAMILY: 'Courier New'">static</SPAN><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000> </FONT><SPAN style="COLOR: blue">void</SPAN><FONT color=#000000> WriteXmlToFile(</FONT><SPAN style="COLOR: #2b91af">DataSet</SPAN><FONT color=#000000> thisDataSet)</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp; </SPAN>{</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">if</SPAN><FONT color=#000000> (thisDataSet == </FONT><SPAN style="COLOR: blue">null</SPAN><FONT color=#000000>) { </FONT><SPAN style="COLOR: blue">return</SPAN><FONT color=#000000>; }</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: green">// Create a file name to write to.</SPAN></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">string</SPAN><FONT color=#000000> filename = </FONT><SPAN style="COLOR: #a31515">"XmlDoc.xml"</SPAN><FONT color=#000000>;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: green">// Create the FileStream to write with.</SPAN></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>System.IO.</FONT><SPAN style="COLOR: #2b91af">FileStream</SPAN><FONT color=#000000> stream = </FONT><SPAN style="COLOR: blue">new</SPAN><FONT color=#000000> System.IO.</FONT><SPAN style="COLOR: #2b91af">FileStream</SPAN></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>(filename, System.IO.</FONT><SPAN style="COLOR: #2b91af">FileMode</SPAN><FONT color=#000000>.Create);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: green">// Write to the file with the WriteXml method.</SPAN></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>thisDataSet.WriteXml(stream);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 21pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>}</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 21pt"><SPAN style="FONT-SIZE: 9pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN>The complete code to extract the data from employee table of <A href="http://download.oracle.com/docs/cd/B14117_01/server.101/b10771/scripts003.htm">HR</A> schema to XML from is in </SPAN>http://skydrive.live.com. The sample file name is ConsoleDatasettoXML .zip. My MSN ID is chanmmn@hotmail.com.<SPAN></SPAN></FONT></FONT></FONT></P></DIV></p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/10/write_table_content_from_datab.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/10/write_table_content_from_datab.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">.NET</category>
        
        
         <pubDate>Sun, 12 Oct 2008 00:45:44 +0800</pubDate>
      </item>
      
      <item>
         <title>Larry @ Zdnet</title>
         <description><![CDATA[<p>It is about new HP server and storage technology with Oracle Database. It goes up to Exabyte space to cope with the information world today.</p>

<p>Oracle shows off new Exadata storage server<br />
<a href="http://news.zdnet.com/2422-13568_22-236913.html">http://news.zdnet.com/2422-13568_22-236913.html</a></p>

<p>Oracle CEO launches 'world's fastest database machine<br />
<a href="http://news.zdnet.com/2422-13568_22-236911.html">http://news.zdnet.com/2422-13568_22-236911.html</a></p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/10/larry_zdnet.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/10/larry_zdnet.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Database</category>
        
        
         <pubDate>Fri, 10 Oct 2008 01:28:09 +0800</pubDate>
      </item>
      
      <item>
         <title>Oracle.DataAccess.dll in Windows Server 2008 x64</title>
         <description><![CDATA[<p>After I installed ODP.NET 11g ODTwithODAC1110621.zip in Windows Server 2008 x64 I got the following error message:<br />
Could not load file or assembly 'Oracle.DataAccess, Version=2.111.6.20, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. An attempt was made to load a program with an incorrect format. (<a href="http://forums.oracle.com/forums/thread.jspa?messageID=2732111">http://forums.oracle.com/forums/thread.jspa?messageID=2732111</a>)</p>

<p>So, I changed the ODP.NET 10g ODTwithODAC10202.exe. Well, there was no luck and I was still getting the same error message from Visual Studio 2008.</p>

<p>Thanks to Mark William answered my question in the forum <a href="http://forums.oracle.com/forums/thread.jspa?threadID=706071&tstart=0">http://forums.oracle.com/forums/thread.jspa?threadID=706071&tstart=0</a>. </p>

<p>Finally, Oracle.DataAccess.dll is able to open the connection to connect to Oracle Database 11g without an error. At the same time can create Data Sources without error too. </p>

<p>Somehow, in order to do that, I need to install both Oracle Client for Windows Server 2008 x64 and Oracle Client for Windows Server 2008 x86 download from the following link:<br />
<a href="http://www.oracle.com/technology/software/products/database/index.html">http://www.oracle.com/technology/software/products/database/index.html</a><br />
</p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/09/oracledataaccessdll_in_windows.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/09/oracledataaccessdll_in_windows.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">.NET</category>
        
        
         <pubDate>Sun, 28 Sep 2008 14:28:39 +0800</pubDate>
      </item>
      
      <item>
         <title>Using ADF Business Components with Oracle ADF (end product)</title>
         <description><![CDATA[<p>ADF Business Component can test like a Windows Form application and pretty easy to build. The developer can deploy it for product too.</p>

<p>This is the end product of a demo instead of tutorial. If you are watching the viewlet Using ADF Business Components with Oracle ADF as the link <a href="http://www.oracle.com/technology/products/jdev/viewlets/1013/ADF_Business_Components_viewlet_swf.html">http://www.oracle.com/technology/products/jdev/viewlets/1013/ADF_Business_Components_viewlet_swf.html</a> and intend to have a complete sample to play with.</p>

<p>Download the sample file from http://skydrive.live.com. The sample file name is ADFBusinessComponent .zip. My MSN ID is chanmmn@hotmail.com<br />
</p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/09/using_adf_business_components.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/09/using_adf_business_components.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Java</category>
        
        
         <pubDate>Sat, 20 Sep 2008 23:48:30 +0800</pubDate>
      </item>
      
      <item>
         <title>ODP.NET with Visual C++ 2008</title>
         <description><![CDATA[<p><DIV><br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>Many developers still using C++ for some reasons. One of my customers is using VC++ but with open source database&nbsp;and he is not that happy with the database&nbsp;so he&nbsp;wants to change to </FONT><A href="http://www.oracle.com/technology/products/database/oracle11g/index.html"><U><FONT face=Arial color=#0000ff size=2>Oracle database</FONT></U></A><FONT face=Arial color=#000000 size=2>. This is a simple sample that I build for him with 1 button and 1 listbox. </FONT></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT face=Arial><FONT color=#000000>When I was doing few lines of code for this sample I realize 2 not quite happy scenario in VC++; 1. The Oracle DataAccess Class does not appear in blue for example, </FONT><SPAN style="COLOR: #3366ff">OracleConnection</SPAN><FONT color=#000000>, as compare to </FONT></FONT></FONT><A href="http://msdn.microsoft.com/en-us/vcsharp/default.aspx"><U><FONT face=Arial color=#0000ff size=2>C#</FONT></U></A><FONT face=Arial color=#000000 size=2>. 2. The intellisense is not as strong when comparing to C# as well.</FONT> </p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>The following are the few lines of code that in the sample:</FONT> </p>

<p><P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'">static</SPAN><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000> String ^ORA_CONNECTION_STRING = </FONT><SPAN style="COLOR: #a31515">"Data Source=orcldemo;Persist Security Info=True;User ID=HR;Password=hr;"</SPAN><FONT color=#000000>;<SPAN style="COLOR: blue"></SPAN></FONT></SPAN> </p>

<p><P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'">private</SPAN><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>: System::Void button1_Click(System::Object^<SPAN>&nbsp; </SPAN>sender, System::EventArgs^<SPAN>&nbsp; </SPAN>e) {</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>OracleConnection ^conn = </FONT><SPAN style="COLOR: blue">gcnew</SPAN><FONT color=#000000> OracleConnection(ORA_CONNECTION_STRING);</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>conn-&gt;Open();</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>OracleCommand ^cmd = </FONT><SPAN style="COLOR: blue">gcnew</SPAN><FONT color=#000000> OracleCommand();</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>cmd-&gt;Connection = conn;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>cmd-&gt;CommandText = </FONT><SPAN style="COLOR: #a31515">"select department_id, department_name, city"</SPAN></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>+ </FONT><SPAN style="COLOR: #a31515">" from departments d, locations l"</SPAN><FONT color=#000000> + </FONT><SPAN style="COLOR: #a31515">" where d.location_id = </SPAN></SPAN><br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; FONT-FAMILY: 'Courier New'"><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>l.location_id"</SPAN><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>OracleDataReader ^dr = cmd-&gt;ExecuteReader();</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: blue">while</SPAN><FONT color=#000000> (dr-&gt;Read())</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>{</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN><SPAN>&nbsp; </SPAN>listBox1-&gt;Items-&gt;Add(</FONT><SPAN style="COLOR: #a31515">"The "</SPAN><FONT color=#000000> + dr-&gt;GetString(1) +</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><SPAN><FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT></SPAN><SPAN style="COLOR: #a31515">" department is in "</SPAN><FONT color=#000000> + dr-&gt;GetString(2));</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>}</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>conn-&gt;Close();<SPAN>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></FONT></SPAN><br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000><SPAN>&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>}</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"><FONT color=#000000>&nbsp;</FONT></SPAN> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial>Download the sample file from http://skydrive.live.com. The sample file name is WinAppCpp.zip. My MSN ID is chanmmn@hotmail.com</FONT></FONT></FONT></P></DIV></p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/09/_many_developers_still_using.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/09/_many_developers_still_using.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">.NET</category>
        
        
         <pubDate>Wed, 17 Sep 2008 18:58:57 +0800</pubDate>
      </item>
      
      <item>
         <title>Build a Web Application with JDeveloper 10g Using EJB, JPA, and JavaServer Faces (end product)</title>
         <description><![CDATA[<p>If you are trying the tutorial from the link: http://www.oracle.com/technology/obe/obe1013jdev/10131/ejb_and_jpa/master-detail_pagewith_ejb.htm</p>

<p>Another short blog, tomorrow I will go for end product of viewlet instead of tutorial. If you are the one not too sure what viewlet is then please visit: http://www.oracle.com/technology/products/jdev/viewlets/viewlet.html. </p>

<p>After this tutorial you will realize you have not been doing much code by yourself, cool stuffs.</p>

<p>At the same time you feel like to have a complete sample to play with then download the sample file from http://skydrive.live.com. The sample file name is HR_EJB_App.zip. My MSN ID is chanmmn@hotmail.com</p>

<p>Do feedback to me if the end product does not run for you. Good day<br />
</p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/09/build_a_web_application_with_j.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/09/build_a_web_application_with_j.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Java</category>
        
        
         <pubDate>Tue, 16 Sep 2008 22:52:20 +0800</pubDate>
      </item>
      
      <item>
         <title>Introduction to JavaServer Faces using JDeveloper (end product)</title>
         <description><![CDATA[<p>This one I did it back in May and should be fine. If you are trying the tutorial from the link: http://www.oracle.com/technology/obe/obe1013jdev/10131/jsfintro/jsfintro.htm</p>

<p>This tutorial is the good one to pick up Java Server Face (jsf). The fact is most of the developers build web pages in Java technology will use jsf. </p>

<p>At the same time you feel like to have a complete sample to play with then download the sample file from http://skydrive.live.com. The sample file name is JSFIntro.zip. My MSN ID is chanmmn@hotmail.com</p>

<p>Do feedback to me if the end product does not run for you. Have fun.<br />
</p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/09/introduction_to_javaserver_fac.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/09/introduction_to_javaserver_fac.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Java</category>
        
        
         <pubDate>Mon, 15 Sep 2008 20:03:14 +0800</pubDate>
      </item>
      
      <item>
         <title>Developing Business Services with ADF Business Components (end product)</title>
         <description><![CDATA[<p>Another lazy job ;-). If you are trying the tutorial from the link: http://www.oracle.com/technology/obe/obe1013jdev/10131/bslayer/bslayer.htm</p>

<p>At the same time you feel like to have a complete sample to play with then download the sample file from http://skydrive.live.com. The sample file name is OrderEntry.zip. My MSN ID is chanmmn@hotmail.com</p>

<p>Do feedback to me if the end product does not run for you.<br />
</p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/09/developing_business_services_w.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/09/developing_business_services_w.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Java</category>
        
        
         <pubDate>Sun, 14 Sep 2008 16:26:33 +0800</pubDate>
      </item>
      
      <item>
         <title>Build an End-to-End Web Application with ADF Faces and Oracle TopLink (End product)</title>
         <description><![CDATA[<p>Just make this one of the shorter blog article I have. If you are trying the tutorial from the link:<br />
http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_adftoplink/master-detail-edit_page_adf_toplink.htm</p>

<p>At the same time you feel like to have a complete sample to play with then download the sample file from http://skydrive.live.com. The sample file name is MDToplink.zip. My MSN ID is chanmmn@hotmail.com<br />
</p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/09/build_an_endtoend_web_applicat.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/09/build_an_endtoend_web_applicat.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Java</category>
        
        
         <pubDate>Thu, 11 Sep 2008 00:46:16 +0800</pubDate>
      </item>
      
      <item>
         <title>The simplest 1 InputText and 1 CommandButton ADF (Application Development Framework) sample</title>
         <description><![CDATA[<p><DIV><br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>The simplest 1 InputText and 1 CommandButton ADF (Application Development Framework) sample</FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>It is a simple Java Server Page with ADF but it is not easy to find in the Internet. So, I created one here.</FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>I have only one InputText and One Commandbutton on my page, all the properties are by default. I have a jspx page named OneButton.jspx and managed bean named OneButton.java. </FONT></P></p>

<p>Here is the XML representation in OneButton.jspx: </p>

<p><DIV>&lt;?xml version='1.0' encoding='windows-1252'?&gt;<BR>&lt;jsp:root xmlns:jsp="<A href="http://java.sun.com/JSP/Page">http://java.sun.com/JSP/Page</A>" version="2.0"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns:h="<A href="http://java.sun.com/jsf/html">http://java.sun.com/jsf/html</A>"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns:f="<A href="http://java.sun.com/jsf/core">http://java.sun.com/jsf/core</A>"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns:af="<A href="http://xmlns.oracle.com/adf/faces">http://xmlns.oracle.com/adf/faces</A>"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns:afh="<A href="http://xmlns.oracle.com/adf/faces/html">http://xmlns.oracle.com/adf/faces/html</A>"&gt;<BR>&nbsp; &lt;jsp:output omit-xml-declaration="true" doctype-root-element="HTML"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; doctype-system="<A href="http://www.w3.org/TR/html4/loose.dtd">http://www.w3.org/TR/html4/loose.dtd</A>"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/&gt;<BR>&nbsp; &lt;jsp:directive.page contentType="text/html;charset=windows-1252"/&gt;<BR>&nbsp; &lt;f:view&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;afh:html binding="#{backing_OneButton.html1}" id="html1"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;afh:head title="OneButton" binding="#{backing_OneButton.head1}"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; id="head1"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;meta http-equiv="Content-Type"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; content="text/html; charset=windows-1252"/&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/afh:head&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;afh:body binding="#{backing_OneButton.body1}" id="body1"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;h:form binding="#{backing_OneButton.form1}" id="form1"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;af:inputText label="Label 1"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; binding="#{backing_OneButton.inputText1}"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; id="inputText1"/&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;af:commandButton text="commandButton 1"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; binding="#{backing_OneButton.commandButton1}"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; id="commandButton1"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; action="#{backing_OneButton.commandButton1_action}"/&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/h:form&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/afh:body&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;/afh:html&gt;<BR>&nbsp; &lt;/f:view&gt;<BR>&nbsp; &lt;!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_OneButton--&gt;<BR>&lt;/jsp:root&gt;<BR></DIV><br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>My InputText named inputText1 and CommandButton commandButton1. I have the following code in the managed bean:</FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>public void setInputText1(CoreInputText inputText1) {</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>this.inputText1 = inputText1;</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>}</FONT></FONT></FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>public CoreInputText getInputText1() {</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>return inputText1;</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>}</FONT></FONT></FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>public void setCommandButton1(CoreCommandButton commandButton1) {</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>this.commandButton1 = commandButton1;</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>}</FONT></FONT></FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>public CoreCommandButton getCommandButton1() {</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>return commandButton1;</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>}</FONT></FONT></FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>public String commandButton1_action() {</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>// Add event code here...</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>String name = "Hello";</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>inputText1.setValue(name);</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>return null;</FONT></FONT></FONT></P><br />
<P style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 12pt"><FONT face=Arial color=#000000 size=2>}</FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>Download the sample file from </FONT><A href="http://skydrive.live.com/"><U><FONT face=Arial color=#800080 size=2>http://skydrive.live.com</FONT></U></A><FONT face=Arial color=#000000 size=2>. The sample file name is JustAButton.zip. My MSN ID is </FONT><A href="mailto:chanmmn@hotmail.com"><U><FONT face=Arial color=#0000ff size=2>chanmmn@hotmail.com</FONT></U></A></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>Download JDeveloper here: </FONT><A href="http://www.oracle.com/technology/products/jdev/index.html"><U><FONT face=Arial color=#0000ff size=2>http://www.oracle.com/technology/products/jdev/index.html</FONT></U></A><FONT face=Arial color=#000000 size=2>, unzip JDeveloper. Open the JDeveloper application file with jws extension.</FONT></P></DIV></p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/08/the_simplest_1_inputtext_and_1.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/08/the_simplest_1_inputtext_and_1.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Java</category>
        
        
         <pubDate>Sun, 31 Aug 2008 13:26:26 +0800</pubDate>
      </item>
      
      <item>
         <title>Getting start using JDeveloper</title>
         <description><![CDATA[<p><DIV><br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>Getting start using </FONT><A href="http://www.oracle.com/technology/products/jdev/index.html"><U><FONT face=Arial color=#0000ff size=2>JDeveloper</FONT></U></A></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>This short article is based on South East Asia midsize region. </FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>Many people in this region do not like Java because the developers feel Java code has no IDE (Integrated Development Environment) or the IDE does not run on their programming code. The question should ask here is “Why is this type of thinking emerge?” One of the obvious reason to this is the students never get to learn IDE tool from the school. Yet, do the lecturers themselves ever use any of these IDE tools? That will pretty much let the students think that the most powerful programming tool in the world is called Notepad.</FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>There are several IDE tools for Java development in the market. I will only get start with JDeveloper in this article. JDeveloper is a tool that covers the complete development life cycle; Design -&gt; Code -&gt; Debug and Test -&gt; Analyze -&gt; Tune -&gt; Deploy -&gt; Versioning. To see the complete development life cycle demo click on the link: </FONT><A href="http://www.oracle.com/technology/products/jdev/viewlets/1013/JDev_complete_viewlet_swf.html"><U><FONT face=Arial color=#0000ff size=2>http://www.oracle.com/technology/products/jdev/viewlets/1013/JDev_complete_viewlet_swf.html</FONT></U></A></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>To get start with JDeveloper, try the Introduction to the JDeveloper IDE: </FONT><A href="http://www.oracle.com/technology/obe/obe1013jdev/10131/introide/introjdevide.htm"><U><FONT face=Arial color=#0000ff size=2>http://www.oracle.com/technology/obe/obe1013jdev/10131/introide/introjdevide.htm</FONT></U></A></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT color=#000000><FONT size=2><FONT face=Arial>There are two good tutorials the developer should go through. The first tutorial is the J2EE Tutorial:<SPAN style="mso-spacerun: yes">&nbsp; </SPAN></FONT></FONT></FONT><A href="http://www.oracle.com/technology/obe/JavaEE_tutorial_10131/index.htm"><U><FONT face=Arial color=#0000ff size=2>http://www.oracle.com/technology/obe/JavaEE_tutorial_10131/index.htm</FONT></U></A><FONT face=Arial color=#000000 size=2>. The second tutorial is ADF tutorial: </FONT><A href="http://www.oracle.com/technology/obe/ADF_tutorial_1013/10131/index.htm"><U><FONT face=Arial color=#0000ff size=2>http://www.oracle.com/technology/obe/ADF_tutorial_1013/10131/index.htm</FONT></U></A></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>After the demo and tutorials the developers are able to put into production environment. </FONT></P></p>

<p><P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>Online demos: </FONT></P><br />
<P style="MARGIN: 0in 0in 0pt"><SPAN lang=DE style="mso-ansi-language: DE"><A href="http://www.oracle.com/technology/products/jdev/viewlets/viewlet.html"><SPAN lang=EN-US style="mso-ansi-language: EN-US"><U><FONT face=Arial color=#0000ff size=2>http://www.oracle.com/technology/products/jdev/viewlets/viewlet.html</FONT></U></SPAN></A></SPAN></P></p>

<p><br />
</DIV></p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/08/getting_start_using_jdeveloper.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/08/getting_start_using_jdeveloper.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Java</category>
        
        
         <pubDate>Fri, 22 Aug 2008 21:56:08 +0800</pubDate>
      </item>
      
      <item>
         <title>Installed Windows Server 2008 x64</title>
         <description><![CDATA[<p><DIV><br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>Installed </FONT><A href="http://technet.microsoft.com/en-us/windowsserver/default.aspx"><U><FONT face=Arial color=#0000ff size=2>Windows Server 2008 x64</FONT></U></A><A href="http://technet.microsoft.com/en-us/windowsserver/default.aspx"><U><FONT face=Arial color=#0000ff size=2></FONT></U></A> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>&nbsp;</FONT> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>I was thinking to upgrade my 32 bit Windows Server 2008 to 64 bit </FONT><A href="http://technet.microsoft.com/en-us/windowsserver/default.aspx"><U><FONT face=Arial color=#0000ff size=2>Windows Server 2008</FONT></U></A><FONT face=Arial color=#000000 size=2>. I want to retain all the applications and settings that I have installed in my 32 bit Windows 2008 so instead of fresh installation I intended to upgrade. </FONT><br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>&nbsp;</FONT> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>The good parts are I can initial the installation of </FONT><A href="http://msdn.microsoft.com/en-us/vstudio/default.aspx"><U><FONT face=Arial color=#0000ff size=2>Visual Studio 2008</FONT></U></A><FONT face=Arial color=#000000 size=2>, </FONT><A href="http://www.symantec.com/business/products/overview.jsp?pcid=pcat_security&amp;pvid=endpt_prot_1"><U><FONT face=Arial color=#0000ff size=2>Symantec Endpoint v11</FONT></U></A><FONT face=Arial color=#000000 size=2> 32 bit runs and <A href="http://www.oracle.com/technology/products/jdev/index.html">JDeveloper </A>runs without giving any problem till now.</FONT> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>&nbsp;</FONT> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT size=2><FONT color=#000000><FONT face=Arial>The bad parts, perhaps need the effort of both, are Oracle 10g 64 bit keep complaining the Operating System is neither NT 5.0 nor NT 5.1 but NT 6.0 so it cannot install in it. Well, that I think Oracle part need to get it solve.<SPAN>&nbsp;&nbsp; </SPAN></FONT></FONT></FONT><br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>&nbsp;</FONT> <br />
<P style="MARGIN: 0in 0in 0pt"><FONT face=Arial color=#000000 size=2>I will post more and more 64 bit stuffs because of 64 bit question is getting more in </FONT><A href="http://forums.oracle.com/forums/forum.jspa?forumID=146"><U><FONT face=Arial color=#0000ff size=2>ODP.NET forum</FONT></U></A><FONT face=Arial color=#000000 size=2> as well as others like </FONT><A href="http://forums.msdn.microsoft.com/en-US/csharpgeneral/threads/"><U><FONT face=Arial color=#0000ff size=2>C# General forum</FONT></U></A></P></DIV></p>]]></description>
         <link>http://blogs.oracle.com/MingMan/2008/08/installed_windows_server_2008.html</link>
         <guid>http://blogs.oracle.com/MingMan/2008/08/installed_windows_server_2008.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Windows Operating System</category>
        
        
         <pubDate>Sun, 10 Aug 2008 00:14:32 +0800</pubDate>
      </item>
      
   </channel>
</rss>
