I am calling a stored procedure from VB 6. When I pass 1.5 to the Stored Procedure, I can see it leaving VB as 1.5, but when it displays in the Stored Procedure or on the table it is 2.
How do I define a decimal parameter in my stored procedure so that it remains 1.5?
This is what I have
create procedure sp_LoadNPDES @ph decimal
as
How do I define a decimal parameter in my stored procedure so that it remains 1.5?
This is what I have
create procedure sp_LoadNPDES @ph decimal
as