gitextract_zidf83u4/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── LICENSE.md ├── Package.swift ├── Package@swift-5.swift ├── README.md ├── Sources/ │ ├── MySQL/ │ │ ├── AutoincrementID.swift │ │ ├── Blob.swift │ │ ├── Connection.swift │ │ ├── ConnectionPool.swift │ │ ├── Date.swift │ │ ├── Error.swift │ │ ├── IDType.swift │ │ ├── Query.swift │ │ ├── QueryParameter-Data.swift │ │ ├── QueryParameterType.swift │ │ ├── RawRepresentableParameter.swift │ │ ├── Result-SQLRawStringDecodable.swift │ │ ├── Result.swift │ │ ├── Sync.swift │ │ └── Transaction.swift │ ├── SQLFormatter/ │ │ ├── Error.swift │ │ └── QueryFormatter.swift │ └── cmysql/ │ ├── macos.pc │ ├── module.modulemap │ └── shim.h └── Tests/ ├── LinuxMain.swift ├── MySQLTests/ │ ├── BlobTests.swift │ ├── ConnectionPoolTests.swift │ ├── ConnectionTests.swift │ ├── DateTests.swift │ ├── EscapeTests.swift │ ├── Model.swift │ ├── MySQLConnection.swift │ ├── QueryDecimalTypeTests.swift │ ├── QueryFormatterTests.swift │ ├── QueryParameterTests.swift │ ├── QueryTests.swift │ ├── QueryURLTypeTests.swift │ └── XCTestManifests.swift └── SQLFormatterTests/ ├── SQLFormatterTests.swift └── XCTestManifests.swift