com.github.schlak.universalQB.Implementation.MSSQL.GeneralObjects.MSSQLJoinCondition.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of universalQB Show documentation
Show all versions of universalQB Show documentation
The java lib universalQB can be used to access different databases
using formalized objects. These objects got converted into a query matching to the
syntactical rules of the database management system
package com.github.schlak.universalQB.Implementation.MSSQL.GeneralObjects
import com.github.schlak.universalQB.Definition.GeneralObjects.JoinCondition
/**
* Created by Jonas Schlak on 21.03.2017.
*/
class MSSQLJoinCondition : JoinCondition(){
override fun getJoinConditionString(): String {
return baseColumn.columnString + " = " + joinColumn.columnString
}
}