G
Guest
Using Access 2000 with SQL Server 2000.
I'm trying to insert a record into a table using a stored procedure
with a comma as decimal separator.
There is a textbox 'txtTariff' holding something like 1,234.
This will be stored as 1 ;-(
The field Tariff_NM is a Numeric(8,3) in SQL
The code (snippet) looks like this...
.Parameters.Append .CreateParameter("Tariff_NM", adNumeric, , ,
Me.txtTariff)
.Parameters("Tariff_NM").Precision = 8
.Parameters("Tariff_NM").NumericScale = 3
Any suggestions?
I'm trying to insert a record into a table using a stored procedure
with a comma as decimal separator.
There is a textbox 'txtTariff' holding something like 1,234.
This will be stored as 1 ;-(
The field Tariff_NM is a Numeric(8,3) in SQL
The code (snippet) looks like this...
.Parameters.Append .CreateParameter("Tariff_NM", adNumeric, , ,
Me.txtTariff)
.Parameters("Tariff_NM").Precision = 8
.Parameters("Tariff_NM").NumericScale = 3
Any suggestions?