Red icon indicating copy to clipboard operation
Red copied to clipboard

A WiP ORM for Raku

Results 138 Red issues
Sort by recently updated
recently updated
newest added

Given that SQLite has added support for `RETURNING` in 3.35 (2021-03-12), the documentation should probably assume its presence for better readability (and at some later point the implementation should probably...

I'm getting: ``` Unhandled exception in code scheduled on thread 18 Unknown Error!!! Please, copy this backtrace and open an issue on https://github.com/FCO/Red/issues/new Driver: Red::Driver::Pg Original error: DB::Pg::Error::FatalError.new(message => "missing...

The SQL ```BETWEEN``` will be quite easy to implement now as #138 put in place the "list on the RHS" part. But for the life of me I can't think...

It would be nice to have default values for columns - which means, defined using the DEFAULT clause in SQL.

enhancement
help wanted

It would be handy to be able to express aggregate functions in a `.map`, `.classify` set so one can do something like: ``` select a, b, max(c) from foo group...

It is currently not documented. Features should be documented on the [wiki](https://github.com/FCO/Red/wiki). Feel free to create a new wiki page if you cannot find an existing page that is suitable.

Documentation

Let's say I have a module like `App::Example::Schema`, which contains my `red-defaults` like so: ``` red-defaults "Pg", host => "localhost", database => "example", user => "example", password => "password", :default,...

I'm trying to revive a homebrew project of mine. In the project I'm trying to automate DB management by recording all project tables (models) with their versions and whatever meta...

The following error only appears with the code spread across multiple files. If one inlines `CITestSetManager.rakumod` into `test.raku` it disappears. It's reproducible. ``` Select $opt = Red::AST::Select.new(of => DB::CITestSet, fields...