-
I use this little function to encapsulate a common pattern. Maybe something like this can be in redbeanPHP code base?
```php
function getBean($type, $sql, $params = []) {
$row = R::getRow($sql,…
-
I've been thinking about this idea for a while now but i wanted to discuss it first before a possible implementation. It would be nice if there were a command to generate a PHP class for a type of bea…
-
Hi,
I have been trying to gain access to the website (https://www.redbeanphp.com/) for several days and always get the following error ERR_CONNECTION_RESET. Is there any other place I can dowload t…
-
Using `R::begin()` with the wrong options fails silently and the code continues execution
Since using R::begin() clearly marks the need to start a transaction, in my opinion it should throw an exce…
-
Just an idea: optionally create indexes when using R::findLike() to put indexes on the criteria fields.
-
Hello,
I'm using Redbean PHP v5.4 and I'm receiving this error:
"Class 'RedBeanPHP\\Driver\\PDO' not found"
This is my setup below, not sure if it would help.
R::setup('mysql:host='. DBC::…
-
Disliked being blinded at night, so I put together a custom style for redbeanphp.com that:
- allows you to modify your base CSS as you see fit and the dark version will adapt along with it (mostly)…
-
Hi might not be the right place.
But trying to understand RedBeanPHP, one thing i can't figure out tho, if i use the ownLists.
Is there anyway with find to only get ownEntrys with a specific val…
-
More and more we're seeing issues raised about our DB layer and it not working under specific circumstances. Our DB layer is also in need of a slight refactor to properly separate concerns and stop us…
-
Hi,
Creating a new bean and assigning a boolean value to a field results in this value being converted to either "1" or "0", despite having set stringifyFetches(false)
```
$bean = R::dispense("…