Using dbftype + , T , =
Posted: Thu Jan 11, 2018 10:06 am
Hello ,
After creating a dbf-file as :
How can we recognize this types again ?
? fieldtype(1) gives 'N' , how we know it was created as "+" ?
? fieldtype(2,3,4) gives 'D' , how we know it was created as "=,T,D" ?
Frank
After creating a dbf-file as :
Code: Select all
aStruct := {{"Fld1","+",2,0},{"Fld2","=",10,2},{"Fld3","T",8,0},{"Fld4","@",10,0},{"Fld5","D",10,0}}
DbCreate("TestFld.dbf",aStruct,,.T.)
APPEND BLANK
Fieldput(5,Date())
//Fieldput(2,DateTime())
Fieldput(3,DateTime())
Fieldput(4,DateTime())
? fieldtype(1) gives 'N' , how we know it was created as "+" ?
? fieldtype(2,3,4) gives 'D' , how we know it was created as "=,T,D" ?
Frank