Hello,

The below test code illustrates that a column of a DBF file is created with
field-type "T", and when trying to place a value into it, I get:
"Error DBFNTX 1020 data type error: SECOND"

The test was made with the current beta build of xBuilder.


Ella


function main()

   dbcreate( "test.dbf", { { "FIRST", "D", 8, 0 }, { "SECOND", "T", 8, 0 } }
)
   use "test.dbf"
   append blank
   replace first with date()
   append blank
wait "1"
   replace second with datetime()  // ---- throws RTE 1020
   //replace second with date()   // this does not produce RTE
wait "2"
   use

wait "end..."
return NIL
------------------------------------------------------------------------------
The demand for IT networking professionals continues to grow, and the
demand for specialized networking skills is growing even more rapidly.
Take a complimentary Learning@Ciosco Self-Assessment and learn 
about Cisco certifications, training, and career opportunities. 
http://p.sf.net/sfu/cisco-dev2dev
_______________________________________________
xHarbour-developers mailing list
xHarbour-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xharbour-developers

Reply via email to