Thomas J. Taylor

Results 21 comments of Thomas J. Taylor

@krukas Could you clarify/post the code that solved your problem? I have a similar problem that when I call ``` infinity.replace(this.get('model'), await store.query('customer', filter)) ``` it correctly performs the search...

Thanks @krukas In the Controller, it appears that `infinity.replace` doesn't properly update its model, while `this.set('model',...)` does. Also, instead of `store.query` (as shown in the docs), I should have used...

SimpleITK doesn't include SimpleElastix. Instead, try[^1] ``` pip install SimpleITK-SimpleElastix ``` [^1] https://pypi.org/project/SimpleITK-SimpleElastix/

@Amrosx, as @bcogrel notes, you can use the mysql-connector-java JAR to connect to MariaDB. If you need to use the mariadb-java-client, you can pass properties to augment/override the [`sql-default.properties`]( https://github.com/ontop/ontop/blob/62d0d08462be45781c94b3d627c3f9f062542717/db/rdb/src/main/resources/it/unibz/inf/ontop/injection/sql-default.properties)...

May be similar to #455 Casting to TEXT does not work in Teiid (and Dremio) (and HSQLDB)

The same issue is present in HSQLDB which doesn't have a TEXT type. **Workaround** There is a workaround to configure HSQLDB (>=2.2) to follow MySQL syntax. Add `;sql.syntax_mys=true` to the...

It might be possible to reuse the MySQL implementation if the HSQLDB connection uses `sql.syntax_mys=true`, e.g., `jdbc:hsqldb:mem:mydb;sql.syntax_mys=true` https://hsqldb.org/doc/2.0/guide/compatibility-chapt.html#coc_compatibility_mysql

Is there a workaround or alternative to casting `xsd:dateTime()` for testing equality in a filter? When `xsd:dateTime()` is included in a SPARQL query Ontop throws an Exception. I would like...

@ghxiao What is the status of this issue in Ontop 5.0? Can you point me to any test cases or sample code? Thanks!