Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge. Learn more →
Kotlin Dao Projects
-
object TestDatabase { private val mySQLContainer: MySQLContainer = MySQLContainer("mysql:8.0.26").apply { withDatabaseName("test-db") withUsername("test-user") withPassword("test-password") start() // Start the container } init { val config = HikariConfig().apply { jdbcUrl = mySQLContainer.jdbcUrl username = mySQLContainer.username password = mySQLContainer.password driverClassName = "com.mysql.cj.jdbc.Driver" maximumPoolSize = 10 } val dataSource = HikariDataSource(config) // This doesn't connect to the database but provides a descriptor for future use // In the main app, we would do this on system start up // https://github.com/JetBrains/Exposed/wiki/Database-and-DataSource Database.connect(dataSource) // Create the schema transaction { SchemaUtils.create(Users) } } }
-
Appwrite
Appwrite - The open-source backend cloud platform. Add Auth, Databases, Functions, and Storage to your product and build any application at any scale while using your preferred coding languages and tools.
Kotlin Dao related posts
- I'm creating a REST API using KTOR. What's the best ORM to go with KTOR ?
- speed of a left join with millions of rows
- Return a nested list of child table using Kotlin Exposed Dao
- Replicating Jetbrains Exposed Star Wars Example in IntelliJ Scratch file
- How are you all handling database persistence?
- Guys, I think I'm in love :)
- Extending Kotlin language?
-
A note from our sponsor - InfluxDB
www.influxdata.com | 28 Nov 2023
Index
Project | Stars | |
---|---|---|
1 | Exposed | 7,568 |