<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: What is the best ASP.NET SQL data retrieval method to learn?</title>
	<atom:link href="http://www.sigir08.org/?feed=rss2&#038;p=63" rel="self" type="application/rss+xml" />
	<link>http://www.sigir08.org/?p=63</link>
	<description>automated storage and retrieval system</description>
	<lastBuildDate>Wed, 20 Jan 2010 12:04:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: chengfee.Zvet</title>
		<link>http://www.sigir08.org/?p=63&#038;cpage=1#comment-232</link>
		<dc:creator>chengfee.Zvet</dc:creator>
		<pubDate>Wed, 30 Dec 2009 17:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.sigir08.org/?p=63#comment-232</guid>
		<description>Hi, I&#039;m using SqlDataAdapter with DataSet instead of SqlDataSource. Both of them work similarly but I just get very used with SqlDataAdapter with DataSet. For instance:

Dim da as SqlDataAdapter = New SqlDataAdapter(&quot;Select * from Table1&quot;, connectionString)

Dim ds as new DataSet( )

da.Fill(ds, &quot;Table1&quot;)

variable1 = da.Tables(&quot;Table1&quot;).Rows(0).Item(&quot;ID&quot;)

As easy as 1, 2, 3 :)</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m using SqlDataAdapter with DataSet instead of SqlDataSource. Both of them work similarly but I just get very used with SqlDataAdapter with DataSet. For instance:</p>
<p>Dim da as SqlDataAdapter = New SqlDataAdapter(&quot;Select * from Table1&quot;, connectionString)</p>
<p>Dim ds as new DataSet( )</p>
<p>da.Fill(ds, &quot;Table1&quot;)</p>
<p>variable1 = da.Tables(&quot;Table1&quot;).Rows(0).Item(&quot;ID&quot;)</p>
<p>As easy as 1, 2, 3 <img src='http://www.sigir08.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ratchetr</title>
		<link>http://www.sigir08.org/?p=63&#038;cpage=1#comment-229</link>
		<dc:creator>Ratchetr</dc:creator>
		<pubDate>Wed, 30 Dec 2009 17:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.sigir08.org/?p=63#comment-229</guid>
		<description>You should probably be at least familiar with all 3. Not an expert, but at least a basic understanding.

My personal preference is LINQ. What I like about it is that it extends well beyond just SQL. Linq for SQL, Linq for entities, Linq for XML, Linq for datasets..etc, etc, etc. I like working with something that provides such a broad abstraction.</description>
		<content:encoded><![CDATA[<p>You should probably be at least familiar with all 3. Not an expert, but at least a basic understanding.</p>
<p>My personal preference is LINQ. What I like about it is that it extends well beyond just SQL. Linq for SQL, Linq for entities, Linq for XML, Linq for datasets..etc, etc, etc. I like working with something that provides such a broad abstraction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skylar</title>
		<link>http://www.sigir08.org/?p=63&#038;cpage=1#comment-230</link>
		<dc:creator>Skylar</dc:creator>
		<pubDate>Wed, 30 Dec 2009 17:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.sigir08.org/?p=63#comment-230</guid>
		<description>I also suggest Linq :)</description>
		<content:encoded><![CDATA[<p>I also suggest Linq <img src='http://www.sigir08.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhvrm</title>
		<link>http://www.sigir08.org/?p=63&#038;cpage=1#comment-231</link>
		<dc:creator>dhvrm</dc:creator>
		<pubDate>Wed, 30 Dec 2009 17:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.sigir08.org/?p=63#comment-231</guid>
		<description>LINQ is a query language. In and of itself, it cannot be used to retrieve data.

ADO.NET is a framework that contains a number of namespaces and classes used to work with data. There is no practical reason behind &quot;learning ADO.NET,&quot; since it has many, many parts, much of which isn&#039;t applicable to SQL Server.

SqlDataSource is a control, not a technology. It leverages the ADO.NET framework. Its primary benefit is its near-total abstraction of the process of getting information into and out of a SQL Server database.

Generally speaking, when you want to get data from SQL Server in ASP.NET, you can use the SqlDataSource control. You can also use the System.Data.SqlClient namespace to programmatically work with a SQL Server. Most people would probably find the SqlDataSource control easiest to learn and use.

http://www.asp.net/learn/data-access/</description>
		<content:encoded><![CDATA[<p>LINQ is a query language. In and of itself, it cannot be used to retrieve data.</p>
<p>ADO.NET is a framework that contains a number of namespaces and classes used to work with data. There is no practical reason behind &quot;learning ADO.NET,&quot; since it has many, many parts, much of which isn&#8217;t applicable to SQL Server.</p>
<p>SqlDataSource is a control, not a technology. It leverages the ADO.NET framework. Its primary benefit is its near-total abstraction of the process of getting information into and out of a SQL Server database.</p>
<p>Generally speaking, when you want to get data from SQL Server in ASP.NET, you can use the SqlDataSource control. You can also use the System.Data.SqlClient namespace to programmatically work with a SQL Server. Most people would probably find the SqlDataSource control easiest to learn and use.</p>
<p><a href="http://www.asp.net/learn/data-access/" rel="nofollow">http://www.asp.net/learn/data-access/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
