Edit report at https://bugs.php.net/bug.php?id=50811&edit=1
ID: 50811 Updated by: [email protected] Reported by: paul at dezinnia dot com Summary: mssql_bind fails to bind parameters greater than 256 characters long -Status: Feedback +Status: No Feedback Type: Bug Package: MSSQL related Operating System: Windows Vista PHP Version: 5.2.12 New Comment: No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. Previous Comments: ------------------------------------------------------------------------ [2010-03-18 16:40:50] [email protected] Does mssql_bind() issue any warning or return false? ------------------------------------------------------------------------ [2010-01-20 23:05:38] paul at dezinnia dot com Description: ------------ using the mssql database extension, i am attempting to bind a parameter of type nvarchar(1999) to a stored procedure. Everything works as expected except when the length of the parameter exceeds 256 chracters. In the case of a parameter length in excess of 256 characters the following message is returned by the DB server. "Procedure or function 'FunctionName' expects parameter '@ParameterName', which was not supplied." Reproduce code: --------------- --- >From manual page: function.mssql-bind --- this code won't reproduce the bug since you don't have access to my database...but i'm including it here so you you can be sure i'm not just getting a syntax error... $sp = mssql_init("dbo.AddSnippet", $db); $b = mssql_bind($sp, "@SnippetName", $snippetName, SQLVARCHAR, false, false, 120); $b = mssql_bind($sp, "@SnippetDescription", $snippetDescription, SQLVARCHAR, false, false, 480); $b = mssql_bind($sp, "@SnippetContent", $snippetContent, SQLVARCHAR, false, false, 1999); $b = mssql_bind($sp, "@tagstring", $tagstring, SQLVARCHAR, false, false, 1999); $b = mssql_bind($sp, "@TagUserID", $tagUserID, SQLINT4); mssql_execute($sp); Expected result: ---------------- The stored procedure should add a record to the database and is designed to store nvarchar values of lengths up to 1999 characters. Actual result: -------------- When the parameter length exceeds 256 characters, an error occurs. When the parameter length is <=256 characters, no error occurs. ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=50811&edit=1
