我是C#和javacript的新手。我在Visual Studio上做了我的第一个程序,我有一个问题就是从SQL Server数据库中检索数据。
我想从SQL Server检索数据并使用ajax方法将其转换为Json。但是当我启动我的网页时,我只能看到表空,所以我认为我没有一个好方法连接到我的数据库。
以下是用于检索数据并转换为Json的WebMethod
的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Web.Services;
using Newtonsoft.Json;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
[WebMethod]
public static string LoadData()
{
string strcon = ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString;
SqlConnection con = new SqlConnection(strcon);
SqlCommand cmd = new SqlCommand("select * from kit", con);
cmd.CommandType = CommandType.StoredProcedure;
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
da.Fill(ds);
return JsonConvert.SerializeObject(ds.Tables[0]);
}
我需要你的帮助我已经在这个程序上做了好几天了。谢谢你的帮助。
答案 0 :(得分:1)
您的CommandType应该是Text而不是StoredProcedure,因为您使用的是字符串SQL命令而不是存储过程。