dataexpress
dataexpress copied to clipboard
[NOT MAINTAINED] DataExpress is a simple, Scala-based cross database ETL toolkit supporting Postgres, MySql, Oracle, SQLServer, and Sqlite
error] /build/src/test/scala/edu/chop/cbmi/dataExpress/test/dataModels/DataRowSpec.scala:63: applyDynamic does not support passing a vararg parameter [error] row.c [error] ^ [error] /build/src/test/scala/edu/chop/cbmi/dataExpress/test/dataModels/DataRowSpec.scala:79: applyDynamic does not support passing a vararg parameter [error] row2.gender [error] ^ [error] two...
Creating new containers for dataexpress. Images will have the following: - mysql - mssqlserver - oracle - postgresql - sqlite from base images
I found that Schema::dropIfExists not working for **sqlsrv driver** because it is not implemented in SqlServerGrammar.php. Please fix this issue. Thank you.
I had this: ``` scala copy query clarity.queries.patients from "clarity" to "target" ``` and needed this: ``` scala copy query clarity.queries.patients from "clarity" to "target" create "patients" ```
SqlBackend the createTable method blindly drops the table if it already exists. Is this what we want? It could instead throw an exception or the method could return some kind...
Wrap the jdbc metadata call so that it is easy to check if a table exists.
For queries like count(), sum(), min(), etc… where only one value is returned, there should be a convenience function that wraps a single row select and returns a simple Option[Any]...
As a convenience it would be good to have a single row select for queries that are guaranteed to return only one row (e.g. select by id)