Answer the question
In order to leave comments, you need to log in
Possibility to add records to the original DB through a separate form?
There is a database in delphi, it has columns with names.
I need to be able to add new records to certain columns in the original database through a separate form
. How can I do this?
Please describe in more detail, in Delphi quite recently :(
Answer the question
In order to leave comments, you need to log in
You create a new form. You add the table, you add data sources. You connect with each other. You add fields for editing sources. Well and control of management of the table.
All this, components DBGrid, DBEdit, DBNavigator, etc.
Every rad has data sources. You need to drag it to the form, fill in the data from the form and click submit, everything is filled in there. In pseudocode something like this
Var Record = recordset..new();
Record[“aaaa”] = “45”;
Recordset.save()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question