Add a new database compatible with mybatis #2838
-
Hello, Mybatis is undoubtedly the most popular persistence layer framework. Of course, Mybatis is now compatible with many databases, but our company's self-developed databases(http://doc.yashandb.com/) are also fully compatible with Mybatis. What tests do you need to pass? Is there a document for the specific method? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We do not "certify" databases for use with MyBatis. If your database has a fully functioning JDBC driver, then it should work. I would focus on making sure your JDBC driver is working properly. If you want to run our test suite, it should be relatively easy to change from HSQL to your database, but unfortunately you will have to make a change in quite a few places for that. |
Beta Was this translation helpful? Give feedback.
We do not "certify" databases for use with MyBatis. If your database has a fully functioning JDBC driver, then it should work. I would focus on making sure your JDBC driver is working properly.
If you want to run our test suite, it should be relatively easy to change from HSQL to your database, but unfortunately you will have to make a change in quite a few places for that.