All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hxl.miniapi.orm.MysqlDataSource.kt Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.hxl.miniapi.orm

import org.apache.ibatis.datasource.pooled.PooledDataSource

class MysqlDataSource(  username :String,  password:String,  url:String):
    PooledDataSource("com.mysql.cj.jdbc.Driver",url,username,password) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy