简体   繁体   English

如何将SQL Server查询结果的数据转换为JSON格式?

[英]How to get SQL Server query result's data into JSON Format ?

I'm just getting to understand Ajax and JSON format. 我刚刚了解Ajax和JSON格式。 I'm building a very simple address book. 我正在构建一个非常简单的地址簿。 So assume I have a table with for sake of simplicity has 3 columns: 因此,假设我有一个表,为简单起见有3列:

Name, Email and Phone

My javascript / jquery is not the best just learning, but I want to put the data returned from my SQL Server into JSON format. 我的javascript / jquery不是最好的学习,但我想把我的SQL Server返回的数据放到JSON格式。 Should I create a stored procedure that can create a json file and put it in a folder where I can use it in my javascript? 我应该创建一个存储过程,可以创建一个json文件并将其放在我可以在我的JavaScript中使用它的文件夹中吗?

Or is this something like a client C# / VB.net app should be doing where it actually generates the file every say 5 minutes? 或者这就像客户端C#/ VB.net应用程序应该在每个说5分钟实际生成文件的地方做什么? Basically lets assume I get some data back: 基本上我们假设我得到一些数据:

George g@yahoo.com 123-3333
Mike m@gmail.com 123-4433
Steve s@gmail.com 144-3333
Jill r@gmail.com 333-3333

I get this back from a simple select statement: 我从一个简单的select语句中得到了回复:

SELECT name, email, phone from myTable

How can I then get this as a json file so I can store the data in a .json and then use that file in my javascript code. 我怎么能把它作为一个json文件,所以我可以将数据存储在.json ,然后在我的javascript代码中使用该文件。 Can someone explain this as well as how people generate json files? 有人可以解释这个以及人们如何生成json文件吗?

Typically a better way to do this is to have the JSON served up via some web api. 通常,更好的方法是通过一些web api提供JSON。

Here's an example of how to do it in ASP.NET MVC: 这是一个如何在ASP.NET MVC中执行此操作的示例:

http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api

public class Contact
{
  public string Name {get;set;}
  public string Email {get;set;}
  public string Phone {get;set;}
}

public class ContactsController : ApiController
    {
        // instead of having the contacts in memory, you can load them from the database using Entity Framework, Dapper.NET - or you other favorite ORM.
        Contact[] contacts = new Contact[] 
        { 
            new Contact{ Name = "George", Email = "g@yahoo.com", Phone = "123-3333" }, 
            new Contact{ Name = "Mike", Email = "m@yahoo.com", Phone = "123-3333" }, 
            new Contact{ Name = "Steve", Email = "s@yahoo.com", Phone = "123-3333" } 
        };

        public IEnumerable<Contact> GetAllContacts()
        {
            return contacts;
        }
    }

You would then browse to: http://localhost:xxxx/api/contacts/ and you can see your data. 然后,您将浏览到: http://localhost:xxxx/api/contacts/ ,您可以看到您的数据。 You can use javascript to retrieve the data in JSON format. 您可以使用javascript以JSON格式检索数据。 The Web API takes care of converting it to JSON for you. Web API负责为您将其转换为JSON。

Behind the scenes ASP.NET MVC is using NewtonSoft's JSON.NET to convert the classes to JSON. 在幕后,ASP.NET MVC使用NewtonSoft的JSON.NET将类转换为JSON。 That is open source and can be used in any .NET application. 这是开源的,可以在任何.NET应用程序中使用。

http://james.newtonking.com/pages/json-net.aspx http://james.newtonking.com/pages/json-net.aspx

Retrieveing the data using jQuery: 使用jQuery检索数据:

<script type="text/javascript">
    $(document).ready(function () {
        // Send an AJAX request
        $.getJSON("api/contacts/",
        function (data) {
            // On success, 'data' contains a list of contacts.
            $.each(data, function (key, val) {

                console.log(val.Name, val.Phone, val.Email);  
            });
        });
    });
