Ruben Klink
Ruben Klink
Maybe we could point out in the README too the examples for actual working programs. The README gives more of a feel how this package could be used and what...
I agree with @matryer, while it is a neat idea this problem can already be solved with a debugger. You know where the test went wrong, put a breakpoint on...
I have the same `expected var range` error with a double INNER JOIN UPDATE query. https://play.sqlc.dev/p/be2e1f7f70d375b63f211a212d08be832943946296fc8f08aa84bde7fd5392ea
I have a similar problem. The documentation is no longer up-to-date. In `build.gradle` I need to add the following `dependency`: `runtimeOnly 'com.mysql:mysql-connector-j'` And in `application.properties` the `spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver` setting is no...
Hello, I'm not really familiar with the code base yet but it looks like this is testable by trying to create a new collection with an invalid name._stating the obvious...
Okay, I guess I will take on this issue, focusing on PostgreSQL. EDIT: Just leaving a note here that I don't have the time to work on this issue right...
@ia3andy hyperscript works for me if I directly import it into my HTML. I have no luck by importing it into a typescript file and tanspiling it to JavaScript.
With a bundler (I use parcel because it just works for simple projects) it is still clean I guess. ```typescript import 'htmx.org'; import _hyperscript from 'hyperscript.org'; _hyperscript.browserInit() console.log("loading index.ts..."); ```...