En RAD Studio XE5 (Delphi y C++Builder) los nombres de todos los componentes de FireDAC ahora empiezan con FD.
Por ejemplo: Anteriormente se llamaba "ADGUIxWaitCursor1" ahora se llama "FDGUIxWaitCursor1"
Asímismo, los nombres de sus unidades han cambiado y agrupadas en unit namespaces (Contenedores de unidades) .
Anteriormente estaban así:
uses
uADStanIntf, uADStanOption, uADStanParam, uADStanError, uADDatSManager, uADPhysIntf,
uADDAptIntf, uADStanAsync, uADDAptManager, uADGUIxIntf, uADStanDef,
uADStanPool, uADPhysManager, uADStanExprFuncs, uADPhysSQLite, uADCompClient,
uADGUIxIntf, uADGUIxFMXWait, uADStanIntf, uADCompGUIx, uADGUIxFormsWait ...
Ahora se ven así:
uses
FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf,
FireDAC.DApt.Intf, FireDAC.Stan.Async, FireDAC.DApt, FireDAC.UI.Intf,
FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Phys, FireDAC.Stan.ExprFuncs,
FireDAC.Phys.SQLite, FireDAC.Comp.Client, FireDAC.Comp.DataSet;
No hay comentarios.:
Publicar un comentario