On Sun, 06 Apr 2008, Massimo Belgrano wrote:
> Is planed in harbour support for ADS v 9 ?
> Anyone know Wich kind of modification require for support new feature?
> ADS 9 have new TableType ADS_VFP (
> "L,LOGICAL;N,NUMERIC,8,2;D,DATE;C,CHAR,5;M,MEMO;"+
> "BLOB,BINARY;DB,DOUBLE,2;I,INT,null;DT,TIMESTAMP;AI,AUTOINC;"+
> "CUR,MONEY,null;VC,VARCHARFOX,10,null;VB,VARBINARYFOX,10;"
> And imo this is the only part of ads 9 who require update
> Seem that Xharbour have started this implementation

New field types can be added in few minutes by someone who has ADS9.
(I do not). It's enough to update two functions in ads1.c

> Wich of this type of fields are supported also from dbfcdx?

All except varchar/varbinary in VFP like implementation and NULL flags.
The TIME and DAYTIME fields are translated to strings until Harbour
will not have native daytime/time types.

See the ChangeLog file, f.e.:
   2007-09-25 03:20 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

This is short list of some new fields in some combinations supported
by Harbour:

proc main()
   dbCreate("_tst", {{"F01", "+", 4, 0},; // autoinc
                     {"F02", "=", 8, 0},; // modtime
                     {"F03", "^", 8, 0},; // rowversion
                     {"F04", "@", 8, 0},; // daytime
                     {"F05", "T", 8, 0},; // alternative daytime
                     {"F06", "T", 4, 0},; // time
                     {"F07", "I", 8, 4},; // 64bit integer with 4 decimal places
                     {"F08", "I", 4, 2},; // 32bit integer with 2 decimal places
                     {"F09", "D", 3, 0},; // packed date
                     {"F10", "D", 4, 0},; // 32bit date
                     {"F11", "V", 6, 0},; // SIX3 variable size and type field
                     {"F12", "M", 4, 0},; // memo
                     {"F13", "Y", 8, 4},; // currency
                     {"F14", "B", 8, 2}}) // double value
   use _tst
   while lastrec() < 10
      dbappend()
   enddo
   browse()
   close
return
_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to