|
|
|
สงสัยเรื่องกรเชื่อมต่อฐานข้อมูล SQL ด้วย ASP.NET C# |
|
|
|
|
|
|
|
ตอนนี้ผมกำลังทำ C# อยู่น่ะครับ น่าจะอีก 2-3 อาทิตย์จะเสร็จครับ
Code (C#)
<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="System.Data.SqlClient"%>
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
SqlConnection objConn;
SqlCommand objCmd;
void Page_Load(object sender,EventArgs e)
{
String strConnString;
strConnString = "Server=localhost;UID=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;";
objConn = new SqlConnection(strConnString);
objConn.Open();
BindData();
}
void BindData()
{
String strSQL;
strSQL = "SELECT * FROM customer";
SqlDataReader dtReader;
objCmd = new SqlCommand(strSQL, objConn);
dtReader = objCmd.ExecuteReader();
//*** BindData to Repeater ***//
myRepeater.DataSource = dtReader;
myRepeater.DataBind();
dtReader.Close();
dtReader = null;
}
void Page_UnLoad()
{
objConn.Close();
objConn = null;
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - SQL Server</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Repeater id="myRepeater" runat="server">
<HeaderTemplate>
<table border="1">
<tr>
<th>CustomerID</th>
<th>Name</th>
<th>Email</th>
<th>CountryCode</th>
<th>Budget</th>
<th>Used</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td align="center"><asp:Label id="lblCustomerID" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CustomerID") %>'></asp:Label></td>
<td><asp:Label id="lblName" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Name") %>'></asp:Label></td>
<td><asp:Label id="lblEmail" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Email") %>'></asp:Label></td>
<td align="center"><asp:Label id="lblCountryCode" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CountryCode") %>'></asp:Label></td>
<td align="right"><asp:Label id="lblBudget" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Budget") %>'></asp:Label></td>
<td align="right"><asp:Label id="lblUsed" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Used") %>'></asp:Label></td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr bgcolor="#e8e8e8">
<td align="center"><asp:Label id="lblCustomerID" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CustomerID") %>'></asp:Label></td>
<td><asp:Label id="lblName" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Name") %>'></asp:Label></td>
<td><asp:Label id="lblEmail" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Email") %>'></asp:Label></td>
<td align="center"><asp:Label id="lblCountryCode" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CountryCode") %>'></asp:Label></td>
<td align="right"><asp:Label id="lblBudget" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Budget") %>'></asp:Label></td>
<td align="right"><asp:Label id="lblUsed" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Used") %>'></asp:Label></td>
</tr>
</AlternatingItemTemplate>
</asp:Repeater>
</form>
</body>
</html>
Quote:อีกเรื่อง Style การเขียนแบบ Code Behide, Code Inline แบบไหนดีกว่ากันและเป็นมาตราฐานกว่าครับ
Code Behide ดีกว่าครับ
|
|
|
|
|
Date :
2009-03-22 10:20:49 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ข้อแตกต่างระหว่าง Code Behide กับ Code Inline คือ
ในเรื่องของ Performance Code Behide จะดีกว่า เพราะว่า Page ของ Code Behide จะมีการ Compile ไปก่อนแล้ว แต่การ เขียน Code Inline ต้องตอน runtime ต้อง compile Page ทุกครั้ง
====================================================================
สำหรับ Pattern ในการเขียน Data Access นั้น มันจะเขียนเป็นแบบ BussinessObjects หรือ Data Access Objects (DAO) การทำ Class เพื่อดึง Data จะมีประโยชน์เวลาที่เรา Reused Code ครับ
ถ้าเป็นแบบเริ่มต้น + .NET 2.0 + MSSQL Server
==================================
ผมแนะนำให้สร้าง Typed DataSet + TableAdapter ถ้าคุณใช้ VS2005 อยู่ ให้ลองทำตาม Step นี้
Step 1: Add New Item > DataSet
Step 2: จากนั้นไปที่ Server Explorer (ถ้าไม่เจอให้ไปที่ View > Server Explorer)
Step 3: จากนั้น เลือก Server > Database > ขยาย Table Folder > จากนั้น Drag Table ทั้งหมดที่คุณต้องการ ลงใน workspace ของ DataSet. พอทำเสร็จแล้ว IDE จะ Generate Code ที่ใช้ติดต่อ Database ให้
สังเกตุกว่าใน 1 Table จะประกอบไปด้วย 2 ส่วนหลักคือ Typed DataTable และ TableAdapter
1) DataTable ก็คือ Logical ของ Table ที่เรา Map จาก Physical Table ที่เรา Drag มา
2) TableAdapter จะเป็น Method ในการทำงาน โดย Default จะมี method ชื่อ GetData()
Step 4) โดยปกติแล้ว เราจะใช้ Store Procedure ในการ CRUD (Create,Read,Update,Delete) อยู่แล้ว วิธีการก็คือ ให้ Click ที่ TableAdapter ของ DataTable > Click ขวา > Config TableAdapter
1) จากนั้นจะมี Wizzard ขึ้นมา มี 3 option ให้เลือกอันล่างสุด Use exist store procedure
2.1) ถ้า Store นั้นเป็นแบบ Select ให้เลือกอันแรก (จำไมได้แหละว่าชื่ออะไร) จากนั้น Wizzard ก็จะให้ใส่ชื่อ Method ของ Fill และ Get ตรงนี้ขออธิบายว่า
ถ้า Checked ที่ Fill หมายความว่าให้ IDE ทำการ Generate Procedure FillMethod (Method ที่รับ DataTable เพื่อ Fill Data ที่ Query ได้ลงไปยัง DataTable + Procedure นี้ ไม่ Return Type (Void ใน C#))
ถ้า Checked ที่ Get หมายความว่าให้ IDE ทำการ Generate Procedure GetMethod (Method ที่ Return DataTable ที่ได้จาก Query)
สำหรับการตั้งชื่อผมก็มี Convention เช่น
ถ้าคุณ Where ค่า 1 Column เช่น RoomId ผมก็จะใส่ชื่อ Method ว่า
FillByRoomId, GetByRootId or GetDataByRoomId
ถ้าคุณ Where ค่ามากกว่า 1 Column เช่น RoomId,EmployeeId ผมก็ะใส่ชื่อ Method ว่า
FillByCriteria , GetByCriteria or GetDataByCriteria
2.2) ถ้า Store นั้นเป็นแบบ Insert,Delete,Update ให้เลือก No Return Value
ปล. ต้องขออภัย ที่ผมไม่มีรูปมาประกอบนะครับ
แต่สำหรับผู้ที่สงสัยหรืออยากเรียนรู้เรื่องของ ASP.NET 2.0 + DataAccess อยากให้ไปอ่านบทความหรือ Tutorial ได้ที่ http://www.asp.net/learn/data-access/ ผมก็เริ่มอ่านจากที่นี้
|
|
|
|
|
Date :
2009-03-23 12:08:13 |
By :
jezusmitsui |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|