beta2中的SqlConnection和SqlCommand

来源:互联网 发布:shadow defender 知乎 编辑:程序博客网 时间:2024/04/29 16:54
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 728x15, 创建于 08-4-23MSDN */google_ad_slot = "3624277373";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 160x600, 创建于 08-4-23MSDN */google_ad_slot = "4367022601";google_ad_width = 160;google_ad_height = 600;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
After a long struggle, I was able to install .NET beta 2 but this is not the end of problems. As per as MSDN documentation, It is clearly mentioned that ASP.NET is supported on Win NT but dear Bill Gates fans just check out this letter from Scott and you will find that ASP.NET is not supported on NT for some technical reasons. And that's what I experienced with lot of efforts. Anyway, that's the past. Now, I'm up with Win 2000 and on top of that I successfully installed 123 Mb of .NET and Mobile Internet Toolkit. As per as your expectations, I won't disappoint you. Although, In this particular article, I  won't discuss my mobile series. In this article, I'll discuss something new which I noticed when I start testing my first beta 1 based application. There are many changes in beta2 and first of them I noticed was ADO.NET area.

In this article, you'll see how to use SqlConnection and SqlCommand ADO.NET objects. First thing is, namespaces. There is no namespace called System.Data.SQL any more. IT has been changed with System.Data.SqlClient. See http://www.c-sharpcorner.com/beta%202/adonet1.asp for more details.

If you had program in beta 1, your code would look like this -
如果你用beta1编过程序,你的代码会看起来象下面的样子
<%@ Import Namespace="System.Data.SQL" %>
SQLDataReader myReader;
SQLConnection myConnection = new SQLConnection("server=localhost;uid=sa;pwd=sa;database=Shivani");
SQLCommand myCommand = new SQLCommand("Select * from ShivaniArea, myConnection);

try
{
myConnection.Open();
myCommand.Execute(out myReader);

while (myReader.Read())
{

// Retrieve the fields  
}
  



and now new version of beta 2 looks like this -
现在新版本的beta2中看起来这样
  
<%@ Import Namespace="System.Data.SqlClient"%>
SqlDataReader myReader;

SqlConnection myConnection = new SqlConnection("server=localhost;uid=sa;pwd=sa;database=Shivani");
SqlCommand myCommand = new SqlCommand("Select * from ShivaniArea", myConnection);
try
{
      myConnection.Open();
      myReader = myCommand.ExecuteReader;

while(myReader.Read())
{
    //Retrieve the fields
}
}  

During the testing of my mobile applications, I noticed more problems working with beta 1 code. I was having problem working with the TagPrefix. Any way .. I'll be coming with more articles on this matter soon and keep updating you on beta 2. In my next article, I will discuss how to deal with the problem of losing the DocumentNavigator Class in XML and take the real use of XMLDocument Class.



beta2中的SqlConnection和SqlCommand';return true">
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 728x15, 创建于 08-4-23MSDN */google_ad_slot = "3624277373";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 160x600, 创建于 08-4-23MSDN */google_ad_slot = "4367022601";google_ad_width = 160;google_ad_height = 600;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
原创粉丝点击