Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am 100% brand new to this world of SQL/PHP/ODBC/FBI/TLA etc. so I apologize if what I am asking is incredibly basic.

I am using a stored procedure that uses a lat/long database of zip codes to take a central zipcode and a given mile radius as 2 input parameters, and then returns an array of zip codes that are within that given mile radius. It works perfectly when I run it in my SQL viewer, but when I try to use php to do the same, I only get invalid parameter errors.

$connstr = "Driver={SQL Server};Server=MyServer;Database=MyDatabase;";
$conn = odbc_connect($connstr, "Name", "PW");

$query_string = " CALL FindZipCodeWithinRadius(?,?)  ";

$sp = odbc_prepare($conn, $query_string);
$zipcodes = odbc_execute($sp,array(" 14602, 35"));

print_r($zipcodes);

When I run the code like this, I get the error "Not enough parameters (1 should be 2)"

I have tried different iterations of double quotes/single quotes around those input parameters, but they all either give me the above error, or this error:

"SQL error: [Microsoft][ODBC SQL Server Driver]Invalid parameter number, SQL state S1093"

A quick google search leads me to believe that the second error means that there are far too many parameters being read in to the proc, so how did I go from 1 to many while skipping the desired 2?

The database is on SQL 2000 if that makes a difference.

Any ideas? Thanks for any help you can provide.

share|improve this question
Please post your stored procedure. We could be here all day guessing what it requires. Did you try array("14602", 35)? – Gordon Freeman Jan 5 at 7:50

2 Answers

$zipcodes = odbc_execute($sp,array(" 14602, 35"));

Should be

$zipcodes = odbc_execute($sp,array("14602", "35"));

In your execute you are passing 1 array value, " 14602, 35", and your prepared statement is looking for 2.

share|improve this answer
Thanks for the quick response! When I try that, and other variations of quotes/single quotes, I get the error "[Microsoft][ODBC SQL Server Driver]Invalid parameter number, SQL state S1093" – user1442631 Jun 7 '12 at 16:14
Are the values strings or integers? Try array('"14602"', '"35"') – mikemackintosh Jun 7 '12 at 16:31
When I run odbc_procedurecolumns it comes back with TYPE_NAME => char for the first parameter and TYPE_NAME => int for the second – user1442631 Jun 7 '12 at 16:39
Try: array(14602, 35) – mikemackintosh Jun 7 '12 at 16:46
I've tried array( 14602, 35) array( '14602', '35') array( "'14602;", "35") array( '"14602"', '"35"') array( '"14602"', '35') etc. but they all return the same SQL state S1093, or "1 instead of 2", error. Do I need to use a bind parameter command or something? – user1442631 Jun 7 '12 at 17:03
show 1 more comment
Below is the Code to execute MS SQL Stored Procedure in PHP

$DBConnString="DRIVER={SQL Server};SERVER=localhost;DATABASE=ERPDev";
$DBUsername="sa";
$DBPswd="";
$DBConnect = odbc_connect($DBConnString, $DBUsername, $DBPswd);  

$Param1 = '2';
$query_string = "P_Test[$Param1]";
$ResultSet = odbc_prepare($DBConnect, $query_string);
odbc_execute($ResultSet);
// odbc_result_all($ResultSet);
while($obRows = odbc_fetch_object($ResultSet))
{
    print $obRows->UserId." - ";
    print $obRows->UserFirstName." - ";
    print $obRows->UserLastName."<br />";
}
odbc_free_result($ResultSet);
odbc_close($DBConnect); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.