Last active
December 8, 2022 01:11
-
-
Save oharaandrew314/02fa018a3169f132bfb3ec6bed1995d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
implementation("mysql:mysql-connector-java:8.0.30") | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.sql.ResultSet | |
import java.util.UUID | |
import javax.sql.DataSource | |
class JdbcCatsRepo(private val datasource: DataSource): CatsRepo { | |
override fun plusAssign(cat: Cat) { | |
datasource.connection.use { conn -> | |
conn.prepareStatement("INSERT INTO cats (id, ownerId, name) VALUES (?, ?, ?)").use { stmt -> | |
stmt.setString(1, cat.id.toString()) | |
stmt.setString(2, cat.ownerId.toString()) | |
stmt.setString(3, cat.name) | |
stmt.executeUpdate() | |
} | |
} | |
} | |
override fun minusAssign(id: UUID) { | |
datasource.connection.use { conn -> | |
conn.prepareStatement("DELETE FROM cats WHERE id = ?").use { stmt -> | |
stmt.setString(1, id.toString()) | |
stmt.executeUpdate() | |
} | |
} | |
} | |
override fun get(id: UUID): Cat? { | |
datasource.connection.use { conn -> | |
conn.prepareStatement("SELECT * FROM cats WHERE id = ?").use { stmt -> | |
stmt.setString(1, id.toString()) | |
stmt.executeQuery().use { row -> | |
return row | |
.takeIf { row.next() } | |
?.toCat() | |
} | |
} | |
} | |
} | |
override fun listForOwner(ownerId: UUID): List<Cat> { | |
datasource.connection.use { conn -> | |
conn.prepareStatement("SELECT * FROM cats where ownerId = ?").use { stmt -> | |
stmt.setString(1, ownerId.toString()) | |
stmt.executeQuery().use { row -> | |
return sequence { | |
while(row.next()) { | |
yield(row.toCat()) | |
} | |
}.toList() | |
} | |
} | |
} | |
} | |
private fun ResultSet.toCat() = Cat( | |
id = UUID.fromString(getString("id")), | |
ownerId = UUID.fromString(getString("ownerId")), | |
name = getString("name") | |
) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.mysql.cj.jdbc.MysqlDataSource | |
fun main() { | |
val dataSource = MysqlDataSource().apply { | |
databaseName = System.getenv("DB_NAME") | |
serverName = System.getenv("DB_HOST") | |
user = System.getenv("DB_USER") | |
password = System.getenv("DB_PASS") | |
} | |
val repository = JdbcCatsRepo(dataSource) | |
// do stuff | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment