dbaspot
Tags Register FAQ Calendar Search Today's Posts Mark Forums Read

Problem with Bind-Variables, Decimal-Columns and NULL - Gupta Database

This is a discussion on Problem with Bind-Variables, Decimal-Columns and NULL - Gupta Database ; Hello We have the following problem: We are using GTD 4.1 (PTF2) with SQL-Server 2000 and OLEDB as Connection, OS is WinXP. When we update 2 Decimal-Columns of a Database-Table with Bind- Variables, in which on Variable is "NULL" and ...


Home > Database Forum > Other Databases > Gupta Database > Problem with Bind-Variables, Decimal-Columns and NULL

Reply

 

LinkBack Thread Tools Display Modes
  #1  
Old 11-19-2007, 06:53 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Problem with Bind-Variables, Decimal-Columns and NULL

Hello

We have the following problem:

We are using GTD 4.1 (PTF2) with SQL-Server 2000 and OLEDB as
Connection, OS is WinXP.
When we update 2 Decimal-Columns of a Database-Table with Bind-
Variables, in which on Variable is "NULL" and the other one is for
example "1.11", then it is not save the "1.11" but only 6, means
without the numbers on the right f the decimal point. But if we don't
use Bind-Variables or if the first Bind-Variable is also not NULL,
then it works normal. Very strange.
We also checked then in the Profiler of SQL-Server, what Update-
Statement is used.

When no Bind-Variables are used or no Bind-Variables are NULL then the
following Statement is used:

************************************************** ************************
declare @P1 int
set @P1=1
exec sp_prepexec @P1 output, N'@P1 numeric(6,2),@P2 numeric(6,2)', N'
UPDATE AAA SET
col1 = @P1 ,
col2 = @P2 ', 1.00, 1.11
select @P1
************************************************** ************************


When Bind-Variable 1 is NULL then the following Statement is used:

************************************************** ************************
exec sp_executesql N'
UPDATE AAA SET
col1 = @P1 ,
col2 = @P2 ', N'@P1 numeric(38),@P2 numeric(38)', NULL, 1
************************************************** ************************
As you can see, it is not declaring the Column as numeric(6,2) but as
numeric(38) for what reason ever.
Also another Store-Procedure is used then in the first sample.


In both the cases, the Bind-Variable 1 was set to 1.11.
When we do the same Test in GTD 2.1 then it works fine.

We also tryed "SqlConnect" and also "SqlCreateSession" with same
result.
Attached, I am sending you also the Test-Application.

Does anyone have an idea what is the problem ?
Raphael Bollin
Reply With Quote
Reply

Thread Tools
Display Modes



All times are GMT -4. The time now is 09:00 PM.