Web サービスで SQL Server からデータを取得する方法をテストしています。VS 2010 で SQL Server 2008 R2、asp.net Web サービス アプリケーション プロジェクト テンプレートを使用しています。
4つの列があり、制約がないテーブルがあるとしましょう(会話のために)。
- ファーストネーム
- 苗字
- Eメール
- 大学
ユーザーが FirstName の値を入力すると、SQL テーブルのすべての値を取得できるようにしたいと考えています。後で、FirstName を NTID または意味のある列に変更します。現在、ユーザーが FirstName を入力すると、Web サービスは単一の値を返します。たとえば、LastName です。
Web サービスは初めてなので、できる限り多くのことを学ぼうとしています。時間と労力をかけて助けていただければ幸いです。ティア。
以下のコードのどこをどのように変更すればよいですか
これが私のデータヘルパークラスです
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.SqlClient;
namespace EmployeeRecs
{
public class DataHelper
{
//create new method to get Employee record based on First Name
public static string GetEmployee(string firstName)
{
string LastName = "";
//Create Connection
SqlConnection con = new SqlConnection (@"Data Source=myDBServer;Initial Catalog=MyDataBase;Integrated Security=true;");
//Sql Command
SqlCommand cmd = new SqlCommand("Select LastName from Employees where FirstName ='" + firstName.ToUpper() + "'", con);
//Open Connection
con.Open();
//To Read From SQL Server
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
LastName = dr["LastName"].ToString();
}
//Close Connection
dr.Close();
con.Close();
return LastName;
}
}
}
そして、これが私のasmx.csクラスです
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
namespace EmployeeRecs
{
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{
//Create new web method to get Employee last name
[WebMethod]
public string GetEmployee(string firstName)
{
return DataHelper.GetEmployee(firstName);
}
}
}