We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Call to undefined method CodeIgniter\Database\Postgre\Connection::listFields()
At BASEPATH/Database/BaseConnection.php at line 1263, method fieldExist() calls listFields() wich is absent
* Determine if a particular field exists * * @param string * @param string * @return bool */ public function fieldExists($fieldName, $tableName) { return in_array($fieldName, $this->listFields($tableName)); }
The text was updated successfully, but these errors were encountered:
I found the way as follows:
public function fieldExists($fieldName, $tableName) { return in_array($fieldName, $this->getFieldNames($tableName)); }
Little changes ... ¡big joy!
Sorry, something went wrong.
No branches or pull requests
Error: Call to undefined method CodeIgniter\Database\Postgre\Connection::listFields()
At BASEPATH/Database/BaseConnection.php at line 1263, method fieldExist() calls listFields() wich is absent
The text was updated successfully, but these errors were encountered: