Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for writing DataFrames to SQL tables #1012

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ public abstract class DbType(public val dbTypeInJdbcUrl: String) {
*/
public abstract fun convertSqlTypeToKType(tableColumnMetadata: TableColumnMetadata): KType?

/**
* Converts a Kotlin type ([KType]) to its corresponding SQL type as a String.
*
* @param kType The Kotlin type to be converted.
* @return The corresponding SQL type as a String, or null if no matching SQL type exists.
*/
public abstract fun convertKTypeToSqlType(kType: KType): String?

/**
* Constructs a SQL query with a limit clause.
*
Expand All @@ -59,4 +67,11 @@ public abstract class DbType(public val dbTypeInJdbcUrl: String) {
* @return A new SQL query with the limit clause added.
*/
public open fun sqlQueryLimit(sqlQuery: String, limit: Int = 1): String = "$sqlQuery LIMIT $limit"

/**
* Handles optional type conversion for nullable values.
*/
public open fun handleNullable(sqlType: String, isNullable: Boolean): String {
return if (isNullable) "$sqlType NULL" else "$sqlType NOT NULL"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
package org.jetbrains.kotlinx.dataframe.io

import java.sql.Connection
import org.jetbrains.kotlinx.dataframe.DataFrame
import org.jetbrains.kotlinx.dataframe.io.db.DbType

enum class IfExists {
FAIL,
REPLACE,
APPEND
}

public fun <T> DataFrame<T>.writeToSqlTable(
con: Connection,
name: String,
schema: String? = null,
inferNullability: Boolean = true,
ifExists: IfExists = IfExists.FAIL,
batchSize: Int = 1000,
dbType: DbType? = null,
) {
val qualifiedName = if (schema != null) "$schema.$name" else name
val tableExists = doesTableExist(con, qualifiedName, dbType)

when (ifExists) {
IfExists.FAIL -> if (tableExists) throw IllegalArgumentException("Table $qualifiedName already exists.")
IfExists.REPLACE -> {
if (tableExists) dropTable(con, qualifiedName)
createTable(this, con, qualifiedName, dbType)
}
IfExists.APPEND -> if (!tableExists) createTable(this, con, qualifiedName, dbType)
}

val batchLimit = batchSize ?: this.rowsCount()
val insertQuery = buildInsertQuery(qualifiedName, columnNames())
val preparedStatement: PreparedStatement = con.prepareStatement(insertQuery)

con.autoCommit = false
try {
forEachBatch(this, batchLimit) { batch ->
batch.forEach { row ->
columnNames().forEachIndexed { index, columnName ->
val value = row[columnName]
preparedStatement.setObject(index + 1, value)
}
preparedStatement.addBatch()
}
preparedStatement.executeBatch()
}
con.commit()
} catch (exception: Exception) {
con.rollback()
throw exception
} finally {
preparedStatement.close()
}
}


public fun doesTableExist(connection: Connection, tableName: String, dbType: DbType?): Boolean {
val query = "SELECT 1 FROM information_schema.tables WHERE table_name = ?"
connection.prepareStatement(query).use { statement ->
statement.setString(1, tableName)
statement.executeQuery().use { resultSet ->
return resultSet.next()
}
}
}

public fun <T> forEachBatch(dataFrame: DataFrame<T>, batchSize: Int, action: (DataFrame<T>) -> Unit) {
val totalRows = dataFrame.rowsCount()
for (start in 0 until totalRows step batchSize) {
val end = minOf(start + batchSize, totalRows)
val batch = dataFrame[start until end]
action(batch)
}
}

public fun <T> createTable(dataFrame: DataFrame<T>, connection: Connection, tableName: String, dbType: DbType?) {
val columnsDefinition = dataFrame.columnNames().zip(dataFrame.columnTypes()).joinToString(", ") { (name, type) ->
val sqlType = dbType.convertKTypeToSqlType(type)
dbType?.handleNullable(sqlType, type.isMarkedNullable) ?: throw IllegalArgumentException ("dbType is not specified")
"$name $sqlType"
}
val createQuery = "CREATE TABLE $tableName ($columnsDefinition)"
connection.prepareStatement(createQuery).use { it.executeUpdate() }
}

public fun dropTable(connection: Connection, tableName: String) {
val query = "DROP TABLE $tableName"
connection.prepareStatement(query).use { it.executeUpdate() }
}

public fun buildInsertQuery(tableName: String, columnNames: List<String>): String {
val placeholders = columnNames.joinToString(", ") { "?" }
val columns = columnNames.joinToString(", ")
return "INSERT INTO $tableName ($columns) VALUES ($placeholders)"
}





Loading