├── .gitattributes ├── .gitignore ├── HGM.SQLang.pas ├── HGM.SQLite.Wrapper.pas ├── HGM.SQLite.pas ├── README.md ├── Sample ├── SQLiteSample.Main.dfm ├── SQLiteSample.Main.pas ├── SQLiteSample.dpr ├── SQLiteSample.dproj ├── SQLiteSample.res └── Win32 │ └── Debug │ ├── data.db │ ├── libeay32.dll │ └── sqlite3ex.dll ├── SampleConsole ├── SQLiteSampleConsole.dpr ├── SQLiteSampleConsole.dproj └── SQLiteSampleConsole.res ├── SampleFMX ├── Android │ └── Debug │ │ ├── AndroidManifest.xml │ │ ├── classes.dex │ │ ├── colors.xml │ │ ├── splash_image_def.xml │ │ ├── strings.xml │ │ ├── styles-v21.xml │ │ └── styles.xml ├── AndroidManifest.template.xml ├── SQLiteFMX.Main.fmx ├── SQLiteFMX.Main.pas ├── SQLiteFMX.dpr ├── SQLiteFMX.dproj ├── SQLiteFMX.res └── Win32 │ └── Debug │ └── data.db ├── Templates └── SQLiteTemplate.pas ├── _config.yml ├── libeay32.dll └── sqlite3ex.dll /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Uncomment these types if you want even more clean repository. But be careful. 2 | # It can make harm to an existing project source. Read explanations below. 3 | # 4 | # Resource files are binaries containing manifest, project icon and version info. 5 | # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files. 6 | #*.res 7 | # 8 | # Type library file (binary). In old Delphi versions it should be stored. 9 | # Since Delphi 2009 it is produced from .ridl file and can safely be ignored. 10 | #*.tlb 11 | # 12 | # Diagram Portfolio file. Used by the diagram editor up to Delphi 7. 13 | # Uncomment this if you are not using diagrams or use newer Delphi version. 14 | #*.ddp 15 | # 16 | # Visual LiveBindings file. Added in Delphi XE2. 17 | # Uncomment this if you are not using LiveBindings Designer. 18 | #*.vlb 19 | # 20 | # Deployment Manager configuration file for your project. Added in Delphi XE2. 21 | # Uncomment this if it is not mobile development and you do not use remote debug feature. 22 | #*.deployproj 23 | # 24 | # C++ object files produced when C/C++ Output file generation is configured. 25 | # Uncomment this if you are not using external objects (zlib library for example). 26 | #*.obj 27 | # 28 | 29 | # Delphi compiler-generated binaries (safe to delete) 30 | *.exe 31 | *.bpl 32 | *.bpi 33 | *.dcp 34 | *.so 35 | *.apk 36 | *.drc 37 | *.map 38 | *.dres 39 | *.rsm 40 | *.tds 41 | *.dcu 42 | *.lib 43 | *.a 44 | *.o 45 | *.ocx 46 | 47 | # Delphi autogenerated files (duplicated info) 48 | *.cfg 49 | *.hpp 50 | *Resource.rc 51 | 52 | # Delphi local files (user-specific info) 53 | *.local 54 | *.identcache 55 | *.projdata 56 | *.tvsconfig 57 | *.dsk 58 | 59 | # Delphi history and backups 60 | __history/ 61 | __recovery/ 62 | *.~* 63 | 64 | # Castalia statistics file (since XE7 Castalia is distributed with Delphi) 65 | *.stat 66 | *.db 67 | *.db 68 | -------------------------------------------------------------------------------- /HGM.SQLang.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/HGM.SQLang.pas -------------------------------------------------------------------------------- /HGM.SQLite.Wrapper.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/HGM.SQLite.Wrapper.pas -------------------------------------------------------------------------------- /HGM.SQLite.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/HGM.SQLite.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SQLite - БД провайдер и Конструктор запросов для Delphi 2 | 3 | Модуль и интерфейс для работы с файловой базой данных sqlite 4 | 5 | 6 | Модуль позволяет выполнить подключение к файлу БД через библиотеку SqliteEx.dll (Библиотека с возможностью шифрования БД AES-256) 7 | 8 | Конструктор позволяет составить запрос посредством кода Delphi (SQL.Select, SQL.Delete, SQL.Update ...) 9 | Конструктор избавляет от написания запросов и хранения его в коде. 10 | 11 | Доступные конструкции: *select, update, delete, insert into, drop table, create table, where, order by, left | inner | outer | right join, pragma, incfield\*, decfield\*.* 12 | 13 | **SELECT** 14 | ```Delphi 15 | with SQL.Select(tnTableName, [fnID, fnName, fnDesc, fnDateCreate]) do 16 | begin 17 | OrderBy(fnName, True); 18 | Table := FDB.DB.GetTable(GetSQL); 19 | EndCreate; 20 | Table.MoveFirst; 21 | while not Table.EOF do 22 | begin 23 | Item.ID := Table.FieldAsInteger(fnID); 24 | Item.Name := Table.FieldAsString(fnName); 25 | Item.Desc := Table.FieldAsString(fnDesc); 26 | Item.DateCreate := Table.FieldAsDateTime(fnDateCreate); 27 | Add(Item); 28 | Table.Next; 29 | end; 30 | Table.Free; 31 | end; 32 | ``` 33 | **INSERT** 34 | ```Delphi 35 | with SQL.InsertInto(tnTableName) do 36 | begin 37 | AddValue(fnName, Item.Name); 38 | AddValue(fnDesc, Item.Desc); 39 | AddValue(fnDateCreate, Item.DateCreate); 40 | FDB.DB.ExecSQL(GetSQL); 41 | Item.ID := FDB.DB.GetLastInsertRowID; 42 | EndCreate; 43 | end; 44 | ``` 45 | **UPDATE** 46 | ```Delphi 47 | with SQL.Update(tnTableName) do 48 | begin 49 | AddValue(fnName, Item.Name); 50 | AddValue(fnDesc, Item.Desc); 51 | AddValue(fnDateCreate, Item.DateCreate); 52 | WhereFieldEqual(fnID, Item.ID); 53 | FDB.DB.ExecSQL(GetSQL); 54 | EndCreate; 55 | end; 56 | ``` 57 | **UPDATE BLOB** 58 | ```Delphi 59 | with SQL.UpdateBlob(tnTableName, fnImage) do 60 | begin 61 | WhereFieldEqual(fnID, Item.ID); 62 | Item.Image.SaveToStream(Mem); 63 | FDB.DB.UpdateBlob(GetSQL, Mem); 64 | Mem.Free; 65 | EndCreate; 66 | end; 67 | ``` 68 | **DELETE** 69 | ```Delphi 70 | with SQL.Delete(tnTableName) do 71 | begin 72 | WhereFieldEqual(fnID, Items[Index].ID); 73 | FDB.DB.ExecSQL(GetSQL); 74 | EndCreate; 75 | end; 76 | ``` 77 | **CREATE TABLE** 78 | ```Delphi 79 | with SQL.CreateTable(tnTableName) do 80 | begin 81 | AddField(fnID, ftInteger, True, True); 82 | AddField(fnName, ftString); 83 | AddField(fnDesc, ftString); 84 | AddField(fnDateCreate, ftDateTime); 85 | FDB.DB.ExecSQL(GetSQL); 86 | EndCreate; 87 | end; 88 | ``` 89 | 92 | -------------------------------------------------------------------------------- /Sample/SQLiteSample.Main.dfm: -------------------------------------------------------------------------------- 1 | object Form1: TForm1 2 | Left = 0 3 | Top = 0 4 | Caption = 'Form1' 5 | ClientHeight = 299 6 | ClientWidth = 635 7 | Color = clBtnFace 8 | Font.Charset = DEFAULT_CHARSET 9 | Font.Color = clWindowText 10 | Font.Height = -11 11 | Font.Name = 'Tahoma' 12 | Font.Style = [] 13 | OldCreateOrder = False 14 | OnCreate = FormCreate 15 | PixelsPerInch = 96 16 | TextHeight = 13 17 | object Memo1: TMemo 18 | Left = 8 19 | Top = 8 20 | Width = 619 21 | Height = 225 22 | Lines.Strings = ( 23 | 'Memo1') 24 | TabOrder = 0 25 | end 26 | end 27 | -------------------------------------------------------------------------------- /Sample/SQLiteSample.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/Sample/SQLiteSample.Main.pas -------------------------------------------------------------------------------- /Sample/SQLiteSample.dpr: -------------------------------------------------------------------------------- 1 | program SQLiteSample; 2 | 3 | uses 4 | Vcl.Forms, 5 | SQLiteSample.Main in 'SQLiteSample.Main.pas' {Form1}, 6 | HGM.SQLite in '..\HGM.SQLite.pas', 7 | HGM.SQLang in '..\HGM.SQLang.pas', 8 | HGM.SQLite.Wrapper in '..\HGM.SQLite.Wrapper.pas'; 9 | 10 | {$R *.res} 11 | 12 | begin 13 | Application.Initialize; 14 | ReportMemoryLeaksOnShutdown := True; 15 | Application.MainFormOnTaskbar := True; 16 | Application.CreateForm(TForm1, Form1); 17 | Application.Run; 18 | end. 19 | -------------------------------------------------------------------------------- /Sample/SQLiteSample.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | {97797EDE-2329-47CF-8074-D6F3CB8A80E3} 4 | 18.8 5 | VCL 6 | SQLiteSample.dpr 7 | True 8 | Debug 9 | Win32 10 | 1 11 | Application 12 | 13 | 14 | true 15 | 16 | 17 | true 18 | Base 19 | true 20 | 21 | 22 | true 23 | Base 24 | true 25 | 26 | 27 | true 28 | Base 29 | true 30 | 31 | 32 | true 33 | Cfg_1 34 | true 35 | true 36 | 37 | 38 | true 39 | Base 40 | true 41 | 42 | 43 | true 44 | Cfg_2 45 | true 46 | true 47 | 48 | 49 | .\$(Platform)\$(Config) 50 | .\$(Platform)\$(Config) 51 | false 52 | false 53 | false 54 | false 55 | false 56 | System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace) 57 | $(BDS)\bin\delphi_PROJECTICON.ico 58 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png 59 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png 60 | SQLiteSample 61 | 62 | 63 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;vcl;IndyIPServer;vclactnband;vclFireDAC;IndySystem;tethering;svnui;dsnapcon;FireDACADSDriver;FireDACMSAccDriver;fmxFireDAC;vclimg;GLScene_RT;FireDAC;vcltouch;vcldb;bindcompfmx;svn;FireDACSqliteDriver;FireDACPgDriver;inetdb;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;fmxdae;xmlrtl;soapmidas;fmxobj;vclwinx;rtl;DbxClientDriver;CustomIPTransport;vcldsnap;dbexpress;IndyCore;vclx;bindcomp;appanalytics;dsnap;FireDACCommon;IndyIPClient;GLScene_GPU_RT;bindcompvcl;dclusr;RESTBackendComponents;VCLRESTComponents;soapserver;dbxcds;VclSmp;adortl;FMXAudioHGM;vclie;bindengine;DBXMySQLDriver;CloudService;dsnapxml;FireDACMySQLDriver;dbrtl;IndyProtocols;inetdbxpress;FireDACCommonODBC;FireDACCommonDriver;inet;fmxase;$(DCC_UsePackage) 64 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 65 | Debug 66 | true 67 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= 68 | 1033 69 | $(BDS)\bin\default_app.manifest 70 | 71 | 72 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;vcl;IndyIPServer;vclactnband;vclFireDAC;IndySystem;tethering;dsnapcon;FireDACADSDriver;FireDACMSAccDriver;fmxFireDAC;vclimg;GLScene_RT;FireDAC;vcltouch;vcldb;bindcompfmx;FireDACSqliteDriver;FireDACPgDriver;inetdb;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;fmxdae;xmlrtl;soapmidas;fmxobj;vclwinx;rtl;DbxClientDriver;CustomIPTransport;vcldsnap;dbexpress;IndyCore;vclx;bindcomp;appanalytics;dsnap;FireDACCommon;IndyIPClient;GLScene_GPU_RT;bindcompvcl;RESTBackendComponents;VCLRESTComponents;soapserver;dbxcds;VclSmp;adortl;FMXAudioHGM;vclie;bindengine;DBXMySQLDriver;CloudService;dsnapxml;FireDACMySQLDriver;dbrtl;IndyProtocols;inetdbxpress;FireDACCommonODBC;FireDACCommonDriver;inet;fmxase;$(DCC_UsePackage) 73 | 74 | 75 | DEBUG;$(DCC_Define) 76 | true 77 | false 78 | true 79 | true 80 | true 81 | 82 | 83 | false 84 | true 85 | PerMonitorV2 86 | 87 | 88 | false 89 | RELEASE;$(DCC_Define) 90 | 0 91 | 0 92 | 93 | 94 | true 95 | PerMonitorV2 96 | 97 | 98 | 99 | MainSource 100 | 101 | 102 |
Form1
103 | dfm 104 |
105 | 106 | 107 | 108 | 109 | Cfg_2 110 | Base 111 | 112 | 113 | Base 114 | 115 | 116 | Cfg_1 117 | Base 118 | 119 |
120 | 121 | Delphi.Personality.12 122 | Application 123 | 124 | 125 | 126 | SQLiteSample.dpr 127 | 128 | 129 | 130 | 131 | 132 | SQLiteSample.exe 133 | true 134 | 135 | 136 | 137 | 138 | 1 139 | 140 | 141 | Contents\MacOS 142 | 1 143 | 144 | 145 | 0 146 | 147 | 148 | 149 | 150 | classes 151 | 1 152 | 153 | 154 | classes 155 | 1 156 | 157 | 158 | 159 | 160 | res\xml 161 | 1 162 | 163 | 164 | res\xml 165 | 1 166 | 167 | 168 | 169 | 170 | library\lib\armeabi-v7a 171 | 1 172 | 173 | 174 | 175 | 176 | library\lib\armeabi 177 | 1 178 | 179 | 180 | library\lib\armeabi 181 | 1 182 | 183 | 184 | 185 | 186 | library\lib\armeabi-v7a 187 | 1 188 | 189 | 190 | 191 | 192 | library\lib\mips 193 | 1 194 | 195 | 196 | library\lib\mips 197 | 1 198 | 199 | 200 | 201 | 202 | library\lib\armeabi-v7a 203 | 1 204 | 205 | 206 | library\lib\arm64-v8a 207 | 1 208 | 209 | 210 | 211 | 212 | library\lib\armeabi-v7a 213 | 1 214 | 215 | 216 | 217 | 218 | res\drawable 219 | 1 220 | 221 | 222 | res\drawable 223 | 1 224 | 225 | 226 | 227 | 228 | res\values 229 | 1 230 | 231 | 232 | res\values 233 | 1 234 | 235 | 236 | 237 | 238 | res\values-v21 239 | 1 240 | 241 | 242 | res\values-v21 243 | 1 244 | 245 | 246 | 247 | 248 | res\values 249 | 1 250 | 251 | 252 | res\values 253 | 1 254 | 255 | 256 | 257 | 258 | res\drawable 259 | 1 260 | 261 | 262 | res\drawable 263 | 1 264 | 265 | 266 | 267 | 268 | res\drawable-xxhdpi 269 | 1 270 | 271 | 272 | res\drawable-xxhdpi 273 | 1 274 | 275 | 276 | 277 | 278 | res\drawable-ldpi 279 | 1 280 | 281 | 282 | res\drawable-ldpi 283 | 1 284 | 285 | 286 | 287 | 288 | res\drawable-mdpi 289 | 1 290 | 291 | 292 | res\drawable-mdpi 293 | 1 294 | 295 | 296 | 297 | 298 | res\drawable-hdpi 299 | 1 300 | 301 | 302 | res\drawable-hdpi 303 | 1 304 | 305 | 306 | 307 | 308 | res\drawable-xhdpi 309 | 1 310 | 311 | 312 | res\drawable-xhdpi 313 | 1 314 | 315 | 316 | 317 | 318 | res\drawable-mdpi 319 | 1 320 | 321 | 322 | res\drawable-mdpi 323 | 1 324 | 325 | 326 | 327 | 328 | res\drawable-hdpi 329 | 1 330 | 331 | 332 | res\drawable-hdpi 333 | 1 334 | 335 | 336 | 337 | 338 | res\drawable-xhdpi 339 | 1 340 | 341 | 342 | res\drawable-xhdpi 343 | 1 344 | 345 | 346 | 347 | 348 | res\drawable-xxhdpi 349 | 1 350 | 351 | 352 | res\drawable-xxhdpi 353 | 1 354 | 355 | 356 | 357 | 358 | res\drawable-xxxhdpi 359 | 1 360 | 361 | 362 | res\drawable-xxxhdpi 363 | 1 364 | 365 | 366 | 367 | 368 | res\drawable-small 369 | 1 370 | 371 | 372 | res\drawable-small 373 | 1 374 | 375 | 376 | 377 | 378 | res\drawable-normal 379 | 1 380 | 381 | 382 | res\drawable-normal 383 | 1 384 | 385 | 386 | 387 | 388 | res\drawable-large 389 | 1 390 | 391 | 392 | res\drawable-large 393 | 1 394 | 395 | 396 | 397 | 398 | res\drawable-xlarge 399 | 1 400 | 401 | 402 | res\drawable-xlarge 403 | 1 404 | 405 | 406 | 407 | 408 | res\values 409 | 1 410 | 411 | 412 | res\values 413 | 1 414 | 415 | 416 | 417 | 418 | 1 419 | 420 | 421 | Contents\MacOS 422 | 1 423 | 424 | 425 | 0 426 | 427 | 428 | 429 | 430 | Contents\MacOS 431 | 1 432 | .framework 433 | 434 | 435 | Contents\MacOS 436 | 1 437 | .framework 438 | 439 | 440 | 0 441 | 442 | 443 | 444 | 445 | 1 446 | .dylib 447 | 448 | 449 | 1 450 | .dylib 451 | 452 | 453 | 1 454 | .dylib 455 | 456 | 457 | Contents\MacOS 458 | 1 459 | .dylib 460 | 461 | 462 | Contents\MacOS 463 | 1 464 | .dylib 465 | 466 | 467 | 0 468 | .dll;.bpl 469 | 470 | 471 | 472 | 473 | 1 474 | .dylib 475 | 476 | 477 | 1 478 | .dylib 479 | 480 | 481 | 1 482 | .dylib 483 | 484 | 485 | Contents\MacOS 486 | 1 487 | .dylib 488 | 489 | 490 | Contents\MacOS 491 | 1 492 | .dylib 493 | 494 | 495 | 0 496 | .bpl 497 | 498 | 499 | 500 | 501 | 0 502 | 503 | 504 | 0 505 | 506 | 507 | 0 508 | 509 | 510 | 0 511 | 512 | 513 | 0 514 | 515 | 516 | Contents\Resources\StartUp\ 517 | 0 518 | 519 | 520 | Contents\Resources\StartUp\ 521 | 0 522 | 523 | 524 | 0 525 | 526 | 527 | 528 | 529 | 1 530 | 531 | 532 | 1 533 | 534 | 535 | 1 536 | 537 | 538 | 539 | 540 | 1 541 | 542 | 543 | 1 544 | 545 | 546 | 1 547 | 548 | 549 | 550 | 551 | 1 552 | 553 | 554 | 1 555 | 556 | 557 | 1 558 | 559 | 560 | 561 | 562 | 1 563 | 564 | 565 | 1 566 | 567 | 568 | 1 569 | 570 | 571 | 572 | 573 | 1 574 | 575 | 576 | 1 577 | 578 | 579 | 1 580 | 581 | 582 | 583 | 584 | 1 585 | 586 | 587 | 1 588 | 589 | 590 | 1 591 | 592 | 593 | 594 | 595 | 1 596 | 597 | 598 | 1 599 | 600 | 601 | 1 602 | 603 | 604 | 605 | 606 | 1 607 | 608 | 609 | 1 610 | 611 | 612 | 1 613 | 614 | 615 | 616 | 617 | 1 618 | 619 | 620 | 1 621 | 622 | 623 | 1 624 | 625 | 626 | 627 | 628 | 1 629 | 630 | 631 | 1 632 | 633 | 634 | 1 635 | 636 | 637 | 638 | 639 | 1 640 | 641 | 642 | 1 643 | 644 | 645 | 1 646 | 647 | 648 | 649 | 650 | 1 651 | 652 | 653 | 1 654 | 655 | 656 | 1 657 | 658 | 659 | 660 | 661 | 1 662 | 663 | 664 | 1 665 | 666 | 667 | 1 668 | 669 | 670 | 671 | 672 | 1 673 | 674 | 675 | 1 676 | 677 | 678 | 1 679 | 680 | 681 | 682 | 683 | 1 684 | 685 | 686 | 1 687 | 688 | 689 | 1 690 | 691 | 692 | 693 | 694 | 1 695 | 696 | 697 | 1 698 | 699 | 700 | 1 701 | 702 | 703 | 704 | 705 | 1 706 | 707 | 708 | 1 709 | 710 | 711 | 1 712 | 713 | 714 | 715 | 716 | 1 717 | 718 | 719 | 1 720 | 721 | 722 | 1 723 | 724 | 725 | 726 | 727 | 1 728 | 729 | 730 | 1 731 | 732 | 733 | 1 734 | 735 | 736 | 737 | 738 | 1 739 | 740 | 741 | 1 742 | 743 | 744 | 1 745 | 746 | 747 | 748 | 749 | 1 750 | 751 | 752 | 1 753 | 754 | 755 | 1 756 | 757 | 758 | 759 | 760 | 1 761 | 762 | 763 | 1 764 | 765 | 766 | 1 767 | 768 | 769 | 770 | 771 | 1 772 | 773 | 774 | 1 775 | 776 | 777 | 1 778 | 779 | 780 | 781 | 782 | 1 783 | 784 | 785 | 1 786 | 787 | 788 | 1 789 | 790 | 791 | 792 | 793 | 1 794 | 795 | 796 | 1 797 | 798 | 799 | 800 | 801 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 802 | 1 803 | 804 | 805 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 806 | 1 807 | 808 | 809 | 810 | 811 | 1 812 | 813 | 814 | 1 815 | 816 | 817 | 818 | 819 | ..\ 820 | 1 821 | 822 | 823 | ..\ 824 | 1 825 | 826 | 827 | 828 | 829 | 1 830 | 831 | 832 | 1 833 | 834 | 835 | 1 836 | 837 | 838 | 839 | 840 | 1 841 | 842 | 843 | 1 844 | 845 | 846 | 1 847 | 848 | 849 | 850 | 851 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 852 | 1 853 | 854 | 855 | 856 | 857 | ..\ 858 | 1 859 | 860 | 861 | ..\ 862 | 1 863 | 864 | 865 | 866 | 867 | Contents 868 | 1 869 | 870 | 871 | Contents 872 | 1 873 | 874 | 875 | 876 | 877 | Contents\Resources 878 | 1 879 | 880 | 881 | Contents\Resources 882 | 1 883 | 884 | 885 | 886 | 887 | library\lib\armeabi-v7a 888 | 1 889 | 890 | 891 | library\lib\arm64-v8a 892 | 1 893 | 894 | 895 | 1 896 | 897 | 898 | 1 899 | 900 | 901 | 1 902 | 903 | 904 | 1 905 | 906 | 907 | Contents\MacOS 908 | 1 909 | 910 | 911 | Contents\MacOS 912 | 1 913 | 914 | 915 | 0 916 | 917 | 918 | 919 | 920 | library\lib\armeabi-v7a 921 | 1 922 | 923 | 924 | 925 | 926 | 1 927 | 928 | 929 | 1 930 | 931 | 932 | 933 | 934 | Assets 935 | 1 936 | 937 | 938 | Assets 939 | 1 940 | 941 | 942 | 943 | 944 | Assets 945 | 1 946 | 947 | 948 | Assets 949 | 1 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | True 965 | False 966 | 967 | 968 | 12 969 | 970 | 971 | 972 | 973 |
974 | -------------------------------------------------------------------------------- /Sample/SQLiteSample.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/Sample/SQLiteSample.res -------------------------------------------------------------------------------- /Sample/Win32/Debug/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/Sample/Win32/Debug/data.db -------------------------------------------------------------------------------- /Sample/Win32/Debug/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/Sample/Win32/Debug/libeay32.dll -------------------------------------------------------------------------------- /Sample/Win32/Debug/sqlite3ex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/Sample/Win32/Debug/sqlite3ex.dll -------------------------------------------------------------------------------- /SampleConsole/SQLiteSampleConsole.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/SampleConsole/SQLiteSampleConsole.dpr -------------------------------------------------------------------------------- /SampleConsole/SQLiteSampleConsole.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | {5156CAA8-CDC9-43B6-877C-CBA27A3E569E} 4 | 18.8 5 | None 6 | SQLiteSampleConsole.dpr 7 | True 8 | Debug 9 | Win32 10 | 1 11 | Console 12 | 13 | 14 | true 15 | 16 | 17 | true 18 | Base 19 | true 20 | 21 | 22 | true 23 | Base 24 | true 25 | 26 | 27 | true 28 | Base 29 | true 30 | 31 | 32 | true 33 | Base 34 | true 35 | 36 | 37 | true 38 | Base 39 | true 40 | 41 | 42 | true 43 | Cfg_1 44 | true 45 | true 46 | 47 | 48 | true 49 | Base 50 | true 51 | 52 | 53 | .\$(Platform)\$(Config) 54 | .\$(Platform)\$(Config) 55 | false 56 | false 57 | false 58 | false 59 | false 60 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 61 | SQLiteSampleConsole 62 | 63 | 64 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;IndyIPServer;IndySystem;tethering;fmxFireDAC;FireDAC;bindcompfmx;FireDACSqliteDriver;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;xmlrtl;soapmidas;rtl;DbxClientDriver;CustomIPTransport;dbexpress;IndyCore;bindcomp;dsnap;FireDACCommon;IndyIPClient;RESTBackendComponents;soapserver;dbxcds;FMXAudioHGM;bindengine;CloudService;dsnapxml;dbrtl;IndyProtocols;FireDACCommonDriver;inet;$(DCC_UsePackage) 65 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png 66 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png 67 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png 68 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png 69 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png 70 | $(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png 71 | $(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png 72 | $(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png 73 | $(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png 74 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_24x24.png 75 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_36x36.png 76 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_48x48.png 77 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_72x72.png 78 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_96x96.png 79 | android-support-v4.dex.jar;cloud-messaging.dex.jar;com-google-android-gms.play-services-ads-base.17.2.0.dex.jar;com-google-android-gms.play-services-ads-identifier.16.0.0.dex.jar;com-google-android-gms.play-services-ads-lite.17.2.0.dex.jar;com-google-android-gms.play-services-ads.17.2.0.dex.jar;com-google-android-gms.play-services-analytics-impl.16.0.8.dex.jar;com-google-android-gms.play-services-analytics.16.0.8.dex.jar;com-google-android-gms.play-services-base.16.0.1.dex.jar;com-google-android-gms.play-services-basement.16.2.0.dex.jar;com-google-android-gms.play-services-gass.17.2.0.dex.jar;com-google-android-gms.play-services-identity.16.0.0.dex.jar;com-google-android-gms.play-services-maps.16.1.0.dex.jar;com-google-android-gms.play-services-measurement-base.16.4.0.dex.jar;com-google-android-gms.play-services-measurement-sdk-api.16.4.0.dex.jar;com-google-android-gms.play-services-stats.16.0.1.dex.jar;com-google-android-gms.play-services-tagmanager-v4-impl.16.0.8.dex.jar;com-google-android-gms.play-services-tasks.16.0.1.dex.jar;com-google-android-gms.play-services-wallet.16.0.1.dex.jar;com-google-firebase.firebase-analytics.16.4.0.dex.jar;com-google-firebase.firebase-common.16.1.0.dex.jar;com-google-firebase.firebase-iid-interop.16.0.1.dex.jar;com-google-firebase.firebase-iid.17.1.1.dex.jar;com-google-firebase.firebase-measurement-connector.17.0.1.dex.jar;com-google-firebase.firebase-messaging.17.5.0.dex.jar;fmx.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar 80 | 81 | 82 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;IndyIPServer;IndySystem;tethering;fmxFireDAC;FireDAC;bindcompfmx;FireDACSqliteDriver;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;xmlrtl;soapmidas;rtl;DbxClientDriver;CustomIPTransport;dbexpress;IndyCore;bindcomp;dsnap;FireDACCommon;IndyIPClient;dclusr;RESTBackendComponents;soapserver;dbxcds;FMXAudioHGM;bindengine;CloudService;dsnapxml;dbrtl;IndyProtocols;FireDACCommonDriver;inet;$(DCC_UsePackage) 83 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png 84 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png 85 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png 86 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png 87 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png 88 | $(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png 89 | $(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png 90 | $(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png 91 | $(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png 92 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_24x24.png 93 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_36x36.png 94 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_48x48.png 95 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_72x72.png 96 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_96x96.png 97 | android-support-v4.dex.jar;cloud-messaging.dex.jar;com-google-android-gms.play-services-ads-base.17.2.0.dex.jar;com-google-android-gms.play-services-ads-identifier.16.0.0.dex.jar;com-google-android-gms.play-services-ads-lite.17.2.0.dex.jar;com-google-android-gms.play-services-ads.17.2.0.dex.jar;com-google-android-gms.play-services-analytics-impl.16.0.8.dex.jar;com-google-android-gms.play-services-analytics.16.0.8.dex.jar;com-google-android-gms.play-services-base.16.0.1.dex.jar;com-google-android-gms.play-services-basement.16.2.0.dex.jar;com-google-android-gms.play-services-gass.17.2.0.dex.jar;com-google-android-gms.play-services-identity.16.0.0.dex.jar;com-google-android-gms.play-services-maps.16.1.0.dex.jar;com-google-android-gms.play-services-measurement-base.16.4.0.dex.jar;com-google-android-gms.play-services-measurement-sdk-api.16.4.0.dex.jar;com-google-android-gms.play-services-stats.16.0.1.dex.jar;com-google-android-gms.play-services-tagmanager-v4-impl.16.0.8.dex.jar;com-google-android-gms.play-services-tasks.16.0.1.dex.jar;com-google-android-gms.play-services-wallet.16.0.1.dex.jar;com-google-firebase.firebase-analytics.16.4.0.dex.jar;com-google-firebase.firebase-common.16.1.0.dex.jar;com-google-firebase.firebase-iid-interop.16.0.1.dex.jar;com-google-firebase.firebase-iid.17.1.1.dex.jar;com-google-firebase.firebase-measurement-connector.17.0.1.dex.jar;com-google-firebase.firebase-messaging.17.5.0.dex.jar;fmx.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar 98 | 99 | 100 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;vcl;IndyIPServer;vclactnband;vclFireDAC;IndySystem;tethering;svnui;dsnapcon;FireDACADSDriver;FireDACMSAccDriver;fmxFireDAC;vclimg;GLScene_RT;FireDAC;vcltouch;vcldb;bindcompfmx;svn;FireDACSqliteDriver;FireDACPgDriver;inetdb;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;fmxdae;xmlrtl;soapmidas;fmxobj;vclwinx;rtl;DbxClientDriver;CustomIPTransport;vcldsnap;dbexpress;IndyCore;vclx;bindcomp;appanalytics;dsnap;FireDACCommon;IndyIPClient;GLScene_GPU_RT;bindcompvcl;dclusr;RESTBackendComponents;VCLRESTComponents;soapserver;dbxcds;VclSmp;adortl;FMXAudioHGM;vclie;bindengine;DBXMySQLDriver;CloudService;dsnapxml;FireDACMySQLDriver;dbrtl;IndyProtocols;inetdbxpress;FireDACCommonODBC;FireDACCommonDriver;inet;fmxase;$(DCC_UsePackage) 101 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 102 | Debug 103 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= 104 | 1033 105 | true 106 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png 107 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png 108 | 109 | 110 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;vcl;IndyIPServer;vclactnband;vclFireDAC;IndySystem;tethering;dsnapcon;FireDACADSDriver;FireDACMSAccDriver;fmxFireDAC;vclimg;GLScene_RT;FireDAC;vcltouch;vcldb;bindcompfmx;FireDACSqliteDriver;FireDACPgDriver;inetdb;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;fmxdae;xmlrtl;soapmidas;fmxobj;vclwinx;rtl;DbxClientDriver;CustomIPTransport;vcldsnap;dbexpress;IndyCore;vclx;bindcomp;appanalytics;dsnap;FireDACCommon;IndyIPClient;GLScene_GPU_RT;bindcompvcl;RESTBackendComponents;VCLRESTComponents;soapserver;dbxcds;VclSmp;adortl;FMXAudioHGM;vclie;bindengine;DBXMySQLDriver;CloudService;dsnapxml;FireDACMySQLDriver;dbrtl;IndyProtocols;inetdbxpress;FireDACCommonODBC;FireDACCommonDriver;inet;fmxase;$(DCC_UsePackage) 111 | true 112 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png 113 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png 114 | 115 | 116 | DEBUG;$(DCC_Define) 117 | true 118 | false 119 | true 120 | true 121 | true 122 | 123 | 124 | false 125 | 126 | 127 | false 128 | RELEASE;$(DCC_Define) 129 | 0 130 | 0 131 | 132 | 133 | 134 | MainSource 135 | 136 | 137 | 138 | 139 | Cfg_2 140 | Base 141 | 142 | 143 | Base 144 | 145 | 146 | Cfg_1 147 | Base 148 | 149 | 150 | 151 | Delphi.Personality.12 152 | Application 153 | 154 | 155 | 156 | SQLiteSampleConsole.dpr 157 | 158 | 159 | 160 | 161 | 162 | true 163 | 164 | 165 | 166 | 167 | true 168 | 169 | 170 | 171 | 172 | true 173 | 174 | 175 | 176 | 177 | SQLiteSampleConsole.exe 178 | true 179 | 180 | 181 | 182 | 183 | 1 184 | 185 | 186 | Contents\MacOS 187 | 1 188 | 189 | 190 | 0 191 | 192 | 193 | 194 | 195 | classes 196 | 1 197 | 198 | 199 | classes 200 | 1 201 | 202 | 203 | 204 | 205 | res\xml 206 | 1 207 | 208 | 209 | res\xml 210 | 1 211 | 212 | 213 | 214 | 215 | library\lib\armeabi-v7a 216 | 1 217 | 218 | 219 | 220 | 221 | library\lib\armeabi 222 | 1 223 | 224 | 225 | library\lib\armeabi 226 | 1 227 | 228 | 229 | 230 | 231 | library\lib\armeabi-v7a 232 | 1 233 | 234 | 235 | 236 | 237 | library\lib\mips 238 | 1 239 | 240 | 241 | library\lib\mips 242 | 1 243 | 244 | 245 | 246 | 247 | library\lib\armeabi-v7a 248 | 1 249 | 250 | 251 | library\lib\arm64-v8a 252 | 1 253 | 254 | 255 | 256 | 257 | library\lib\armeabi-v7a 258 | 1 259 | 260 | 261 | 262 | 263 | res\drawable 264 | 1 265 | 266 | 267 | res\drawable 268 | 1 269 | 270 | 271 | 272 | 273 | res\values 274 | 1 275 | 276 | 277 | res\values 278 | 1 279 | 280 | 281 | 282 | 283 | res\values-v21 284 | 1 285 | 286 | 287 | res\values-v21 288 | 1 289 | 290 | 291 | 292 | 293 | res\values 294 | 1 295 | 296 | 297 | res\values 298 | 1 299 | 300 | 301 | 302 | 303 | res\drawable 304 | 1 305 | 306 | 307 | res\drawable 308 | 1 309 | 310 | 311 | 312 | 313 | res\drawable-xxhdpi 314 | 1 315 | 316 | 317 | res\drawable-xxhdpi 318 | 1 319 | 320 | 321 | 322 | 323 | res\drawable-ldpi 324 | 1 325 | 326 | 327 | res\drawable-ldpi 328 | 1 329 | 330 | 331 | 332 | 333 | res\drawable-mdpi 334 | 1 335 | 336 | 337 | res\drawable-mdpi 338 | 1 339 | 340 | 341 | 342 | 343 | res\drawable-hdpi 344 | 1 345 | 346 | 347 | res\drawable-hdpi 348 | 1 349 | 350 | 351 | 352 | 353 | res\drawable-xhdpi 354 | 1 355 | 356 | 357 | res\drawable-xhdpi 358 | 1 359 | 360 | 361 | 362 | 363 | res\drawable-mdpi 364 | 1 365 | 366 | 367 | res\drawable-mdpi 368 | 1 369 | 370 | 371 | 372 | 373 | res\drawable-hdpi 374 | 1 375 | 376 | 377 | res\drawable-hdpi 378 | 1 379 | 380 | 381 | 382 | 383 | res\drawable-xhdpi 384 | 1 385 | 386 | 387 | res\drawable-xhdpi 388 | 1 389 | 390 | 391 | 392 | 393 | res\drawable-xxhdpi 394 | 1 395 | 396 | 397 | res\drawable-xxhdpi 398 | 1 399 | 400 | 401 | 402 | 403 | res\drawable-xxxhdpi 404 | 1 405 | 406 | 407 | res\drawable-xxxhdpi 408 | 1 409 | 410 | 411 | 412 | 413 | res\drawable-small 414 | 1 415 | 416 | 417 | res\drawable-small 418 | 1 419 | 420 | 421 | 422 | 423 | res\drawable-normal 424 | 1 425 | 426 | 427 | res\drawable-normal 428 | 1 429 | 430 | 431 | 432 | 433 | res\drawable-large 434 | 1 435 | 436 | 437 | res\drawable-large 438 | 1 439 | 440 | 441 | 442 | 443 | res\drawable-xlarge 444 | 1 445 | 446 | 447 | res\drawable-xlarge 448 | 1 449 | 450 | 451 | 452 | 453 | res\values 454 | 1 455 | 456 | 457 | res\values 458 | 1 459 | 460 | 461 | 462 | 463 | 1 464 | 465 | 466 | Contents\MacOS 467 | 1 468 | 469 | 470 | 0 471 | 472 | 473 | 474 | 475 | Contents\MacOS 476 | 1 477 | .framework 478 | 479 | 480 | Contents\MacOS 481 | 1 482 | .framework 483 | 484 | 485 | 0 486 | 487 | 488 | 489 | 490 | 1 491 | .dylib 492 | 493 | 494 | 1 495 | .dylib 496 | 497 | 498 | 1 499 | .dylib 500 | 501 | 502 | Contents\MacOS 503 | 1 504 | .dylib 505 | 506 | 507 | Contents\MacOS 508 | 1 509 | .dylib 510 | 511 | 512 | 0 513 | .dll;.bpl 514 | 515 | 516 | 517 | 518 | 1 519 | .dylib 520 | 521 | 522 | 1 523 | .dylib 524 | 525 | 526 | 1 527 | .dylib 528 | 529 | 530 | Contents\MacOS 531 | 1 532 | .dylib 533 | 534 | 535 | Contents\MacOS 536 | 1 537 | .dylib 538 | 539 | 540 | 0 541 | .bpl 542 | 543 | 544 | 545 | 546 | 0 547 | 548 | 549 | 0 550 | 551 | 552 | 0 553 | 554 | 555 | 0 556 | 557 | 558 | 0 559 | 560 | 561 | Contents\Resources\StartUp\ 562 | 0 563 | 564 | 565 | Contents\Resources\StartUp\ 566 | 0 567 | 568 | 569 | 0 570 | 571 | 572 | 573 | 574 | 1 575 | 576 | 577 | 1 578 | 579 | 580 | 1 581 | 582 | 583 | 584 | 585 | 1 586 | 587 | 588 | 1 589 | 590 | 591 | 1 592 | 593 | 594 | 595 | 596 | 1 597 | 598 | 599 | 1 600 | 601 | 602 | 1 603 | 604 | 605 | 606 | 607 | 1 608 | 609 | 610 | 1 611 | 612 | 613 | 1 614 | 615 | 616 | 617 | 618 | 1 619 | 620 | 621 | 1 622 | 623 | 624 | 1 625 | 626 | 627 | 628 | 629 | 1 630 | 631 | 632 | 1 633 | 634 | 635 | 1 636 | 637 | 638 | 639 | 640 | 1 641 | 642 | 643 | 1 644 | 645 | 646 | 1 647 | 648 | 649 | 650 | 651 | 1 652 | 653 | 654 | 1 655 | 656 | 657 | 1 658 | 659 | 660 | 661 | 662 | 1 663 | 664 | 665 | 1 666 | 667 | 668 | 1 669 | 670 | 671 | 672 | 673 | 1 674 | 675 | 676 | 1 677 | 678 | 679 | 1 680 | 681 | 682 | 683 | 684 | 1 685 | 686 | 687 | 1 688 | 689 | 690 | 1 691 | 692 | 693 | 694 | 695 | 1 696 | 697 | 698 | 1 699 | 700 | 701 | 1 702 | 703 | 704 | 705 | 706 | 1 707 | 708 | 709 | 1 710 | 711 | 712 | 1 713 | 714 | 715 | 716 | 717 | 1 718 | 719 | 720 | 1 721 | 722 | 723 | 1 724 | 725 | 726 | 727 | 728 | 1 729 | 730 | 731 | 1 732 | 733 | 734 | 1 735 | 736 | 737 | 738 | 739 | 1 740 | 741 | 742 | 1 743 | 744 | 745 | 1 746 | 747 | 748 | 749 | 750 | 1 751 | 752 | 753 | 1 754 | 755 | 756 | 1 757 | 758 | 759 | 760 | 761 | 1 762 | 763 | 764 | 1 765 | 766 | 767 | 1 768 | 769 | 770 | 771 | 772 | 1 773 | 774 | 775 | 1 776 | 777 | 778 | 1 779 | 780 | 781 | 782 | 783 | 1 784 | 785 | 786 | 1 787 | 788 | 789 | 1 790 | 791 | 792 | 793 | 794 | 1 795 | 796 | 797 | 1 798 | 799 | 800 | 1 801 | 802 | 803 | 804 | 805 | 1 806 | 807 | 808 | 1 809 | 810 | 811 | 1 812 | 813 | 814 | 815 | 816 | 1 817 | 818 | 819 | 1 820 | 821 | 822 | 1 823 | 824 | 825 | 826 | 827 | 1 828 | 829 | 830 | 1 831 | 832 | 833 | 1 834 | 835 | 836 | 837 | 838 | 1 839 | 840 | 841 | 1 842 | 843 | 844 | 845 | 846 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 847 | 1 848 | 849 | 850 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 851 | 1 852 | 853 | 854 | 855 | 856 | 1 857 | 858 | 859 | 1 860 | 861 | 862 | 863 | 864 | ..\ 865 | 1 866 | 867 | 868 | ..\ 869 | 1 870 | 871 | 872 | 873 | 874 | 1 875 | 876 | 877 | 1 878 | 879 | 880 | 1 881 | 882 | 883 | 884 | 885 | 1 886 | 887 | 888 | 1 889 | 890 | 891 | 1 892 | 893 | 894 | 895 | 896 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 897 | 1 898 | 899 | 900 | 901 | 902 | ..\ 903 | 1 904 | 905 | 906 | ..\ 907 | 1 908 | 909 | 910 | 911 | 912 | Contents 913 | 1 914 | 915 | 916 | Contents 917 | 1 918 | 919 | 920 | 921 | 922 | Contents\Resources 923 | 1 924 | 925 | 926 | Contents\Resources 927 | 1 928 | 929 | 930 | 931 | 932 | library\lib\armeabi-v7a 933 | 1 934 | 935 | 936 | library\lib\arm64-v8a 937 | 1 938 | 939 | 940 | 1 941 | 942 | 943 | 1 944 | 945 | 946 | 1 947 | 948 | 949 | 1 950 | 951 | 952 | Contents\MacOS 953 | 1 954 | 955 | 956 | Contents\MacOS 957 | 1 958 | 959 | 960 | 0 961 | 962 | 963 | 964 | 965 | library\lib\armeabi-v7a 966 | 1 967 | 968 | 969 | 970 | 971 | 1 972 | 973 | 974 | 1 975 | 976 | 977 | 978 | 979 | Assets 980 | 1 981 | 982 | 983 | Assets 984 | 1 985 | 986 | 987 | 988 | 989 | Assets 990 | 1 991 | 992 | 993 | Assets 994 | 1 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | False 1010 | False 1011 | True 1012 | False 1013 | 1014 | 1015 | 12 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | -------------------------------------------------------------------------------- /SampleConsole/SQLiteSampleConsole.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/SampleConsole/SQLiteSampleConsole.res -------------------------------------------------------------------------------- /SampleFMX/Android/Debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 36 | 40 | 41 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /SampleFMX/Android/Debug/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/SampleFMX/Android/Debug/classes.dex -------------------------------------------------------------------------------- /SampleFMX/Android/Debug/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /SampleFMX/Android/Debug/splash_image_def.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /SampleFMX/Android/Debug/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /SampleFMX/Android/Debug/styles-v21.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /SampleFMX/Android/Debug/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /SampleFMX/AndroidManifest.template.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | <%uses-permission%> 11 | 12 | 21 | 22 | <%provider%> 23 | <%application-meta-data%> 24 | <%uses-libraries%> 25 | <%services%> 26 | 28 | 32 | 33 | 35 | 36 | 37 | 38 | 39 | 40 | <%activity%> 41 | <%receivers%> 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /SampleFMX/SQLiteFMX.Main.fmx: -------------------------------------------------------------------------------- 1 | object Form2: TForm2 2 | Left = 0 3 | Top = 0 4 | Caption = 'Form2' 5 | ClientHeight = 480 6 | ClientWidth = 640 7 | FormFactor.Width = 320 8 | FormFactor.Height = 480 9 | FormFactor.Devices = [Desktop] 10 | OnCreate = FormCreate 11 | DesignerMasterStyle = 0 12 | object Memo1: TMemo 13 | Touch.InteractiveGestures = [Pan, LongTap, DoubleTap] 14 | DataDetectorTypes = [] 15 | Position.X = 8.000000000000000000 16 | Position.Y = 8.000000000000000000 17 | Size.Width = 625.000000000000000000 18 | Size.Height = 193.000000000000000000 19 | Size.PlatformDefault = False 20 | TabOrder = 0 21 | Viewport.Width = 621.000000000000000000 22 | Viewport.Height = 189.000000000000000000 23 | end 24 | end 25 | -------------------------------------------------------------------------------- /SampleFMX/SQLiteFMX.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/SampleFMX/SQLiteFMX.Main.pas -------------------------------------------------------------------------------- /SampleFMX/SQLiteFMX.dpr: -------------------------------------------------------------------------------- 1 | program SQLiteFMX; 2 | 3 | uses 4 | System.StartUpCopy, 5 | FMX.Forms, 6 | SQLiteFMX.Main in 'SQLiteFMX.Main.pas' {Form2}, 7 | HGM.SQLite in '..\HGM.SQLite.pas', 8 | HGM.SQLite.Wrapper in '..\HGM.SQLite.Wrapper.pas', 9 | HGM.SQLang in '..\HGM.SQLang.pas'; 10 | 11 | {$R *.res} 12 | 13 | begin 14 | Application.Initialize; 15 | Application.CreateForm(TForm2, Form2); 16 | Application.Run; 17 | end. 18 | -------------------------------------------------------------------------------- /SampleFMX/SQLiteFMX.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | {F20703D4-F6E7-4452-993B-2BDB0191B3F2} 4 | 19.2 5 | FMX 6 | SQLiteFMX.dpr 7 | True 8 | Debug 9 | Win32 10 | 32787 11 | Application 12 | 13 | 14 | true 15 | 16 | 17 | true 18 | Base 19 | true 20 | 21 | 22 | true 23 | Base 24 | true 25 | 26 | 27 | true 28 | Base 29 | true 30 | 31 | 32 | true 33 | Base 34 | true 35 | 36 | 37 | true 38 | Base 39 | true 40 | 41 | 42 | true 43 | Base 44 | true 45 | 46 | 47 | true 48 | Base 49 | true 50 | 51 | 52 | true 53 | Cfg_1 54 | true 55 | true 56 | 57 | 58 | true 59 | Cfg_1 60 | true 61 | true 62 | 63 | 64 | true 65 | Base 66 | true 67 | 68 | 69 | true 70 | Cfg_2 71 | true 72 | true 73 | 74 | 75 | true 76 | Cfg_2 77 | true 78 | true 79 | 80 | 81 | .\$(Platform)\$(Config) 82 | .\$(Platform)\$(Config) 83 | false 84 | false 85 | false 86 | false 87 | false 88 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 89 | true 90 | true 91 | true 92 | true 93 | true 94 | true 95 | true 96 | true 97 | $(BDS)\bin\delphi_PROJECTICON.ico 98 | $(BDS)\bin\delphi_PROJECTICNS.icns 99 | SQLiteFMX 100 | 101 | 102 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;IndyIPServer;IndySystem;tethering;fmxFireDAC;FireDAC;bindcompfmx;FireDACSqliteDriver;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;xmlrtl;soapmidas;rtl;DbxClientDriver;CustomIPTransport;dbexpress;IndyCore;bindcomp;dsnap;FireDACCommon;IndyIPClient;RESTBackendComponents;soapserver;dbxcds;FMXAudioHGM;bindengine;CloudService;dsnapxml;dbrtl;IndyProtocols;FireDACCommonDriver;inet;$(DCC_UsePackage) 103 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 104 | Debug 105 | true 106 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png 107 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png 108 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png 109 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png 110 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png 111 | $(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png 112 | $(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png 113 | $(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png 114 | $(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png 115 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_24x24.png 116 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_36x36.png 117 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_48x48.png 118 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_72x72.png 119 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_96x96.png 120 | android-support-v4.dex.jar;cloud-messaging.dex.jar;com-google-android-gms.play-services-ads-base.17.2.0.dex.jar;com-google-android-gms.play-services-ads-identifier.16.0.0.dex.jar;com-google-android-gms.play-services-ads-lite.17.2.0.dex.jar;com-google-android-gms.play-services-ads.17.2.0.dex.jar;com-google-android-gms.play-services-analytics-impl.16.0.8.dex.jar;com-google-android-gms.play-services-analytics.16.0.8.dex.jar;com-google-android-gms.play-services-base.16.0.1.dex.jar;com-google-android-gms.play-services-basement.16.2.0.dex.jar;com-google-android-gms.play-services-gass.17.2.0.dex.jar;com-google-android-gms.play-services-identity.16.0.0.dex.jar;com-google-android-gms.play-services-maps.16.1.0.dex.jar;com-google-android-gms.play-services-measurement-base.16.4.0.dex.jar;com-google-android-gms.play-services-measurement-sdk-api.16.4.0.dex.jar;com-google-android-gms.play-services-stats.16.0.1.dex.jar;com-google-android-gms.play-services-tagmanager-v4-impl.16.0.8.dex.jar;com-google-android-gms.play-services-tasks.16.0.1.dex.jar;com-google-android-gms.play-services-wallet.16.0.1.dex.jar;com-google-firebase.firebase-analytics.16.4.0.dex.jar;com-google-firebase.firebase-common.16.1.0.dex.jar;com-google-firebase.firebase-iid-interop.16.0.1.dex.jar;com-google-firebase.firebase-iid.17.1.1.dex.jar;com-google-firebase.firebase-measurement-connector.17.0.1.dex.jar;com-google-firebase.firebase-messaging.17.5.0.dex.jar;fmx.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar 121 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_192x192.png 122 | 123 | 124 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;IndyIPServer;IndySystem;tethering;fmxFireDAC;FireDAC;bindcompfmx;FireDACSqliteDriver;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;xmlrtl;soapmidas;rtl;DbxClientDriver;CustomIPTransport;dbexpress;IndyCore;bindcomp;dsnap;FireDACCommon;IndyIPClient;dclusr;RESTBackendComponents;soapserver;dbxcds;FMXAudioHGM;bindengine;CloudService;dsnapxml;dbrtl;IndyProtocols;FireDACCommonDriver;inet;$(DCC_UsePackage) 125 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 126 | Debug 127 | true 128 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png 129 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png 130 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png 131 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png 132 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png 133 | $(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png 134 | $(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png 135 | $(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png 136 | $(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png 137 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_24x24.png 138 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_36x36.png 139 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_48x48.png 140 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_72x72.png 141 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_96x96.png 142 | android-support-v4.dex.jar;cloud-messaging.dex.jar;com-google-android-gms.play-services-ads-base.17.2.0.dex.jar;com-google-android-gms.play-services-ads-identifier.16.0.0.dex.jar;com-google-android-gms.play-services-ads-lite.17.2.0.dex.jar;com-google-android-gms.play-services-ads.17.2.0.dex.jar;com-google-android-gms.play-services-analytics-impl.16.0.8.dex.jar;com-google-android-gms.play-services-analytics.16.0.8.dex.jar;com-google-android-gms.play-services-base.16.0.1.dex.jar;com-google-android-gms.play-services-basement.16.2.0.dex.jar;com-google-android-gms.play-services-gass.17.2.0.dex.jar;com-google-android-gms.play-services-identity.16.0.0.dex.jar;com-google-android-gms.play-services-maps.16.1.0.dex.jar;com-google-android-gms.play-services-measurement-base.16.4.0.dex.jar;com-google-android-gms.play-services-measurement-sdk-api.16.4.0.dex.jar;com-google-android-gms.play-services-stats.16.0.1.dex.jar;com-google-android-gms.play-services-tagmanager-v4-impl.16.0.8.dex.jar;com-google-android-gms.play-services-tasks.16.0.1.dex.jar;com-google-android-gms.play-services-wallet.16.0.1.dex.jar;com-google-firebase.firebase-analytics.16.4.0.dex.jar;com-google-firebase.firebase-common.16.1.0.dex.jar;com-google-firebase.firebase-iid-interop.16.0.1.dex.jar;com-google-firebase.firebase-iid.17.1.1.dex.jar;com-google-firebase.firebase-measurement-connector.17.0.1.dex.jar;com-google-firebase.firebase-messaging.17.5.0.dex.jar;fmx.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar 143 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_192x192.png 144 | 145 | 146 | $(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2x.png 147 | $(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImageDark_2x.png 148 | $(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_3x.png 149 | $(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImageDark_3x.png 150 | $(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImage_2x.png 151 | $(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageDark_2x.png 152 | $(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_1024x1024.png 153 | CFBundleName=$(MSBuildProjectName);CFBundleDevelopmentRegion=en;CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleInfoDictionaryVersion=7.1;CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;LSRequiresIPhoneOS=true;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);UIDeviceFamily=iPhone & iPad;NSLocationAlwaysUsageDescription=The reason for accessing the location information of the user;NSLocationWhenInUseUsageDescription=The reason for accessing the location information of the user;NSLocationAlwaysAndWhenInUseUsageDescription=The reason for accessing the location information of the user;UIBackgroundModes=;NSContactsUsageDescription=The reason for accessing the contacts;NSPhotoLibraryUsageDescription=The reason for accessing the photo library;NSPhotoLibraryAddUsageDescription=The reason for adding to the photo library;NSCameraUsageDescription=The reason for accessing the camera;NSFaceIDUsageDescription=The reason for accessing the face id;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSSiriUsageDescription=The reason for accessing Siri;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing bluetooth;NSBluetoothPeripheralUsageDescription=The reason for accessing bluetooth peripherals;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSMotionUsageDescription=The reason for accessing the accelerometer;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers 154 | iPhoneAndiPad 155 | true 156 | Debug 157 | $(MSBuildProjectName) 158 | $(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_120x120.png 159 | $(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_180x180.png 160 | $(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_80x80.png 161 | $(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_120x120.png 162 | $(BDS)\bin\Artwork\iOS\iPhone\FM_SettingIcon_58x58.png 163 | $(BDS)\bin\Artwork\iOS\iPhone\FM_SettingIcon_87x87.png 164 | $(BDS)\bin\Artwork\iOS\iPhone\FM_NotificationIcon_40x40.png 165 | $(BDS)\bin\Artwork\iOS\iPhone\FM_NotificationIcon_60x60.png 166 | $(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_152x152.png 167 | $(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_167x167.png 168 | $(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_80x80.png 169 | $(BDS)\bin\Artwork\iOS\iPad\FM_SettingIcon_58x58.png 170 | $(BDS)\bin\Artwork\iOS\iPad\FM_NotificationIcon_40x40.png 171 | 172 | 173 | $(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2x.png 174 | $(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImageDark_2x.png 175 | $(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_3x.png 176 | $(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImageDark_3x.png 177 | $(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImage_2x.png 178 | $(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageDark_2x.png 179 | 10.0 180 | CFBundleName=$(MSBuildProjectName);CFBundleDevelopmentRegion=en;CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleInfoDictionaryVersion=7.1;CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;LSRequiresIPhoneOS=true;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);UIDeviceFamily=iPhone & iPad;NSLocationAlwaysUsageDescription=The reason for accessing the location information of the user;NSLocationWhenInUseUsageDescription=The reason for accessing the location information of the user;NSLocationAlwaysAndWhenInUseUsageDescription=The reason for accessing the location information of the user;UIBackgroundModes=;NSContactsUsageDescription=The reason for accessing the contacts;NSPhotoLibraryUsageDescription=The reason for accessing the photo library;NSPhotoLibraryAddUsageDescription=The reason for adding to the photo library;NSCameraUsageDescription=The reason for accessing the camera;NSFaceIDUsageDescription=The reason for accessing the face id;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSSiriUsageDescription=The reason for accessing Siri;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing bluetooth;NSBluetoothPeripheralUsageDescription=The reason for accessing bluetooth peripherals;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSMotionUsageDescription=The reason for accessing the accelerometer;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers 181 | iPhoneAndiPad 182 | true 183 | $(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_1024x1024.png 184 | $(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_120x120.png 185 | $(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_180x180.png 186 | $(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_80x80.png 187 | $(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_120x120.png 188 | $(BDS)\bin\Artwork\iOS\iPhone\FM_SettingIcon_58x58.png 189 | $(BDS)\bin\Artwork\iOS\iPhone\FM_SettingIcon_87x87.png 190 | $(BDS)\bin\Artwork\iOS\iPhone\FM_NotificationIcon_40x40.png 191 | $(BDS)\bin\Artwork\iOS\iPhone\FM_NotificationIcon_60x60.png 192 | $(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_152x152.png 193 | $(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_167x167.png 194 | $(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_80x80.png 195 | $(BDS)\bin\Artwork\iOS\iPad\FM_SettingIcon_58x58.png 196 | $(BDS)\bin\Artwork\iOS\iPad\FM_NotificationIcon_40x40.png 197 | 198 | 199 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;vcl;IndyIPServer;vclactnband;vclFireDAC;IndySystem;tethering;svnui;dsnapcon;FireDACADSDriver;FireDACMSAccDriver;fmxFireDAC;vclimg;GLScene_RT;FireDAC;vcltouch;vcldb;bindcompfmx;svn;FireDACSqliteDriver;FireDACPgDriver;inetdb;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;fmxdae;xmlrtl;soapmidas;fmxobj;vclwinx;rtl;DbxClientDriver;CustomIPTransport;vcldsnap;dbexpress;IndyCore;vclx;bindcomp;appanalytics;dsnap;FireDACCommon;IndyIPClient;GLScene_GPU_RT;bindcompvcl;dclusr;RESTBackendComponents;VCLRESTComponents;soapserver;dbxcds;VclSmp;adortl;FMXAudioHGM;vclie;bindengine;DBXMySQLDriver;CloudService;dsnapxml;FireDACMySQLDriver;dbrtl;IndyProtocols;inetdbxpress;FireDACCommonODBC;FireDACCommonDriver;inet;fmxase;$(DCC_UsePackage) 200 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 201 | Debug 202 | true 203 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= 204 | 1033 205 | $(BDS)\bin\default_app.manifest 206 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png 207 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png 208 | 209 | 210 | DBXSqliteDriver;IndyIPCommon;RESTComponents;bindcompdbx;DBXInterBaseDriver;vcl;IndyIPServer;vclactnband;vclFireDAC;IndySystem;tethering;dsnapcon;FireDACADSDriver;FireDACMSAccDriver;fmxFireDAC;vclimg;GLScene_RT;FireDAC;vcltouch;vcldb;bindcompfmx;FireDACSqliteDriver;FireDACPgDriver;inetdb;soaprtl;DbxCommonDriver;fmx;FireDACIBDriver;fmxdae;xmlrtl;soapmidas;fmxobj;vclwinx;rtl;DbxClientDriver;CustomIPTransport;vcldsnap;dbexpress;IndyCore;vclx;bindcomp;appanalytics;dsnap;FireDACCommon;IndyIPClient;GLScene_GPU_RT;bindcompvcl;RESTBackendComponents;VCLRESTComponents;soapserver;dbxcds;VclSmp;adortl;FMXAudioHGM;vclie;bindengine;DBXMySQLDriver;CloudService;dsnapxml;FireDACMySQLDriver;dbrtl;IndyProtocols;inetdbxpress;FireDACCommonODBC;FireDACCommonDriver;inet;fmxase;$(DCC_UsePackage) 211 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 212 | Debug 213 | true 214 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= 215 | 1033 216 | $(BDS)\bin\default_app.manifest 217 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png 218 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png 219 | 220 | 221 | DEBUG;$(DCC_Define) 222 | true 223 | false 224 | true 225 | true 226 | true 227 | 228 | 229 | false 230 | true 231 | PerMonitorV2 232 | 233 | 234 | true 235 | PerMonitorV2 236 | 237 | 238 | false 239 | RELEASE;$(DCC_Define) 240 | 0 241 | 0 242 | 243 | 244 | true 245 | PerMonitorV2 246 | 247 | 248 | true 249 | PerMonitorV2 250 | 251 | 252 | 253 | MainSource 254 | 255 | 256 |
Form2
257 | fmx 258 |
259 | 260 | 261 | 262 | 263 | Cfg_2 264 | Base 265 | 266 | 267 | Base 268 | 269 | 270 | Cfg_1 271 | Base 272 | 273 |
274 | 275 | Delphi.Personality.12 276 | Application 277 | 278 | 279 | 280 | SQLiteFMX.dpr 281 | 282 | 283 | 284 | 285 | 286 | SQLiteFMX.exe 287 | true 288 | 289 | 290 | 291 | 292 | true 293 | 294 | 295 | 296 | 297 | true 298 | 299 | 300 | 301 | 302 | true 303 | 304 | 305 | 306 | 307 | 1 308 | 309 | 310 | Contents\MacOS 311 | 1 312 | 313 | 314 | 0 315 | 316 | 317 | 318 | 319 | classes 320 | 1 321 | 322 | 323 | classes 324 | 1 325 | 326 | 327 | 328 | 329 | res\xml 330 | 1 331 | 332 | 333 | res\xml 334 | 1 335 | 336 | 337 | 338 | 339 | library\lib\armeabi-v7a 340 | 1 341 | 342 | 343 | 344 | 345 | library\lib\armeabi 346 | 1 347 | 348 | 349 | library\lib\armeabi 350 | 1 351 | 352 | 353 | 354 | 355 | library\lib\armeabi-v7a 356 | 1 357 | 358 | 359 | 360 | 361 | library\lib\mips 362 | 1 363 | 364 | 365 | library\lib\mips 366 | 1 367 | 368 | 369 | 370 | 371 | library\lib\armeabi-v7a 372 | 1 373 | 374 | 375 | library\lib\arm64-v8a 376 | 1 377 | 378 | 379 | 380 | 381 | library\lib\armeabi-v7a 382 | 1 383 | 384 | 385 | 386 | 387 | res\drawable 388 | 1 389 | 390 | 391 | res\drawable 392 | 1 393 | 394 | 395 | 396 | 397 | res\values 398 | 1 399 | 400 | 401 | res\values 402 | 1 403 | 404 | 405 | 406 | 407 | res\values-v21 408 | 1 409 | 410 | 411 | res\values-v21 412 | 1 413 | 414 | 415 | 416 | 417 | res\values 418 | 1 419 | 420 | 421 | res\values 422 | 1 423 | 424 | 425 | 426 | 427 | res\drawable 428 | 1 429 | 430 | 431 | res\drawable 432 | 1 433 | 434 | 435 | 436 | 437 | res\drawable-xxhdpi 438 | 1 439 | 440 | 441 | res\drawable-xxhdpi 442 | 1 443 | 444 | 445 | 446 | 447 | res\drawable-xxxhdpi 448 | 1 449 | 450 | 451 | res\drawable-xxxhdpi 452 | 1 453 | 454 | 455 | 456 | 457 | res\drawable-ldpi 458 | 1 459 | 460 | 461 | res\drawable-ldpi 462 | 1 463 | 464 | 465 | 466 | 467 | res\drawable-mdpi 468 | 1 469 | 470 | 471 | res\drawable-mdpi 472 | 1 473 | 474 | 475 | 476 | 477 | res\drawable-hdpi 478 | 1 479 | 480 | 481 | res\drawable-hdpi 482 | 1 483 | 484 | 485 | 486 | 487 | res\drawable-xhdpi 488 | 1 489 | 490 | 491 | res\drawable-xhdpi 492 | 1 493 | 494 | 495 | 496 | 497 | res\drawable-mdpi 498 | 1 499 | 500 | 501 | res\drawable-mdpi 502 | 1 503 | 504 | 505 | 506 | 507 | res\drawable-hdpi 508 | 1 509 | 510 | 511 | res\drawable-hdpi 512 | 1 513 | 514 | 515 | 516 | 517 | res\drawable-xhdpi 518 | 1 519 | 520 | 521 | res\drawable-xhdpi 522 | 1 523 | 524 | 525 | 526 | 527 | res\drawable-xxhdpi 528 | 1 529 | 530 | 531 | res\drawable-xxhdpi 532 | 1 533 | 534 | 535 | 536 | 537 | res\drawable-xxxhdpi 538 | 1 539 | 540 | 541 | res\drawable-xxxhdpi 542 | 1 543 | 544 | 545 | 546 | 547 | res\drawable-small 548 | 1 549 | 550 | 551 | res\drawable-small 552 | 1 553 | 554 | 555 | 556 | 557 | res\drawable-normal 558 | 1 559 | 560 | 561 | res\drawable-normal 562 | 1 563 | 564 | 565 | 566 | 567 | res\drawable-large 568 | 1 569 | 570 | 571 | res\drawable-large 572 | 1 573 | 574 | 575 | 576 | 577 | res\drawable-xlarge 578 | 1 579 | 580 | 581 | res\drawable-xlarge 582 | 1 583 | 584 | 585 | 586 | 587 | res\values 588 | 1 589 | 590 | 591 | res\values 592 | 1 593 | 594 | 595 | 596 | 597 | 1 598 | 599 | 600 | Contents\MacOS 601 | 1 602 | 603 | 604 | 0 605 | 606 | 607 | 608 | 609 | Contents\MacOS 610 | 1 611 | .framework 612 | 613 | 614 | Contents\MacOS 615 | 1 616 | .framework 617 | 618 | 619 | 0 620 | 621 | 622 | 623 | 624 | 1 625 | .dylib 626 | 627 | 628 | 1 629 | .dylib 630 | 631 | 632 | 1 633 | .dylib 634 | 635 | 636 | Contents\MacOS 637 | 1 638 | .dylib 639 | 640 | 641 | Contents\MacOS 642 | 1 643 | .dylib 644 | 645 | 646 | 0 647 | .dll;.bpl 648 | 649 | 650 | 651 | 652 | 1 653 | .dylib 654 | 655 | 656 | 1 657 | .dylib 658 | 659 | 660 | 1 661 | .dylib 662 | 663 | 664 | Contents\MacOS 665 | 1 666 | .dylib 667 | 668 | 669 | Contents\MacOS 670 | 1 671 | .dylib 672 | 673 | 674 | 0 675 | .bpl 676 | 677 | 678 | 679 | 680 | 0 681 | 682 | 683 | 0 684 | 685 | 686 | 0 687 | 688 | 689 | 0 690 | 691 | 692 | 0 693 | 694 | 695 | Contents\Resources\StartUp\ 696 | 0 697 | 698 | 699 | Contents\Resources\StartUp\ 700 | 0 701 | 702 | 703 | 0 704 | 705 | 706 | 707 | 708 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 709 | 1 710 | 711 | 712 | 713 | 714 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 715 | 1 716 | 717 | 718 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 719 | 1 720 | 721 | 722 | 723 | 724 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 725 | 1 726 | 727 | 728 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 729 | 1 730 | 731 | 732 | 733 | 734 | 1 735 | 736 | 737 | 1 738 | 739 | 740 | 1 741 | 742 | 743 | 744 | 745 | 1 746 | 747 | 748 | 1 749 | 750 | 751 | 1 752 | 753 | 754 | 755 | 756 | 1 757 | 758 | 759 | 1 760 | 761 | 762 | 1 763 | 764 | 765 | 766 | 767 | 1 768 | 769 | 770 | 1 771 | 772 | 773 | 1 774 | 775 | 776 | 777 | 778 | 1 779 | 780 | 781 | 1 782 | 783 | 784 | 1 785 | 786 | 787 | 788 | 789 | 1 790 | 791 | 792 | 1 793 | 794 | 795 | 1 796 | 797 | 798 | 799 | 800 | 1 801 | 802 | 803 | 1 804 | 805 | 806 | 1 807 | 808 | 809 | 810 | 811 | 1 812 | 813 | 814 | 1 815 | 816 | 817 | 1 818 | 819 | 820 | 821 | 822 | 1 823 | 824 | 825 | 1 826 | 827 | 828 | 1 829 | 830 | 831 | 832 | 833 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 834 | 1 835 | 836 | 837 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 838 | 1 839 | 840 | 841 | 842 | 843 | 1 844 | 845 | 846 | 1 847 | 848 | 849 | 1 850 | 851 | 852 | 853 | 854 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 855 | 1 856 | 857 | 858 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 859 | 1 860 | 861 | 862 | 863 | 864 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 865 | 1 866 | 867 | 868 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 869 | 1 870 | 871 | 872 | 873 | 874 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 875 | 1 876 | 877 | 878 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 879 | 1 880 | 881 | 882 | 883 | 884 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 885 | 1 886 | 887 | 888 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 889 | 1 890 | 891 | 892 | 893 | 894 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 895 | 1 896 | 897 | 898 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 899 | 1 900 | 901 | 902 | 903 | 904 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 905 | 1 906 | 907 | 908 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 909 | 1 910 | 911 | 912 | 913 | 914 | 1 915 | 916 | 917 | 1 918 | 919 | 920 | 1 921 | 922 | 923 | 924 | 925 | 1 926 | 927 | 928 | 1 929 | 930 | 931 | 1 932 | 933 | 934 | 935 | 936 | 1 937 | 938 | 939 | 1 940 | 941 | 942 | 1 943 | 944 | 945 | 946 | 947 | 1 948 | 949 | 950 | 1 951 | 952 | 953 | 1 954 | 955 | 956 | 957 | 958 | 1 959 | 960 | 961 | 1 962 | 963 | 964 | 1 965 | 966 | 967 | 968 | 969 | 1 970 | 971 | 972 | 1 973 | 974 | 975 | 1 976 | 977 | 978 | 979 | 980 | 1 981 | 982 | 983 | 1 984 | 985 | 986 | 1 987 | 988 | 989 | 990 | 991 | 1 992 | 993 | 994 | 1 995 | 996 | 997 | 1 998 | 999 | 1000 | 1001 | 1002 | 1 1003 | 1004 | 1005 | 1 1006 | 1007 | 1008 | 1 1009 | 1010 | 1011 | 1012 | 1013 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 1014 | 1 1015 | 1016 | 1017 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 1018 | 1 1019 | 1020 | 1021 | 1022 | 1023 | 1 1024 | 1025 | 1026 | 1 1027 | 1028 | 1029 | 1 1030 | 1031 | 1032 | 1033 | 1034 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 1035 | 1 1036 | 1037 | 1038 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 1039 | 1 1040 | 1041 | 1042 | 1043 | 1044 | 1 1045 | 1046 | 1047 | 1 1048 | 1049 | 1050 | 1 1051 | 1052 | 1053 | 1054 | 1055 | 1 1056 | 1057 | 1058 | 1 1059 | 1060 | 1061 | 1 1062 | 1063 | 1064 | 1065 | 1066 | 1 1067 | 1068 | 1069 | 1 1070 | 1071 | 1072 | 1 1073 | 1074 | 1075 | 1076 | 1077 | 1 1078 | 1079 | 1080 | 1 1081 | 1082 | 1083 | 1 1084 | 1085 | 1086 | 1087 | 1088 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 1089 | 1 1090 | 1091 | 1092 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 1093 | 1 1094 | 1095 | 1096 | 1097 | 1098 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 1099 | 1 1100 | 1101 | 1102 | ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset 1103 | 1 1104 | 1105 | 1106 | 1107 | 1108 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1109 | 1 1110 | 1111 | 1112 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1113 | 1 1114 | 1115 | 1116 | 1117 | 1118 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1119 | 1 1120 | 1121 | 1122 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1123 | 1 1124 | 1125 | 1126 | 1127 | 1128 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1129 | 1 1130 | 1131 | 1132 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1133 | 1 1134 | 1135 | 1136 | 1137 | 1138 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1139 | 1 1140 | 1141 | 1142 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1143 | 1 1144 | 1145 | 1146 | 1147 | 1148 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1149 | 1 1150 | 1151 | 1152 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1153 | 1 1154 | 1155 | 1156 | 1157 | 1158 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1159 | 1 1160 | 1161 | 1162 | ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset 1163 | 1 1164 | 1165 | 1166 | 1167 | 1168 | 1 1169 | 1170 | 1171 | 1 1172 | 1173 | 1174 | 1175 | 1176 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 1177 | 1 1178 | 1179 | 1180 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 1181 | 1 1182 | 1183 | 1184 | 1185 | 1186 | 1 1187 | 1188 | 1189 | 1 1190 | 1191 | 1192 | 1193 | 1194 | ..\ 1195 | 1 1196 | 1197 | 1198 | ..\ 1199 | 1 1200 | 1201 | 1202 | 1203 | 1204 | 1 1205 | 1206 | 1207 | 1 1208 | 1209 | 1210 | 1 1211 | 1212 | 1213 | 1214 | 1215 | ..\$(PROJECTNAME).launchscreen 1216 | 64 1217 | 1218 | 1219 | ..\$(PROJECTNAME).launchscreen 1220 | 64 1221 | 1222 | 1223 | 1224 | 1225 | 1 1226 | 1227 | 1228 | 1 1229 | 1230 | 1231 | 1 1232 | 1233 | 1234 | 1235 | 1236 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF 1237 | 1 1238 | 1239 | 1240 | 1241 | 1242 | ..\ 1243 | 1 1244 | 1245 | 1246 | ..\ 1247 | 1 1248 | 1249 | 1250 | 1251 | 1252 | Contents 1253 | 1 1254 | 1255 | 1256 | Contents 1257 | 1 1258 | 1259 | 1260 | 1261 | 1262 | Contents\Resources 1263 | 1 1264 | 1265 | 1266 | Contents\Resources 1267 | 1 1268 | 1269 | 1270 | 1271 | 1272 | library\lib\armeabi-v7a 1273 | 1 1274 | 1275 | 1276 | library\lib\arm64-v8a 1277 | 1 1278 | 1279 | 1280 | 1 1281 | 1282 | 1283 | 1 1284 | 1285 | 1286 | 1 1287 | 1288 | 1289 | 1 1290 | 1291 | 1292 | Contents\MacOS 1293 | 1 1294 | 1295 | 1296 | Contents\MacOS 1297 | 1 1298 | 1299 | 1300 | 0 1301 | 1302 | 1303 | 1304 | 1305 | library\lib\armeabi-v7a 1306 | 1 1307 | 1308 | 1309 | 1310 | 1311 | 1 1312 | 1313 | 1314 | 1 1315 | 1316 | 1317 | 1318 | 1319 | Assets 1320 | 1 1321 | 1322 | 1323 | Assets 1324 | 1 1325 | 1326 | 1327 | 1328 | 1329 | Assets 1330 | 1 1331 | 1332 | 1333 | Assets 1334 | 1 1335 | 1336 | 1337 | 1338 | 1339 | 1340 | 1341 | 1342 | 1343 | 1344 | 1345 | 1346 | 1347 | 1348 | 1349 | True 1350 | True 1351 | False 1352 | False 1353 | False 1354 | True 1355 | True 1356 | 1357 | 1358 | 12 1359 | 1360 | 1361 | 1362 | 1363 |
1364 | -------------------------------------------------------------------------------- /SampleFMX/SQLiteFMX.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/SampleFMX/SQLiteFMX.res -------------------------------------------------------------------------------- /SampleFMX/Win32/Debug/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/SampleFMX/Win32/Debug/data.db -------------------------------------------------------------------------------- /Templates/SQLiteTemplate.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/Templates/SQLiteTemplate.pas -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-time-machine -------------------------------------------------------------------------------- /libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/libeay32.dll -------------------------------------------------------------------------------- /sqlite3ex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/SQLite/f1cdc6bf8749c3471e36b4aa8994086150383d6d/sqlite3ex.dll --------------------------------------------------------------------------------