├── .gitignore ├── LICENSE ├── README.md ├── docs └── sqlcollection_01.gif ├── packages ├── SQLCollection.dpk ├── SQLCollection.dproj ├── SQLCollection.res ├── SQLCollectionDesign.dpk ├── SQLCollectionDesign.dproj ├── SQLCollectionDesign.res └── SQLCollectionGroup.groupproj ├── samples ├── list_person │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── listperson.dpr │ ├── listperson.dproj │ └── listperson.res └── simple_sample │ ├── SimpleSample.Main.dfm │ ├── SimpleSample.Main.pas │ ├── SimpleSample.dpr │ ├── SimpleSample.dproj │ └── SimpleSample.res ├── sources ├── SQLCollection.Base.pas ├── SQLCollection.Core.pas ├── SQLCollection.Design.Editor.dfm ├── SQLCollection.Design.Editor.pas ├── SQLCollection.Design.JsonDataObjects.pas ├── SQLCollection.Design.Register.pas ├── SQLCollection.Design.SQLEditor.dfm ├── SQLCollection.Design.SQLEditor.pas └── SQLCollection.Design.Utils.pas └── tests ├── SQLCollection.Tests.pas ├── SQLCollectionTests.dpr ├── SQLCollectionTests.dproj └── SQLCollectionTests.res /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/README.md -------------------------------------------------------------------------------- /docs/sqlcollection_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/docs/sqlcollection_01.gif -------------------------------------------------------------------------------- /packages/SQLCollection.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/packages/SQLCollection.dpk -------------------------------------------------------------------------------- /packages/SQLCollection.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/packages/SQLCollection.dproj -------------------------------------------------------------------------------- /packages/SQLCollection.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/packages/SQLCollection.res -------------------------------------------------------------------------------- /packages/SQLCollectionDesign.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/packages/SQLCollectionDesign.dpk -------------------------------------------------------------------------------- /packages/SQLCollectionDesign.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/packages/SQLCollectionDesign.dproj -------------------------------------------------------------------------------- /packages/SQLCollectionDesign.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/packages/SQLCollectionDesign.res -------------------------------------------------------------------------------- /packages/SQLCollectionGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/packages/SQLCollectionGroup.groupproj -------------------------------------------------------------------------------- /samples/list_person/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/list_person/Unit1.dfm -------------------------------------------------------------------------------- /samples/list_person/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/list_person/Unit1.pas -------------------------------------------------------------------------------- /samples/list_person/listperson.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/list_person/listperson.dpr -------------------------------------------------------------------------------- /samples/list_person/listperson.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/list_person/listperson.dproj -------------------------------------------------------------------------------- /samples/list_person/listperson.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/list_person/listperson.res -------------------------------------------------------------------------------- /samples/simple_sample/SimpleSample.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/simple_sample/SimpleSample.Main.dfm -------------------------------------------------------------------------------- /samples/simple_sample/SimpleSample.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/simple_sample/SimpleSample.Main.pas -------------------------------------------------------------------------------- /samples/simple_sample/SimpleSample.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/simple_sample/SimpleSample.dpr -------------------------------------------------------------------------------- /samples/simple_sample/SimpleSample.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/simple_sample/SimpleSample.dproj -------------------------------------------------------------------------------- /samples/simple_sample/SimpleSample.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/samples/simple_sample/SimpleSample.res -------------------------------------------------------------------------------- /sources/SQLCollection.Base.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Base.pas -------------------------------------------------------------------------------- /sources/SQLCollection.Core.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Core.pas -------------------------------------------------------------------------------- /sources/SQLCollection.Design.Editor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Design.Editor.dfm -------------------------------------------------------------------------------- /sources/SQLCollection.Design.Editor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Design.Editor.pas -------------------------------------------------------------------------------- /sources/SQLCollection.Design.JsonDataObjects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Design.JsonDataObjects.pas -------------------------------------------------------------------------------- /sources/SQLCollection.Design.Register.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Design.Register.pas -------------------------------------------------------------------------------- /sources/SQLCollection.Design.SQLEditor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Design.SQLEditor.dfm -------------------------------------------------------------------------------- /sources/SQLCollection.Design.SQLEditor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Design.SQLEditor.pas -------------------------------------------------------------------------------- /sources/SQLCollection.Design.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/sources/SQLCollection.Design.Utils.pas -------------------------------------------------------------------------------- /tests/SQLCollection.Tests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/tests/SQLCollection.Tests.pas -------------------------------------------------------------------------------- /tests/SQLCollectionTests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/tests/SQLCollectionTests.dpr -------------------------------------------------------------------------------- /tests/SQLCollectionTests.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/tests/SQLCollectionTests.dproj -------------------------------------------------------------------------------- /tests/SQLCollectionTests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoduarte19/sqlcollection/HEAD/tests/SQLCollectionTests.res --------------------------------------------------------------------------------