-
Using `R::preload($books, 'author')` when some `$book` references `author` that isn't in DB anymore yields errors:
```
Undefined offset: 0 at (...)/lib/redbean/RedBean/Preloader.php:428
```
That's b…
-
The docs doesn't make it really clear how this must be achieved. It would be awesome if you could explain this a little bit more with an example or something.
many-to-many self-referential $categor…
-
It would be nice to have some way to return a full array representation of a bean, so we could reuse it on Javascript.
Right now, if I do this:
$obj = R::dispense("table");
$obj->export();
It only r…
-
Recently, I have been updating our code so that we can use all the neat and new features in RedBean to improve performance.
Is it possible for preloading of children using `R::preload` to be supporte…
-
hi,luracast.I want to use R3 with my program api implenments.I use phreeze framework's orm.phreeze url: http://wwww.phreeze.com. but when output json format,output such as:
``` html
object(Apps)[75]…
-
Spent quite a while trying to work out why things were misbehaving in one of our apps.
After some investigation, it looks like beans are wrongly marked as tainted which results in some recursive resu…
-
Hi there
On page:
http://redbeanphp.com/finding_beans
You mention that using something like below should get me results:
$rs=R::findAll('label',' `key` in(?)',array("title:mr"));
... but I foun…
-
Currently, this is the behaviour
```
$account = R::dispense('account');
$email = R::dispense('email');
$email->account = $account;
var_dump($email->account); //We get a bean
var_dump($account->ownEm…
-
Hi there. I was just playing with rb, and noticed, on http://redbeanphp.com/extra/plugin_cooker
the following line is used:
R::store($musician);
I suggest it should be:
R::store($musicianBean);
... …
-
Right now we have:
``` php
R::begin()
...
R::commit()
```
We can also use closures like this:
``` php
R::transaction(function()
{
...
});
```
However, when we want to create transactions that …