Page 1 of 1

ADORDD/MS Access and decimal numbers

Posted: Thu Jul 19, 2007 8:00 pm
by vilian
Antonio,

I am creating table in a data base Access with the following command:

Code: Select all

DbCreate( "test2.mdb;table1", { { "NPEDIDO", "C",  6, 0 },;
                                             { "QTE",     "N", 10, 0 },;
                                             { "VALOR",   "N",  8, 2 } }, "ADORDD" )
             
The problem is that I record 2,5 in the field "value" and in the Access alone I see 2,0. What I am making made a mistake?

Posted: Tue Jul 24, 2007 6:01 pm
by Antonio Linares
Vilian,

Probably its not your mistake, but a missing properly management of decimals numbers in ADORDD

Posted: Wed Jul 25, 2007 1:54 am
by vilian
Antonio,

Thanks.