We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb0dd8 commit 42b42aeCopy full SHA for 42b42ae
1 file changed
user_guide_src/source/database/metadata.rst
@@ -163,6 +163,11 @@ Usage example::
163
{
164
echo $key->constraint_name;
165
echo $key->table_name;
166
+ echo $key->column_name;
167
echo $key->foreign_table_name;
168
+ echo $key->foreign_column_name;
169
}
170
171
+The object fields may be unique to the database you are using. For instance, SQLite3 does
172
+not return data on column names, but has the additional *sequence* field for compound
173
+foreign key definitions.
0 commit comments