</script>

If your project is using ASP.NET Web Forms, you can do the following instead: 如果您的项目使用的是ASP.NET Web窗体,则可以执行以下操作:

asp.net web forms json return result asp.net web表单json返回结果

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)] 
public List<Contact> GetAllContacts()
{
  return contacts;
}

You may be able to utilize some of my rudimentary sql to json logic that i've used in the past... but it may be kind of specific to my dataset. 您可能能够利用我过去使用的一些基本的sql到json逻辑...但它可能是我的数据集特有的。 I tried to genericize it a bit. 我尝试将它泛化一点。

SET NOCOUNT ON;

--sample table
CREATE TABLE #Temp(
    Id INT Identity(1,1),
    Column1 INT,
    Column2 VARCHAR(10),
    Column3 VARCHAR(10)
    )
;

INSERT INTO #Temp(Column1, Column2, Column3) VALUES (10,'Test', 'Test2'), (20, 'Test3', 'Test4'), (30, 'Test5', 'Test6');

WITH 
    cte AS(
        SELECT  Id AS RowId,
                CAST(Id AS VARCHAR(100)) AS Id,
                CAST(Column1 AS VARCHAR(100)) AS Column1,
                CAST(Column2 AS VARCHAR(100)) AS Column2,
                CAST(Column3 AS VARCHAR(100)) AS Column3
        FROM #Temp
        ),
    cte2 AS (
        SELECT  RowId,
                '"' + PropertyName + '"' + ':' + CASE WHEN ISNUMERIC(Value) = 1 THEN Value ELSE '"' + Value + '"' END AS Value,
                ROW_NUMBER() OVER(PARTITION BY RowId ORDER BY CASE WHEN PropertyName = 'Id' THEN '' ELSE PropertyName END) AS RowNum,
                ROW_NUMBER() OVER(ORDER BY RowId) AS RowNum2
        FROM cte
            UNPIVOT(
                Value
                FOR PropertyName IN (
                    Id,
                    Column1,
                    Column2,
                    Column3
                    )
                ) upvt
        )
        SELECT  CASE WHEN cte2.RowNum2 = y.MinRowNum THEN '[' ELSE '' END,
                CASE WHEN cte2.RowNum = x.MinRowNum THEN '{' ELSE '' END,
                cte2.value,
                CASE WHEN cte2.RowNum <> x.MaxRowNum THEN ',' ELSE '' END,
                CASE 
                    WHEN cte2.RowNum = x.MaxRowNum THEN '}' + 
                        CASE WHEN cte2.RowNum2 = y.MaxRowNum THEN '' ELSE ',' END 
                    ELSE '' 
                END,
                CASE WHEN cte2.RowNum2 = y.MaxRowNum THEN ']' ELSE '' END
        FROM cte2
            INNER JOIN (
                SELECT  RowId, 
                        MIN(RowNum) AS MinRowNum, 
                        MAX(RowNum) AS MaxRowNum
                FROM cte2
                GROUP BY RowId
                ) x
                    ON cte2.RowId = x.RowId
            CROSS JOIN (
                SELECT  MIN(RowNum2) AS MinRowNum, 
                        MAX(RowNum2) AS MaxRowNum
                FROM cte2
                ) y
;

/* --output would be as follows: / * --output如下:

[ { "Id":1 , [{“Id”:1,
"Column1":10 , “Column1”:10,
"Column2":"Test" , “Column2”:“测试”,
"Column3":"Test2" }, “Column3”:“Test2”},
{ "Id":2 , {“Id”:2,
"Column1":20 , “Column1”:20,
"Column2":"Test3" , “Column2”:“Test3”,
"Column3":"Test4" }, “Column3”:“Test4”},
{ "Id":3 , {“Id”:3,
"Column1":30 , “Column1”:30,
"Column2":"Test5" , “Column2”:“Test5”,
"Column3":"Test6" } ] */ “Column3”:“Test6”}] * /

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM