Method DB_Postgresql::list_fields
Inheritance:
- Database::list_fields()
- DB_Postgresql::list_fields()
Automatically extracted PHP DOC comment from code: END OF PHP DOC
Return a standardized array with field information
Standardized format:
- name: field name (e.g. my_field)
- type: field type (e.g. "int" or "number")
- length: field length (e.g. 20)
- precision: precision of a float number (e.g. 5)
- null: NULL or NOT NULL
- default: default value (e.g. "default_value")
- attributes: attributes (e.g. "unsigned")
- extra: extra information (e.g. auto_increment)
protected function string list_fields(string $strTable)
Parameters
- string $strTable
- Not documented yet. Please add documentation to this entry.
Add a comment