Using System.Data; Using System.Data.SqlClient;
<%@ Import Namespace="System.Data"%> <%@ Import Namespace="System.Data.SqlClient"%> <%@ Page Language="C#" Debug="true" %> <script runat="server"> void Page_Load(object sender, EventArgs e) { Object myValue; myValue = exExecuteScalar(); lblText.Text = myValue.ToString(); } protected Object exExecuteScalar() { System.Data.SqlClient.SqlConnection objConn; System.Data.SqlClient.SqlCommand objCmd; String strConnString,strSQL; Object myScalar; strConnString = "Server=localhost;UID=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;"; objConn = new System.Data.SqlClient.SqlConnection(strConnString); objConn.Open(); strSQL = "SELECT MAX(Used) FROM customer"; objCmd = new System.Data.SqlClient.SqlCommand(); objCmd.Connection = objConn; objCmd.CommandType = CommandType.Text; objCmd.CommandText = strSQL; myScalar = objCmd.ExecuteScalar(); objCmd = null; objConn.Close(); objConn.Close(); objConn = null; return myScalar; } </script> <html> <head> <title>ThaiCreate.Com ASP.NET - System.Data.SqlClient</title> </head> <body> <form id="form1" runat="server"> <asp:Label id="lblText" runat="Server"></asp:Label> </form> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท