Giter VIP home page Giter VIP logo

Comments (6)

vincentlauvlwj avatar vincentlauvlwj commented on August 17, 2024 3

We can add a SqlType implementation to handle enums:

fun <E : Any, C : Enum<C>> BaseTable<E>.enum(name: String, typeRef: TypeReference<C>): BaseTable<E>.ColumnRegistration<C> {
    return registerColumn(name, EnumSqlType(typeRef.referencedType as Class<C>))
}

class EnumSqlType<C : Enum<C>>(val enumClass: Class<C>) : SqlType<C>(Types.VARCHAR, "varchar") {
    private val valueOf = enumClass.getDeclaredMethod("valueOf", String::class.java)

    override fun doSetParameter(ps: PreparedStatement, index: Int, parameter: C) {
        ps.setString(index, parameter.name)
    }

    override fun doGetResult(rs: ResultSet, index: Int): C? {
        return rs.getString(index)?.takeIf { it.isNotBlank() }?.let { enumClass.cast(valueOf(null, it)) }
    }
}

Usage:

object Employees : Table<Nothing>("t_employee") {
    // ...
    val sex by enum("sex", typeRef<Sex>())
}

from ktorm.

vincentlauvlwj avatar vincentlauvlwj commented on August 17, 2024 1

Ktorm 2.7 is released.

from ktorm.

0xTirthesh avatar 0xTirthesh commented on August 17, 2024

Any plan to release this any time soon? I am using version 2.6 and it's not available.

from ktorm.

vincentlauvlwj avatar vincentlauvlwj commented on August 17, 2024

I've added it to version 2.7, which might be released next month.

If you need to use it right now, you can copy the codes above to your project temporarily.

from ktorm.

jiaojing avatar jiaojing commented on August 17, 2024

数据库里的enum,默认是用的name,这个感觉不是很友好。我们自己定义了一个,用的tinyInt。

interface HasCodeEnum {
    val code: Int
}

inline fun <reified T : HasCodeEnum> Int?.ofEnum(): T? {
    if (this == null) return null
    val enums = T::class.java.enumConstants
    return enums.firstOrNull { it.code == this }
}

data class EnumSqlType<T : HasCodeEnum>(
        val enumType: KClass<T>
) : SqlType<T>(Types.TINYINT, typeName = "enum") {

    override fun doSetParameter(
            ps: PreparedStatement,
            index: Int,
            parameter: T ) {

        ps.setInt(index, parameter.code)
    }

    override fun doGetResult(
            rs: ResultSet,
            index: Int ): T? {

        val code = rs.getInt(index)
        val enums = enumType.java.enumConstants
        return enums.firstOrNull { it.code == code }
    }
}

from ktorm.

vincentlauvlwj avatar vincentlauvlwj commented on August 17, 2024

@jiaojing Great.

from ktorm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.