├── .gitignore ├── .swift-version ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SQL │ ├── Core │ ├── ConnectionProtocol.swift │ ├── FieldInfo.swift │ ├── QualifiedField.swift │ ├── ResultProtocol.swift │ ├── RowProtocol.swift │ ├── StatementRepresentable.swift │ └── Value.swift │ ├── Model │ ├── Entity.swift │ ├── ModelProtocol.swift │ └── TableProtocol.swift │ └── Query │ ├── Delete.swift │ ├── Function.swift │ ├── Insert.swift │ ├── Join.swift │ ├── Operator.swift │ ├── Order.swift │ ├── Parameter.swift │ ├── Predicate.swift │ ├── QueryRenderer.swift │ ├── Select.swift │ └── Update.swift └── Tests ├── LinuxMain.swift └── SQLTests ├── .DS_Store └── SQLTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SQL/Core/ConnectionProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Core/ConnectionProtocol.swift -------------------------------------------------------------------------------- /Sources/SQL/Core/FieldInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Core/FieldInfo.swift -------------------------------------------------------------------------------- /Sources/SQL/Core/QualifiedField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Core/QualifiedField.swift -------------------------------------------------------------------------------- /Sources/SQL/Core/ResultProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Core/ResultProtocol.swift -------------------------------------------------------------------------------- /Sources/SQL/Core/RowProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Core/RowProtocol.swift -------------------------------------------------------------------------------- /Sources/SQL/Core/StatementRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Core/StatementRepresentable.swift -------------------------------------------------------------------------------- /Sources/SQL/Core/Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Core/Value.swift -------------------------------------------------------------------------------- /Sources/SQL/Model/Entity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Model/Entity.swift -------------------------------------------------------------------------------- /Sources/SQL/Model/ModelProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Model/ModelProtocol.swift -------------------------------------------------------------------------------- /Sources/SQL/Model/TableProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Model/TableProtocol.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Delete.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Delete.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Function.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Function.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Insert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Insert.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Join.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Join.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Operator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Operator.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Order.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Order.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Parameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Parameter.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Predicate.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/QueryRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/QueryRenderer.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Select.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Select.swift -------------------------------------------------------------------------------- /Sources/SQL/Query/Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Sources/SQL/Query/Update.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/SQLTests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Tests/SQLTests/.DS_Store -------------------------------------------------------------------------------- /Tests/SQLTests/SQLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/SQL/HEAD/Tests/SQLTests/SQLTests.swift --------------------------------------------------------------------------------