Ángel Herranz
Ángel Herranz
I am not sure whether the upgrade to ErlyDTL 0.10.0 is actualy needed by CB and I cannot evaluate it. On my view it is clear that something is wrong...
I think I am suffering the same problem. - I have an Erlang app. - I have an elixir app in elixir_libs/pet_repo. - pet_repo depends on ecto and postgresx with...
Hi, I am working on similar project I named "eesql" (Erlang Embedded SQL) in order to represent SQL Abstract Syntax Tree as Erlanf records too. My plan is to move...
@choptastic, I did not realize that the issue was created almost three years ago so I am not sure if my contribution is relevant or some work is already done...
There are some examples in comments, let me uncomment them: ``` erlang ([email protected])45> io:format("~s~n",[sql:to_sql(#select{from = [users]})]). SELECT ALL * FROM users ; ok ([email protected])47> io:format("~s~n",[sql:to_sql(#select{columns=[username, name],from = [users]})]). SELECT ALL...
I am afraid it is not represented yet but, according to the SQL syntax my first approach would be to define something like this: ``` erlang -type join_cond() :: {inner_join...
But reexport is not being used from the REPL, in the interpreter I am just doing `use_package(rfuzzy).` The reexport is in the main module of the library. I am not...
I am sandboxing by starting an engine and using stdin/stdout. Maybe this is enough for an initial version of our library. I am curious about the way the promt "?-...
Thank you! As a prototype we will follow the most simple approach for us: we will start a Ciao engine from Elixir and we will feed it with queries and...
Let me show you our first session, I am using the low level functions that will not be public in the first protype. It seems that the stdin/out approach is...