0

decimal is a .NET (also other frameworks, rdbms and languages) value type that stores floating point numbers with decimal precision, instead of a binary one.

Is there any way of saving these values to a SQL CE database without using binary precision in the process?

Jader Dias
  • 88,211
  • 155
  • 421
  • 625

2 Answers2

5

Like the full version SQL Server, SQL Server CE supports the numeric data type:

In contrast to the Decimal data type in .NET, you will have to fix the precision and scale when creating a numeric field.

Heinzi
  • 167,459
  • 57
  • 363
  • 519
0

Use numeric data type of Sql server

Maheep
  • 5,539
  • 3
  • 28
  • 47