protected function OAuthStoreMySQL::sql_errcheck in Lingotek Translation 7.5
Same name and namespace in other branches
- 7.7 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::sql_errcheck()
- 7.2 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::sql_errcheck()
- 7.3 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::sql_errcheck()
- 7.4 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::sql_errcheck()
- 7.6 lib/oauth-php/library/store/OAuthStoreMySQL.php \OAuthStoreMySQL::sql_errcheck()
Overrides OAuthStoreSQL::sql_errcheck
5 calls to OAuthStoreMySQL::sql_errcheck()
- OAuthStoreMySQL::query in lib/
oauth-php/ library/ store/ OAuthStoreMySQL.php - * Perform a query, ignore the results * *
- OAuthStoreMySQL::query_all_assoc in lib/
oauth-php/ library/ store/ OAuthStoreMySQL.php - * Perform a query, ignore the results * *
- OAuthStoreMySQL::query_one in lib/
oauth-php/ library/ store/ OAuthStoreMySQL.php - * Perform a query, return the first column of the first row * *
- OAuthStoreMySQL::query_row in lib/
oauth-php/ library/ store/ OAuthStoreMySQL.php - * Perform a query, return the first row * *
- OAuthStoreMySQL::query_row_assoc in lib/
oauth-php/ library/ store/ OAuthStoreMySQL.php - * Perform a query, return the first row * *
1 method overrides OAuthStoreMySQL::sql_errcheck()
- OAuthStoreMySQLi::sql_errcheck in lib/
oauth-php/ library/ store/ OAuthStoreMySQLi.php
File
- lib/
oauth-php/ library/ store/ OAuthStoreMySQL.php, line 232
Class
Code
protected function sql_errcheck($sql) {
if (mysql_errno($this->conn)) {
$msg = "SQL Error in OAuthStoreMySQL: " . mysql_error($this->conn) . "\n\n" . $sql;
throw new OAuthException2($msg);
}
}