<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Coretan Anak Kampung</title>
	<atom:link href="http://patlisan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://patlisan.wordpress.com</link>
	<description>"Kenangan yang tertinggal"</description>
	<lastBuildDate>Thu, 25 Mar 2010 11:07:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='patlisan.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Coretan Anak Kampung</title>
		<link>http://patlisan.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://patlisan.wordpress.com/osd.xml" title="Coretan Anak Kampung" />
	<atom:link rel='hub' href='http://patlisan.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Compare 2 Table Mssql</title>
		<link>http://patlisan.wordpress.com/2010/03/25/compare-2-table-mssql-2/</link>
		<comments>http://patlisan.wordpress.com/2010/03/25/compare-2-table-mssql-2/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 11:07:52 +0000</pubDate>
		<dc:creator>patlisan</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://patlisan.wordpress.com/2010/03/25/compare-2-table-mssql-2/</guid>
		<description><![CDATA[Ref : http://www.sql-server-tool.com/compare-two-tables.htm How to compare two tables &#8211; SQL Server Sample SQL statements to compare data in two tables with identical structure. (Statements work for MS SQL Server, as well as for many other databases.) To find records which exist in source table but not in target table: SELECT * FROM t1 WHERE NOT [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=38&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ref : http://www.sql-server-tool.com/compare-two-tables.htm<br />
How to compare two tables &#8211; SQL Server</p>
<p>Sample SQL statements to compare data in two tables with identical structure.</p>
<p>(Statements work for MS SQL Server, as well as for many other databases.)</p>
<p>To find records which exist in source table but not in target table:</p>
<p>SELECT * FROM t1 WHERE NOT EXISTS (SELECT * FROM t2 WHERE t2.Id = t1.Id)</p>
<p>or</p>
<p>SELECT * FROM t1 LEFT OUTER JOIN T2 on t1.Id = t2.Id WHERE t2.Id IS NULL</p>
<p>If the primary key consists of more than one column, you can modify SQL statement:</p>
<p>SELECT Id, Col1 FROM t1 WHERE NOT EXISTS<br />
(SELECT 1 FROM t2 WHERE t1.Id = t2.Id AND Col1.t1 = Col2.t2)</p>
<p>On SQL Server 2005 or newer you can use the EXCEPT operator:</p>
<p>SELECT Id, Col1 FROM t1 EXCEPT SELECT Id, Col1 FROM t2</p>
<p>To find records which exist in source table but not in target table, as well as records which exists in target table but not in source table:</p>
<p>SELECT * FROM (SELECT Id, Col1 FROM t1, &#8216;old&#8217;<br />
UNION ALL<br />
SELECT Id, Col1 FROM t2, &#8216;new&#8217;) t<br />
ORDER BY Id</p>
<p>Note: For tables with large amounts of data UNION statement might be very slow.</p>
<p>You can use SQL Server Comparison Tool to simplify and automate your comparison processes. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patlisan.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patlisan.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patlisan.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patlisan.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patlisan.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patlisan.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patlisan.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patlisan.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patlisan.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patlisan.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patlisan.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patlisan.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patlisan.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patlisan.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=38&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patlisan.wordpress.com/2010/03/25/compare-2-table-mssql-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d63d8d16040a98ed343ec9ad7bc2cd01?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">patlisan</media:title>
		</media:content>
	</item>
		<item>
		<title>Compare 2 Table Mssql</title>
		<link>http://patlisan.wordpress.com/2010/03/25/compare-2-table-mssql/</link>
		<comments>http://patlisan.wordpress.com/2010/03/25/compare-2-table-mssql/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 11:06:42 +0000</pubDate>
		<dc:creator>patlisan</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://patlisan.wordpress.com/2010/03/25/compare-2-table-mssql/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=37&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=37&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patlisan.wordpress.com/2010/03/25/compare-2-table-mssql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d63d8d16040a98ed343ec9ad7bc2cd01?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">patlisan</media:title>
		</media:content>
	</item>
		<item>
		<title>Apa yang terjadi jika programmer kangen</title>
		<link>http://patlisan.wordpress.com/2009/07/22/apa-yang-terjadi-jika-programmer-kangen/</link>
		<comments>http://patlisan.wordpress.com/2009/07/22/apa-yang-terjadi-jika-programmer-kangen/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 07:40:34 +0000</pubDate>
		<dc:creator>patlisan</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://patlisan.wordpress.com/?p=35</guid>
		<description><![CDATA[Wah&#8230;cerita unix ini perlu tak kenang biar bisa diingat-ingat klu pas lagi kangen sama sanEnscript(xxxx xxxxxxxx xxxxxx) Siapa yang tidak pernah merasakan kangen ? setiap manusia pasti punya rasa kangen terhadap apa yang disayang dan dicintainya. Seperti halnya programmer kangen akan koding dan kangen akan masalah2 baru. tapi dikasus kali ini beda. Hati siapa yang [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=35&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wah&#8230;cerita unix ini perlu tak kenang biar bisa diingat-ingat klu pas lagi kangen sama sanEnscript(xxxx xxxxxxxx xxxxxx) Siapa yang tidak pernah merasakan kangen ? setiap manusia pasti punya rasa kangen terhadap apa yang disayang dan dicintainya. Seperti halnya programmer kangen akan koding dan kangen akan masalah2 baru. tapi dikasus kali ini beda. Hati siapa yang tidak akan sedih, jika sesuatu yang disayanginya pergi. Dan orang mana yang mampu bertahan jika sesuatu yang dicintainya tidak adalagi. Mulailah tersirat disini..kenapa dan mengapa bisa seperti ini!! tanda tanya sebesar gunung kerincipun muncul&#8230;K E N A P A BISA BEGINI? DURJANA BETUL HIDUP INI JIKA XXXX XXXXXXXXX XXXXXX TAK ADA. Mencoba untuk mengenang masa lalu, jika dalam keadaan ini. aku berusaha untuk koding dan mencari ide-ide aneh..ternyata tidak mempan..gundah sekali jika penyakit kangen ini menimpa hati. Cara rohanipun telah ditempuh..Tilawah(Setiap ayat2 yg dibaca selalu teringat pada xxxx xxxxxxxx xxxxxx) ya Alloh&#8230;apa yg terjadi dengan hatiku ?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patlisan.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patlisan.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patlisan.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patlisan.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patlisan.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patlisan.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patlisan.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patlisan.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patlisan.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patlisan.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patlisan.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patlisan.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patlisan.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patlisan.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=35&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patlisan.wordpress.com/2009/07/22/apa-yang-terjadi-jika-programmer-kangen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d63d8d16040a98ed343ec9ad7bc2cd01?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">patlisan</media:title>
		</media:content>
	</item>
		<item>
		<title>Application Design Optimization Tips(SQL Server) By Alexander Chigrik</title>
		<link>http://patlisan.wordpress.com/2009/07/22/application-design-optimization-tipssql-server-by-alexander-chigrik/</link>
		<comments>http://patlisan.wordpress.com/2009/07/22/application-design-optimization-tipssql-server-by-alexander-chigrik/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 07:17:21 +0000</pubDate>
		<dc:creator>patlisan</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://patlisan.wordpress.com/2009/07/22/application-design-optimization-tipssql-server-by-alexander-chigrik/</guid>
		<description><![CDATA[Here are fifteen tips that you can use to ensure your Application Designs are performing in the most efficient manner possible. 1. Use stored procedures instead of passing ANSI-compliant SQL to the database. This can reduce network traffic because your client will send only the stored procedure name to the server, (perhaps with some parameters), [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=34&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here are fifteen tips that you can use to ensure your Application Designs are performing in the most efficient manner possible.<br />
1.	Use stored procedures instead of passing ANSI-compliant SQL to the database.<br />
This can reduce network traffic because your client will send only the stored procedure name to the server, (perhaps with some parameters), instead of the large heavy-duty queries text. Stored procedures can also be used to enhance security and conceal underlying data objects. For example, you can give the users permission to execute the stored procedure to work with the restricted set of the columns and data.<br />
2.	Design the application to run queries asynchronously.<br />
This can improve performance of your application because one query will not have to wait for the next before it runs.<br />
3.	Consider using Microsoft Transaction Server (MTS) for object pooling.<br />
This can improve the performance of your application because MTS allows COM objects to be pooled.<br />
4.	If most of the users have modern power computers (&#8216;fat&#8217; clients), consider design application to make client data caching.<br />
By doing so, you can reduce the load of your SQL Server because when users will need to access the data they will use local desktop resources, not SQL Server resources.<br />
5.	Consider designing the application to take advantage of the n-tier application model.<br />
By using the n-tier application model, you can increase the application&#8217;s performance and scalability.<br />
6.	Try to restrict the result sets by using the WHERE clause in your SELECT statements.<br />
This can result in good performance benefits because SQL Server will return to the client only particular rows, not all rows from the table(s). This can reduce network traffic and boost the overall performance of the query.<br />
7.	Try to restrict the result sets by returning only the particular columns from the table, not all of the table&#8217;s columns.<br />
This can result in good performance benefits because SQL Server will return to the client only particular columns, rahter than all of the table&#8217;s columns. This can reduce network traffic and boost the overall performance of the query.<br />
8.	Try to restrict the result sets by using the select statements with the TOP keyword.<br />
This can improve the performance of your application because a smaller result set will be returned. This can also reduce the traffic between the server and the client.<br />
9.	Use SQL Server cursors to allow your application to fetch a small subset of rows instead of fetching all of the table&#8217;s rows.<br />
SQL Server cursors allow the application to fetch any block of rows from the result set, including the next n rows, the previous n rows, or n rows starting at a certain row number in the result set. Using SQL Server cursors can reduce network traffic because a smaller result set will be returned.<br />
10.	Use ADO or OLE DB for accessing data from the applications that need high performance.<br />
This can improve performance of your application in comparison with using DAO or ODBC. OLE DB is a low-level COM API for accessing data and ADO is an application-level interface that uses OLE DB. Microsoft recommends using OLE DB for developing tools, utilities, or low-level components that need high performance and using ADO for general-purpose access programs in business applications (Accounting, Human Resources, and Customer Management).<br />
11.	When you connect to SQL Server, use &#8216;Microsoft OLE DB Provider for SQL Server&#8217; instead of &#8216;Microsoft ODBC Driver for SQL Server&#8217;.<br />
Because the native OLE DB provider is faster than the ODBC provider, you should use the OLE DB provider whenever possible.<br />
12.	Set a lock time-out so that queries used in your application will not run indefinitely.<br />
You can use the SET LOCK_TIMEOUT command to allow an application to set a maximum time that a statement waits on a blocked resource. When the LOCK_TIMEOUT setting is exceeded, the blocked statement is canceled automatically, and error message 1222 &#8220;Lock request time-out period exceeded&#8221; will be returned to the application. Your application should have an error handler that can trap the error message 1222.<br />
13.	Avoid using both OLTP and OLAP transactions within the same database.<br />
Because OLTP transactions are optimal for managing changing data and OLAP transactions are optimal for data queries that do not change data, try to relegate OLTP and OLAP transactions to their own databases.<br />
14.	Try to avoid using the Refresh method when you call stored procedures from the ADO Command object.<br />
This can improve performance of your application because using the Refresh method produces extra network traffic. You should explicitly create the stored procedure parameters using ADO code, instead of using the Refresh method to identify the parameters of a stored procedure.<br />
15.	Avoid creating transactions using ADO&#8217;s methods.<br />
Try to create transactions inside a stored procedure on the SQL Server. By doing so, you can reduce network traffic and boost overall application performance.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patlisan.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patlisan.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patlisan.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patlisan.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patlisan.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patlisan.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patlisan.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patlisan.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patlisan.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patlisan.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patlisan.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patlisan.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patlisan.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patlisan.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=34&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patlisan.wordpress.com/2009/07/22/application-design-optimization-tipssql-server-by-alexander-chigrik/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d63d8d16040a98ed343ec9ad7bc2cd01?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">patlisan</media:title>
		</media:content>
	</item>
		<item>
		<title>Menyimpan Data Ms Access Dari ASP.net</title>
		<link>http://patlisan.wordpress.com/2009/04/16/menyimpan-data-ms-access-dari-aspnet/</link>
		<comments>http://patlisan.wordpress.com/2009/04/16/menyimpan-data-ms-access-dari-aspnet/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 10:42:04 +0000</pubDate>
		<dc:creator>patlisan</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://patlisan.wordpress.com/?p=31</guid>
		<description><![CDATA[Menyambung artikel sebelumnya, hari ini baiklah kita akan membahas bagaimana cara untuk menyimpan data, Langkah pertama adalah membuat sebuah function static untuk mendapatkan connection string. public static string GetConString() { return ConfigurationManager.AppSettings["constr"]; } Catatan : ConfigurationManager.AppSettings["constr"](di bahas pada bab koneksi msaccess dengan asp.net) Setelah mendapatkan Koneksinya maka kita dapat menggunakan untuk mengesekusi data, ingat namespace [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=31&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Menyambung artikel sebelumnya, hari ini baiklah kita akan membahas bagaimana cara untuk menyimpan data,<br />
Langkah pertama adalah membuat sebuah function static untuk mendapatkan connection string.<br />
<code><br />
  public static string GetConString()<br />
    {<br />
        return ConfigurationManager.AppSettings["constr"];<br />
    }<br />
</code><br />
Catatan : ConfigurationManager.AppSettings["constr"](di bahas pada bab koneksi msaccess dengan asp.net)</p>
<p>Setelah mendapatkan Koneksinya maka kita dapat menggunakan untuk mengesekusi data, ingat namespace &#8220;System.Data&#8221;<br />
<code><br />
 protected void SaveCommand_Click(object sender, EventArgs e)<br />
    {<br />
   string constr=GetConString();<br />
   OleDbConnection con;<br />
        con = new OleDbConnection(constr);<br />
        OleDbCommand cmd;<br />
        cmd = new OleDbCommand("INSERT INTO TABLE1(NAMA)VALUES(?)", con);<br />
        cmd.CommandType = CommandType.Text;<br />
        con.Open();<br />
        cmd.Parameters.AddWithValue("NAMA", txtName.Text);<br />
        cmd.ExecuteNonQuery();<br />
}<br />
</code><br />
Perintah diatas akan mengesekusi data pada table satu dengan paramater ?,<br />
?<br />
Note : Silahkan berikan saran dan masukan jika terdapat kesalhan dalam penulisannya</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patlisan.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patlisan.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patlisan.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patlisan.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patlisan.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patlisan.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patlisan.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patlisan.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patlisan.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patlisan.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patlisan.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patlisan.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patlisan.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patlisan.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=31&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patlisan.wordpress.com/2009/04/16/menyimpan-data-ms-access-dari-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d63d8d16040a98ed343ec9ad7bc2cd01?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">patlisan</media:title>
		</media:content>
	</item>
		<item>
		<title>Koneksi MS Access dengan ASP.net</title>
		<link>http://patlisan.wordpress.com/2009/04/15/koneksi-ms-access-dengan-aspnet/</link>
		<comments>http://patlisan.wordpress.com/2009/04/15/koneksi-ms-access-dengan-aspnet/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 09:02:03 +0000</pubDate>
		<dc:creator>patlisan</dc:creator>
		
		<guid isPermaLink="false">http://patlisan.wordpress.com/?p=15</guid>
		<description><![CDATA[Sudah lama Tidak menulis dan merangkai kata-kata, berhubung lagi mumet daku iseng ingin berbagi dengan rekan-rekan lainnya bagaimana memanipulasi Koneksi Database Ms access dengan ASP.Net, Langkah Pertama Konfigurasi Web.config seperti berikut ini : 1. tambah kan tag Add Key pada Remark : Jangan lupa untuk mengimport namescape Import Namespace=&#8221;System.Data.OleDb&#8221; nah setelah jadi, bagaimana anda ingin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=15&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sudah lama Tidak menulis dan merangkai kata-kata, berhubung lagi mumet daku iseng ingin berbagi dengan rekan-rekan lainnya bagaimana memanipulasi Koneksi Database Ms access dengan ASP.Net, Langkah Pertama Konfigurasi Web.config seperti berikut ini :<br />
1. tambah kan tag Add Key pada<br />
<img src="http://patlisan.files.wordpress.com/2009/04/webconfig.jpg" alt="Web Config" /><br />
Remark : Jangan lupa untuk mengimport namescape<br />
Import Namespace=&#8221;System.Data.OleDb&#8221;</p>
<p>nah setelah jadi, bagaimana anda ingin membuka koneksi di asp.net.<br />
Perhatikan langkah penggunaannya.<br />
<code></p>
<p>    public bool OpenConnection()<br />
    {<br />
        OleDbConnection con; con = new OleDbConnection(ConfigurationManager.AppSettings["constr"]);</p>
<p>        if (con.State != System.Data.ConnectionState.Open)<br />
        {<br />
            try<br />
            {<br />
                con.Open(); return true;<br />
            }<br />
            catch (Exception) { return false; }<br />
        }<br />
        else return false;<br />
    }</p>
<p> </code><br />
function diatas merupakan function untuk membuka koneksi ke database.<br />
anda bisa memanggilnya saat dengan memanfaatkan event pada asp.net<br />
sebagai contoh pemanggilannya<br />
<code><br />
protected void Page_Load(object sender, EventArgs e)<br />
    {<br />
        OpenConnection();<br />
    }<br />
</code><br />
Pada saat halaman web dibuka, maka function openConnection akan diexsekusi.<br />
Note : Klu terdapat kesalahan mohon dikoreksi dan diberi masukannya</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patlisan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patlisan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patlisan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patlisan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patlisan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patlisan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patlisan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patlisan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patlisan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patlisan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patlisan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patlisan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patlisan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patlisan.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=15&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patlisan.wordpress.com/2009/04/15/koneksi-ms-access-dengan-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d63d8d16040a98ed343ec9ad7bc2cd01?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">patlisan</media:title>
		</media:content>

		<media:content url="http://patlisan.files.wordpress.com/2009/04/webconfig.jpg" medium="image">
			<media:title type="html">Web Config</media:title>
		</media:content>
	</item>
		<item>
		<title>Introduction With Microsoft Dynamic SL</title>
		<link>http://patlisan.wordpress.com/2008/07/29/introduction-with-microsoft-dynamic-sl/</link>
		<comments>http://patlisan.wordpress.com/2008/07/29/introduction-with-microsoft-dynamic-sl/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 10:46:54 +0000</pubDate>
		<dc:creator>patlisan</dc:creator>
				<category><![CDATA[Asp.net]]></category>

		<guid isPermaLink="false">http://patlisan.wordpress.com/?p=3</guid>
		<description><![CDATA[Microsoft Dynamic SL is ERP System for Manufacture. Solomon we call this application. We can customize application and report with vb editor and report designer,Not must compile in IDE. Solomon use Microsoft SQL Server Database for high performance. And Crystal Report 10 for the best viewer report. Module of Solomon very complete for manufacture.  For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=3&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Microsoft Dynamic SL is ERP System for Manufacture. Solomon we call this application. <!--[if gte mso 9]&gt;  Normal 0     false false false  EN-US X-NONE X-NONE              MicrosoftInternetExplorer4              &lt;![endif]--><!--[if gte mso 9]&gt;                                                                                                                                            &lt;![endif]--> We can customize application and report with vb editor and report<span> </span>designer,Not must compile in IDE. Solomon use Microsoft SQL Server Database for high performance. And Crystal Report 10 for the best viewer report. Module of Solomon very complete for manufacture<span>.  For Inventory Solomon more give we solution and give we accurate data for Inventory Items and Inventory Cost. Solomon Integreted to Accounting system. </span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/patlisan.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/patlisan.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patlisan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patlisan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patlisan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patlisan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patlisan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patlisan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patlisan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patlisan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patlisan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patlisan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patlisan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patlisan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patlisan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patlisan.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=3&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patlisan.wordpress.com/2008/07/29/introduction-with-microsoft-dynamic-sl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d63d8d16040a98ed343ec9ad7bc2cd01?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">patlisan</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://patlisan.wordpress.com/2008/07/28/hello-world/</link>
		<comments>http://patlisan.wordpress.com/2008/07/28/hello-world/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 11:12:21 +0000</pubDate>
		<dc:creator>patlisan</dc:creator>
				<category><![CDATA[Asp.net]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Procedure HelloWorld; Begin ShowMessage(&#8216;Hello World&#8217;); End; Private Sub HelloWorld MsgBox(&#8220;Hello World&#8221;) End Sub Hihihi&#8230;..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=1&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Procedure HelloWorld;<br />
Begin<br />
ShowMessage(&#8216;Hello World&#8217;);<br />
End;</p>
<p>Private Sub HelloWorld<br />
MsgBox(&#8220;Hello World&#8221;)<br />
End Sub</p>
<p>Hihihi&#8230;..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/patlisan.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/patlisan.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patlisan.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patlisan.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patlisan.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patlisan.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patlisan.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patlisan.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patlisan.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patlisan.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patlisan.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patlisan.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patlisan.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patlisan.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patlisan.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patlisan.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patlisan.wordpress.com&amp;blog=4347413&amp;post=1&amp;subd=patlisan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patlisan.wordpress.com/2008/07/28/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d63d8d16040a98ed343ec9ad7bc2cd01?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">patlisan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
