-
1. Is it possible to add column(s) to the link table or `sharedList` other than the foreign keys at the time of schema building and after that access the column(s) through one of the related beans?
2.…
-
Hello,
I have written some simple tests, and I was confused as to why they were taking so long to run. At first I thought it was my VM, so I ran them locally, but it was the same thing.
After profil…
-
Installation wizard fails at step 2 when creating a new DB.
Steps to reproduce:
1. Install new OSBS instance & configure LAMP stack
2. Go to http:///install
3. Fill in all required fields, click on '…
-
The implementation of the method `RedBeanPHP\OODBBean::__toString()` only works as intended if `\R::setErrorHandlingFUSE(\RedBeanPHP\OODBBean::C_ERR_IGNORE);` is set.
If a model class doesn't impleme…
-
I did a pull-request yesterday and since then i get an error: PHP Fatal error: Declaration of RedBeanPHP\\OODBBean::offsetGet() must be compatible with that of ArrayAccess::offsetGet(). Did the merge…
ghost updated
8 years ago
-
One thing that's really cool about RedBeanPHP is that you can basically pretend the beans are real objects. In particular, they serialize to JSON quite nicely, which allows you to return JSON objects …
-
`$limit=R::findOne('limits', 'userid=?', [$userid]);`
log:
`SELECT limits.* FROM limits WHERE userid=1 LIMIT 1 -- keep-cache
resultset: 1 rows`
after:
`echo $limit`
I get:
`{"id":"1","userId":"1","u…
-
I've made a few changes to taskboard to make it support mysql and they worked ok, though I noticed any popup form wouldn't close when pressing the "add" button. The item/board/comment is added, but t…
fauno updated
8 years ago
-
why redbean error not working in try catch if there is any error like duplicate key
-
The following hasChanged() will not give TRUE in RedBean 3.5, even if the column type is varchar. I didn't check newer versions though.
``` php
$bean = R::dispense( 'post' );
$bean->value = '01';
R::…