CodeDelphiRAD Studio

Learn About How To Redirect Inserting, Deleting And Updating Records In Delphi With FireDAC

This sample shows how to redirect inserting, deleting and updating records using standalone table adapter. Location You can find theCommandssample project at: Start | Programs | Embarcadero RAD Studio Sydney | Samplesand then navigate to:Object PascalDatabaseFireDACSamplesDApt LayerCommandsSubversion Repository:You can find Delphi code samples inGitHub…
Read more
DatabaseRAD Studio

Newcomer's Perspective - FireDAC and SQLite

FireDAC is Embarcadero’s library for universal data access – connection to just about any database protocol you can find. It abstracts the protocol-level details and presents a common interface so developers can build their applications to be database agnostic and flexible in the event of future design changes. My work this week focused on FireDAC and local databases. SQLite is…
Read more
CodeDatabaseDelphiRAD Studio

Learn To Populate A String List With Some Data From A Database With The FireDAC.GetFieldNames Delphi Sample

To this end, the sample uses the following methods of theTFDConnectioncomponent: GetTableNamespopulates a string list with the names of tables in a database.GetFieldNamespopulates a string list with the names of fields in a table.GetKeyFieldNamespopulates a string list with the names of the key fields in a table. Location You can find…
Read more