├── .appveyor.yml ├── .editorconfig ├── .gitignore ├── .maven-bintray.xml ├── .travis.yml ├── CHANGELOG.adoc ├── LICENSE ├── README.adoc ├── pom.xml ├── script ├── appveyor-install-maven.ps1 ├── appveyor-setup-mssql.ps1 ├── travis-deploy ├── travis-install-oracle └── travis-setup └── src ├── main └── java │ └── cz │ └── jirutka │ └── spring │ └── data │ └── jdbc │ ├── BaseJdbcRepository.java │ ├── JdbcRepository.java │ ├── NoRecordUpdatedException.java │ ├── RowUnmapper.java │ ├── TableDescription.java │ ├── UnsupportedRowUnmapper.java │ ├── internal │ ├── IterableUtils.java │ ├── ObjectUtils.java │ └── StringUtils.java │ └── sql │ ├── DefaultSqlGenerator.java │ ├── LimitOffsetSqlGenerator.java │ ├── Oracle9SqlGenerator.java │ ├── SQL2008SqlGenerator.java │ ├── SqlGenerator.java │ └── SqlGeneratorFactory.java └── test ├── groovy └── cz │ └── jirutka │ └── spring │ └── data │ └── jdbc │ ├── BaseJdbcRepositoryTest.groovy │ ├── DerbyJdbcRepositoryIT.groovy │ ├── H2JdbcRepositoryIT.groovy │ ├── HsqldbJdbcRepositoryIT.groovy │ ├── JdbcRepositoryCompoundPkIT.groovy │ ├── JdbcRepositoryGeneratedKeyIT.groovy │ ├── JdbcRepositoryManualKeyIT.groovy │ ├── JdbcRepositoryManyToOneIT.groovy │ ├── MariaDbJdbcRepositoryIT.groovy │ ├── Mssql2012JdbcRepositoryIT.groovy │ ├── MssqlJdbcRepositoryIT.groovy │ ├── MySqlJdbcRepositoryIT.groovy │ ├── OracleJdbcRepositoryIT.groovy │ ├── PostgresqlJdbcRepositoryIT.groovy │ ├── StandaloneUsageIT.groovy │ ├── TestUtils.groovy │ ├── config │ └── AbstractTestConfig.groovy │ ├── fixtures │ ├── BoardingPass.groovy │ ├── Comment.groovy │ ├── CommentWithUser.groovy │ └── User.groovy │ ├── internal │ ├── IterableUtilsTest.groovy │ ├── ObjectUtilsTest.groovy │ └── StringUtilsTest.groovy │ └── sql │ ├── LimitOffsetSqlGeneratorTest.groovy │ ├── Oracle9SqlGeneratorTest.groovy │ ├── SQL2008SqlGeneratorTest.groovy │ ├── SqlGeneratorFactoryIT.groovy │ ├── SqlGeneratorFactoryTest.groovy │ └── SqlGeneratorTest.groovy ├── java └── cz │ └── jirutka │ └── spring │ └── data │ └── jdbc │ └── fixtures │ ├── BoardingPassRepository.java │ ├── CommentRepository.java │ ├── CommentWithUserRepository.java │ └── UserRepository.java └── resources ├── logback-test.xml ├── schema_derby.sql ├── schema_h2.sql ├── schema_hsqldb.sql ├── schema_mssql.sql ├── schema_mysql.sql ├── schema_oracle.sql └── schema_postgresql.sql /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | target/ 3 | *.iml 4 | *.log 5 | -------------------------------------------------------------------------------- /.maven-bintray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/.maven-bintray.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/CHANGELOG.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/README.adoc -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/pom.xml -------------------------------------------------------------------------------- /script/appveyor-install-maven.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/script/appveyor-install-maven.ps1 -------------------------------------------------------------------------------- /script/appveyor-setup-mssql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/script/appveyor-setup-mssql.ps1 -------------------------------------------------------------------------------- /script/travis-deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/script/travis-deploy -------------------------------------------------------------------------------- /script/travis-install-oracle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/script/travis-install-oracle -------------------------------------------------------------------------------- /script/travis-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/script/travis-setup -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/BaseJdbcRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/BaseJdbcRepository.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/JdbcRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/JdbcRepository.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/NoRecordUpdatedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/NoRecordUpdatedException.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/RowUnmapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/RowUnmapper.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/TableDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/TableDescription.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/UnsupportedRowUnmapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/UnsupportedRowUnmapper.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/internal/IterableUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/internal/IterableUtils.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/internal/ObjectUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/internal/ObjectUtils.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/internal/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/internal/StringUtils.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/sql/DefaultSqlGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/sql/DefaultSqlGenerator.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/sql/LimitOffsetSqlGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/sql/LimitOffsetSqlGenerator.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/sql/Oracle9SqlGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/sql/Oracle9SqlGenerator.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/sql/SQL2008SqlGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/sql/SQL2008SqlGenerator.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/sql/SqlGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/sql/SqlGenerator.java -------------------------------------------------------------------------------- /src/main/java/cz/jirutka/spring/data/jdbc/sql/SqlGeneratorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/main/java/cz/jirutka/spring/data/jdbc/sql/SqlGeneratorFactory.java -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/BaseJdbcRepositoryTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/BaseJdbcRepositoryTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/DerbyJdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/DerbyJdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/H2JdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/H2JdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/HsqldbJdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/HsqldbJdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/JdbcRepositoryCompoundPkIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/JdbcRepositoryCompoundPkIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/JdbcRepositoryGeneratedKeyIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/JdbcRepositoryGeneratedKeyIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/JdbcRepositoryManualKeyIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/JdbcRepositoryManualKeyIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/JdbcRepositoryManyToOneIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/JdbcRepositoryManyToOneIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/MariaDbJdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/MariaDbJdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/Mssql2012JdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/Mssql2012JdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/MssqlJdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/MssqlJdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/MySqlJdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/MySqlJdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/OracleJdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/OracleJdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/PostgresqlJdbcRepositoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/PostgresqlJdbcRepositoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/StandaloneUsageIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/StandaloneUsageIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/TestUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/TestUtils.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/config/AbstractTestConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/config/AbstractTestConfig.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/fixtures/BoardingPass.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/fixtures/BoardingPass.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/fixtures/Comment.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/fixtures/Comment.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/fixtures/CommentWithUser.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/fixtures/CommentWithUser.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/fixtures/User.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/fixtures/User.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/internal/IterableUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/internal/IterableUtilsTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/internal/ObjectUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/internal/ObjectUtilsTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/internal/StringUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/internal/StringUtilsTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/sql/LimitOffsetSqlGeneratorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/sql/LimitOffsetSqlGeneratorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/sql/Oracle9SqlGeneratorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/sql/Oracle9SqlGeneratorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/sql/SQL2008SqlGeneratorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/sql/SQL2008SqlGeneratorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/sql/SqlGeneratorFactoryIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/sql/SqlGeneratorFactoryIT.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/sql/SqlGeneratorFactoryTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/sql/SqlGeneratorFactoryTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/cz/jirutka/spring/data/jdbc/sql/SqlGeneratorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/groovy/cz/jirutka/spring/data/jdbc/sql/SqlGeneratorTest.groovy -------------------------------------------------------------------------------- /src/test/java/cz/jirutka/spring/data/jdbc/fixtures/BoardingPassRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/java/cz/jirutka/spring/data/jdbc/fixtures/BoardingPassRepository.java -------------------------------------------------------------------------------- /src/test/java/cz/jirutka/spring/data/jdbc/fixtures/CommentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/java/cz/jirutka/spring/data/jdbc/fixtures/CommentRepository.java -------------------------------------------------------------------------------- /src/test/java/cz/jirutka/spring/data/jdbc/fixtures/CommentWithUserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/java/cz/jirutka/spring/data/jdbc/fixtures/CommentWithUserRepository.java -------------------------------------------------------------------------------- /src/test/java/cz/jirutka/spring/data/jdbc/fixtures/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/java/cz/jirutka/spring/data/jdbc/fixtures/UserRepository.java -------------------------------------------------------------------------------- /src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /src/test/resources/schema_derby.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/resources/schema_derby.sql -------------------------------------------------------------------------------- /src/test/resources/schema_h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/resources/schema_h2.sql -------------------------------------------------------------------------------- /src/test/resources/schema_hsqldb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/resources/schema_hsqldb.sql -------------------------------------------------------------------------------- /src/test/resources/schema_mssql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/resources/schema_mssql.sql -------------------------------------------------------------------------------- /src/test/resources/schema_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/resources/schema_mysql.sql -------------------------------------------------------------------------------- /src/test/resources/schema_oracle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/resources/schema_oracle.sql -------------------------------------------------------------------------------- /src/test/resources/schema_postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/spring-data-jdbc-repository/HEAD/src/test/resources/schema_postgresql.sql --------------------------------------------------------------------------------