-
Hi tryed to fit a bean in to my permission system
users_roles thought i could use usersRoles, and that gives an error.
`AH01071: Got error 'PHP message: PHP Fatal error: Uncaught RedBeanPHP\\Red…
-
```
$ta = R::load('utilisateur', 1);
$ta->langue_id = 4; // int(6)
$ta->langue = "fr"; //varchar(2) utf8 general CI
R::store($ta);
```
> Fatal error: Uncaught RedBeanPHP\RedException: Cannot ca…
-
Hi,
I would like to share a step-by-step process on how to install and run **TaskBoard** under **IIS** in a **Windows** environment... at least it worked for me: #306
1. Download and copy the **Task…
-
I am using an excellent Parallel extension for multithreaded execution and it works perfectly. Unfortunately, RedBeanPHP uses the static class facade with the global state which makes it impossible to…
-
At `Multiple database` here https://redbeanphp.com/index.php?p=/database
static calls are used to switch databases. Could it be made possible to get an object instance representing the database con…
-
Thanks again for implementing `findForUpdate`, it has 'bean' useful - however I've found myself in a few situations where I only want to work with a single bean, similar to `findOne`. Since findForUpd…
-
After many years of dedicated services, I finally upgraded from RedBean 3 to RedBean 4. I know… it's a bit late :-) It wasn't crazy complicated, but a few things did prove tricky (and I noticed a coup…
-
Hi, I found just on api documentation (nowhere else) the use of hasDatabase method, usefull for multiple connection setting. Maybe it could be documented at redbeanphp.com site as a way of checking if…
-
So im playing around with Redbeanphp
Got a mysql.php file where i run the connection method.
```
use \RedBeanPHP\R;
try {
R::setup('mysql:host=' . getenv('MYSQL_HOST') . ';dbname=' . ge…
-
I end up repeating the same pattern all over my code:
```php
$user = R::findOne(
'user',
'email = :email',
array(':email' => 'bob.smith@example.org')
);
R::preload($user, array('language'));
…