Jan Vladimir Mostert
Jan Vladimir Mostert
Dart Version, have tried on 2.7.2 and 2.8.0-dev-20 ``` environment: sdk: ">=2.7.0
``` val dbConnection = PgConnection.create("jdbc:postgresql://localhost:5432/mydb") val transaction = dbConnection.createTransaction() update(TestEntity).set( TestEntity.name, "BLEH ${Random().nextInt()}" ).where(TestEntity.id eq 1).executeOn(transaction) transaction.commit() ``` This causes a postgres error: ``` Cannot commit when autoCommit is enabled....
This happens on Postgres, haven't tried it on other databases. I create a test table, notice the `.default("TEST123")` on the name-column: ``` object TestEntity : TableDefinition(name = "test") { val...
A nice to have would be a side-by-side view. Where it would be useful is for somebody wanting to learn a new language, simply open a language you know very...
On some of the examples, you have multiple ways of doing the same thing and currently it's displayed as multiple tabs, see this one, dart is listed twice: http://www.programming-idioms.org/idiom/10/shuffle-a-list My...