L
L
Lena Petrova2020-08-27 13:26:29
Delphi
Lena Petrova, 2020-08-27 13:26:29

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

2 answer(s)
H
Hemul GM, 2020-08-27
@Wldkttt

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.

V
Vladimir Korotenko, 2020-08-27
@firedragon

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 question

Ask a Question

731 491 924 answers to any question