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

A CartoDB client for PHP

Results 8 cartodbclient-php issues
Sort by recently updated
recently updated
newest added

I'm getting these two errors after setting up my config file and testing a query: PHP Warning: Invalid argument supplied for foreach() in /mypath/cartodb.class.php on line 39 PHP Fatal error:...

You have: `require_once 'carto.config.php';` on line 22. I think this should be: `require_once 'cartodb.config.php';`

A number of other libraries and code bases already declare an OAuthException exception class causing a `Fatal error: Cannot redeclare class OAuthException` notice. PR #9 wraps it in a `if...

Wraps OAuthException class declaration to make sure it hasn't been declared already

dropTables and getTables are not working for me. I checked the API and in my account it lists v2. The top of this class is /api/v1/. Maybe that's why? When...

The exception thrown by CartoDBClient::runSql() doesn't return a valid message string, at least when the error is a SQL error. In that case, the CartoDB response is an array, which...

I would suggest making these changes to the update function. Remove the lastID since this is an update statement and is not needed. Also adding single quotes to the values...

Hi, I'm using this php client and I want to insert some new data records into my CartoDB table which contain single-quotes. I have seen, that the classes don't provide...