php sqlserver 数组,mssql_fetch_array

用户评论:

[#1]

php at bricology dot com [2008-07-18 09:08:54]

I just spent a few hours trying to get ntext data with this function, CASTing and CONVERTing every which way, and scouring the 'net. Nothing worked, I just got a NULL.

Then on a whim I tried it with mssql_fetch_row instead, and that DOES work.

[#2]

chu61 dot tw at gmail dot com [2007-12-27 17:20:30]

To write Unicode (nvarchar) to SQL2000/2005 use PHP

??PHP??SQL Server ???Unicode?Y??

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

Let's assume, we have following data table, that allows us to store unicode values (using UCS-2 encoding):

create table mytable    (

myfield nvarchar (100) null

);

Below is the code to work with:

$link=mssql_connect('dbhost','username','password');mssql_select_db('database',$link);// sending data to database$utf8='some unicode UTF-8 data';// some Greek text for example ;)$ucs2=iconv('UTF-8','UCS-2LE',$utf8);// converting UCS-2 string into "binary" hexadecimal form$arr=unpack('H*hex',$ucs2);$hex="0x{$arr['hex']}";// IMPORTANT!

// please note that value must be passed without apostrophes

// it should be "... values(0x0123456789ABCEF) ...", not "... values('0x0123456789ABCEF') ..."mssql_query("insert into mytable (myfield) values ({$hex})",$link);// retrieving data from database

// IMPORTANT!

// please note that "varbinary" expects number of bytes

// in this example it must be 200 (bytes), while size of field is 100 (UCS-2 chars)$result=mssql_query("select convert(varbinary(200), myfield) from mytable",$link);

while (($row=mssql_fetch_array($result,MSSQL_BOTH)))

{// we get data in UCS-2

// I use UTF-8 in my project, so I encode it backecho(iconv('UCS-2LE','UTF-8',$row['myfield']));

}mssql_free_result($result);mssql_close($link);?>

[#3]

blood - demon at gmx dot net [2007-08-17 02:22:31]

Note that if you fetch varchar fields larger than 255 letters the result will be cut off at 255 letters.

To prevent this you have to do a CONVERT(TEXT,data_field) for this fields in your select clause.

[#4]

Bryan [2007-07-05 09:05:52]

Calling this function with the option second parameter is causing a "Wrong parameter count" message. If you run into this problem, you can get the same effect by calling different functions:

mssql_fetch_array: MSSQL_BOTH

mssql_fetch_assoc: MSSQL_ASSOC

mssql_fetch_row: MSSQL_NUM

[#5]

gillis dot phpmanual at no-spam-for-megillis dot fi [2005-07-06 01:19:46]

Allthough probably obvious to people who have used the functions available to other databases it during writing is not present in this entry that result type can be entered as MSSQL_ASSOC or MSSQL_NUM, and the default value when nothing entered being MSSQL_BOTH

//Gillis Danielsen

[#6]

archwisp at gmail dot com [2004-10-26 07:44:56]

In response to my last post:

After further testing, it appears as though the null column bug only affects windows installations. On my linux installation using freetds-0.61.2, the function behaves properly. It must exist either in the php_mssql.dll or the Microsoft connection libraries. And since I use this functionality through ASP as well (which uses the Microsoft connection libraries), it would lead me to believe that it's an issue within the php_mssql.dll.

[#7]

archwisp at gmail dot com [2004-10-25 14:28:32]

[Editor's Note: NULLs *are* distinguishable from 0.  See the manual section on comparison operators. ]

microsoft sql 2000 server

php running on windows 2000

Using the $row = mssql_fetch_array($result)

A null value will return 0, this is a problem if you are using 0 and some identifier for a value.  you should convert all nulls to something like -1 or "NO VALUE"

******

After extensive testing, the above statements both seem to be true. You *can* distinguish between 0 and null values in PHP; however, the mssql_fetch_array function does not set null colums to the php NULL value.

if ($row['Null_Column'] === 0) { print('pass'); }

A null column passes the above test. Seems to be a bug in the function.

[#8]

Derek Ethier [2004-02-24 15:06:17]

The array_walk function is also useful for stripping the whitespace returned in an mssql_query.

function modify_field(&$array) {

$array = trim($array);

}

$query = "select * from dbo.table where value = '0'";

$result = mssql_query($query) or die;

while ($row = mssql_fetch_array($result)) {

// This will call the above function.

array_walk($row, 'modify_field');

array_push($eventresults, $row);

}

An added benefit is that you can expand the modify_field function to handled unexpected returned column data.

[#9]

hackajar matt yahoo trot com [2004-01-23 15:11:32]

from php-dev mailing list article -

#26012 [Bgs]: mssql_fetch_array

"Previously mssql data was always rtrimed, however that's wrong because it modifies the original data. This caused a problem for people who needed those trailing space. Ultimately, the job of database extension is to fetch the data as is (like other db extensions already do) and not to mangle it in any way."

moving from <4.3.4 to a higher version you will have this now:

$query = "Select dumb_spaces from dbo.table where weak_sause = 'true'";

$result = mssql_query($query) or die("Spicy Sause! Query = $query");

while($line = mssql_fetch_array($result, MSSQL_ASSOC) {

foreach($line as $bs_trim) {

//Trim whitespace from end of query

$bs_trim = rtrim($bs_trim);

echo "Clean!".$bs_trim;

}

}

[#10]

herriedm at yahoo dot com [2003-06-25 09:21:09]

[Editor's Note: NULLs *are* distinguishable from 0.  See the manual section on comparison operators. ]

microsoft sql 2000 server

php running on windows 2000

Using the $row = mssql_fetch_array($result)

A null value will return 0, this is a problem if you are using 0 and some identifier for a value.  you should convert all nulls to something like -1 or "NO VALUE"

[#11]

flatcable2000 at yahoo dot com [2003-01-15 09:22:14]

Apparently php 4.0.6 does not support the second parameter. When used the error sounds

"Wrong parameter count for mssql_fetch_array"

[#12]

shaver at qspeed dot com [2003-01-10 14:08:48]

Note that the second parameter is the same as the msql version of this function (http://www.php.net/manual/en/function.msql-fetch-array.php) with the constants (MSQL_ASSOC, MSQL_NUM, and MSQL_BOTH) changing to MSSQL_.

Also note that if you don't specify this parameter you'll get both the numbers and column names, which can cause some frustration.

[#13]

ask at manniac dot de [2002-06-05 06:13:51]

It seems that this function creates arrays wich keys can not be longer than 30 chars. So when you're having a DB-field like "this_is_a_very_long_db_field_name"

its array-key is cut off after 30 chars and you will have to access the value with

rs["this_is_a_very_long_db_field_n"]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值