php-rql icon indicating copy to clipboard operation
php-rql copied to clipboard

A PHP client driver for the RethinkDB query language (ReQL).

Results 35 php-rql issues
Sort by recently updated
recently updated
newest added

Anyone using this w/ PHP 8+ will get a syntax error from using the new keyword "Match" in `r\ValuedQuery\ValuedQuery`. Renaming the import to `use r\Queries\Math\Match AS RqlMatch;` and calling it...

rdb/DatumConverter.php:37 should be: `` if (is_subclass_of($val, "\\r\\Query", FALSE) && !is_subclass_of($val, '\r\Datum\Datum', FALSE)) { `` unless I'm doing something wrong, trying to insert anything but a true/false value results in autoloader...

Hi guys, If you are looking for a new PHP driver for RethinkDB, please follow this link: https://github.com/tbolier/php-rethink-ql We are actively developing this driver and looking for help! Thanks!

cannot connect to remote database $ssh_conn = ssh2_connect($ssh_server, $ssh_port); if($ssh_conn){ echo "Connection Successful!".""; } else{ echo 'Connection Failed...'; die(); } $ssh_auth = ssh2_auth_password($ssh_conn, $ssh_user, $ssh_pass); if($ssh_auth){ echo "Authentication Successful!".""; }...

In frontend apps like Php , we deal with images and graverters so much. Please could you add an inserting and retrieving of a binary data like image or graverter...

Adding php-rql multiple (>2) arguments support for the following API functions: - rOr - rAnd - contains Plus a few enhancements for PSR-2 support.

Hi there; I've been with this problem almost all night. Let me explain my current situation: I'm trying to set PHP-RQL using XAMPP (7.1.1-0) @ Ubuntu 16.04(.4) using PHP 7(.0.15)...

Because of the is_subclass_of check in php-rql https://github.com/danielmewes/php-rql/blob/master/rdb/DatumConverter.php#L37 saving something like this fails because the check triggers the autoloader that in turn reveals an unfortunate code in Braintree's lib. ```...