Jump to content

MSSQL, executing Stored Procedure not returning correct characters using JSON


core000

Recommended Posts

I'm using PHP to access SQL Server Stored Procedure.  However, the

 

characters are not returning correctly using JSON.

 

Database value

--------------

 

_ResourceGuid

'341EEB0B-9D71-4805-8380-000C53BAE950'

 

ResourceGuid

'341EEB0B-9D71-4805-8380-000C53BAE950'

 

status

'Active'

 

 

PHP Returned JSON array

-----------------------

 

[{"_ResourceGuid":"\u000b","Resourceguid":"\u000b","status":"Active",".....

 

 

Code below:

-------------------

 

<?php 

$myServer = "server"; 
$myUser = "user";
$myPass = "passw";
$myDB = "mydatabase";

$conn = mssql_connect($myServer, $myUser, $myPass, $myDB); 



$sql ="EXEC spassetreport"; 

/*$result = mssql_query("SET ANSI_NULLS ON") or
die(mssql_get_last_message());*/
$result = mssql_query("SET ANSI_WARNINGS ON") or
die(mssql_get_last_message());

$data = mssql_query( $sql, $conn);    


$result = array();    

do { 
    while ($row = mssql_fetch_object($data)){ 
        $result[] = $row;    
    } 
}while ( mssql_next_result($data) ); 

echo json_encode($result);

mssql_close($conn); 
?> 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.