I am creating table in a data base Access with the following command:
- Code: Select all Expand view
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?