/
DmitryBar
/
computer_modeling
Обзор
Документация
Войти
/
DmitryBar
/
computer_modeling
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Lab2/src/fcTableGrid.h
66 строк
2 KB
Dmitry
Выполнение второй лабораторной работы
19 дек 2024, 15:28
19 дек 2024, 15:28
828fc2b
Код
Авторство
О чём код?
//--------------------------------------------------------------------------- #ifndef fcTableGridH #define fcTableGridH //--------------------------------------------------------------------------- #include <System.Classes.hpp> #include <Vcl.Controls.hpp> #include <Vcl.StdCtrls.hpp> #include <Vcl.Forms.hpp> #include <Vcl.ExtCtrls.hpp> #include <Data.DB.hpp> #include <Vcl.DBGrids.hpp> #include <Vcl.Grids.hpp> #include <Vcl.ComCtrls.hpp> #include <Vcl.ExtCtrls.hpp> #include <Vcl.Menus.hpp> #include <Vcl.Dialogs.hpp> #include <Vcl.ExtDlgs.hpp> #include <Vcl.CheckLst.hpp> #include <FireDAC.Comp.Client.hpp> #include <FireDAC.Comp.DataSet.hpp> #include <FireDAC.DApt.hpp> #include <FireDAC.DApt.Intf.hpp> #include <FireDAC.DatS.hpp> #include <FireDAC.Phys.hpp> #include <FireDAC.Phys.Intf.hpp> #include <FireDAC.Phys.SQLite.hpp> #include <FireDAC.Phys.SQLiteDef.hpp> //#include <FireDAC.Phys.SQLiteWrapper.Stat.hpp> #include <FireDAC.Stan.Async.hpp> #include <FireDAC.Stan.Def.hpp> #include <FireDAC.Stan.Error.hpp> #include <FireDAC.Stan.ExprFuncs.hpp> #include <FireDAC.Stan.Intf.hpp> #include <FireDAC.Stan.Option.hpp> #include <FireDAC.Stan.Param.hpp> #include <FireDAC.Stan.Pool.hpp> #include <FireDAC.UI.Intf.hpp> #include <FireDAC.VCLUI.Wait.hpp> #include <FireDAC.Phys.SQLiteWrapper.Stat.hpp> //--------------------------------------------------------------------------- class TForm2 : public TForm { __published: // IDE-managed Components TRadioGroup *RadioGroup1; TDBGrid *DBGrid1; TRadioGroup *RadioGroup2; TFDConnection *FDConnection1; TFDQuery *FDQuery1; TFDPhysSQLiteDriverLink *FDPhysSQLiteDriverLink1; TDataSource *DataSource1; TFDQuery *FDQuery2; void __fastcall FormCreate(TObject *Sender); void __fastcall GetTables(); void __fastcall GetTablesData(); void __fastcall RadioGroup1Click(TObject *Sender); void __fastcall RadioGroup2Click(TObject *Sender); private: // User declarations public: // User declarations __fastcall TForm2(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm2 *Form2; //--------------------------------------------------------------------------- #endif