Updated FAQ (markdown)

This commit is contained in:
oshai
2017-12-19 21:12:58 +02:00
committed by Andrey.Tarashevskiy
parent 45931579dc
commit 8dc4320466

7
FAQ.md
View File

@@ -38,4 +38,9 @@ More info in this issue: https://github.com/JetBrains/Exposed/issues/118
### Q: Is it possible to update a field relative to current field value?
A: Yes. See example here: https://github.com/JetBrains/Exposed/issues/82
A: Yes. See example here: https://github.com/JetBrains/Exposed/issues/82
### Q: How can I add another type of Database?
A: Implement `DatabaseDialect` interface and register it with `Database.registerDialect()`.
If the implementation adds a lot of value consider contributing it as a PR to Exposed.