I have a problem with SQL Azure that I can't solve. I've created a stored procedure to instert new rows into one of my table.
CREATE PROCEDURE sp_RouteSave @addr VARCHAR(64), @about VARCHAR(2000), @fileName VARCHAR(512), @routeLen FLOAT, @user INT, @start1 FLOAT, @start2 FLOAT, @dest1 FLOAT, @dest2 FLOAT
AS
BEGIN
DECLARE @sregion INT
DECLARE @dregion INT
SET @sregion = dbo.udf_regio(@start1, @start2)
SET @dregion = dbo.udf_regio(@dest1, @dest2)
INSERT INTO Routes(addr, about, fileName, routeLen, startRegion, destRegion, user) values (@addr, @about, @fileName, @routeLen, @sregion , @dregion , @user)
END
As you can see I store routes in this table. Before the INSERT statement I call a function, the dbo.udf_regio. The main idea is, I have an other table, the Regions. I store GEOGRAPHY polygons in there, and the Routes table's startRegion and destRegion columns are foreign keys to the Regions' id. The dbo.udf_regio gets the long. and lat. coordinates and check which polygon contains them in the Regions table.
I execute the procedure in C# like this:
SqlConnection conn = new SqlConnection(Connection.getConString());
SqlDataReader reader = null;
try
{
conn.Open();
SqlCommand cmd = new SqlCommand("sp_RouteSave", conn);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add(new SqlParameter("@addr", address));
cmd.Parameters.Add(new SqlParameter("@about", about));
...I add the rest of the parameters here...
reader = cmd.ExecuteReader();
} catch (Exception e){
} finally {
conn.Close();
}
When I run this code on my local computer with Windows Azure Emulator it works fine. It creates the new row in the Routes table and gets the right Region IDs. However when I publish my project into my Windows Azure cloud service, it always gives back null for the region IDs.
Can you help me with this problem?
Thanks a lot, Daniel