mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
add PDO:: prefix before PDO constants
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@308560 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a72cd0c2d2
commit
3747d3db53
1 changed files with 20 additions and 20 deletions
|
@ -7,7 +7,7 @@
|
|||
The following constants can be used when getting schema information. They
|
||||
can be passed to <function>PDO::cubrid_schema</function>.
|
||||
<table>
|
||||
<title>CUBRID schema flags</title>
|
||||
<title>PDO::CUBRID schema flags</title>
|
||||
<tgroup cols="2">
|
||||
<thead>
|
||||
<row>
|
||||
|
@ -17,87 +17,87 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_TABLE</entry>
|
||||
<entry>PDO::CUBRID_SCH_TABLE</entry>
|
||||
<entry>Get name and type of table in CUBRID.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_VIEW</entry>
|
||||
<entry>PDO::CUBRID_SCH_VIEW</entry>
|
||||
<entry>Get name and type of view in CUBRID.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_QUERY_SPEC</entry>
|
||||
<entry>PDO::CUBRID_SCH_QUERY_SPEC</entry>
|
||||
<entry>Get the query definition of view.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_ATTRIBUTE</entry>
|
||||
<entry>PDO::CUBRID_SCH_ATTRIBUTE</entry>
|
||||
<entry>Get the attributes of table column.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_TABLE_ATTRIBUTE</entry>
|
||||
<entry>PDO::CUBRID_SCH_TABLE_ATTRIBUTE</entry>
|
||||
<entry>Get the attributes of table.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_METHOD</entry>
|
||||
<entry>PDO::CUBRID_SCH_METHOD</entry>
|
||||
<entry>Get the instance method. The instance method is a method called
|
||||
by a class instance. It is used more often than the class method
|
||||
because most operations are executed in the instance.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_TABLE_METHOD</entry>
|
||||
<entry>PDO::CUBRID_SCH_TABLE_METHOD</entry>
|
||||
<entry>Get the class method. The class method is a method called by a
|
||||
class object. It is usually used to create a new class instance or to
|
||||
initialize it. It is also used to access or update class
|
||||
attributes.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_METHOD_FILE</entry>
|
||||
<entry>PDO::CUBRID_SCH_METHOD_FILE</entry>
|
||||
<entry>Get the information of the file where the method of the table is
|
||||
defined.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_SUPER_TABLE</entry>
|
||||
<entry>PDO::CUBRID_SCH_SUPER_TABLE</entry>
|
||||
<entry>Get the name and type of table which table inherites attributes
|
||||
from.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_SUB_TABLE</entry>
|
||||
<entry>PDO::CUBRID_SCH_SUB_TABLE</entry>
|
||||
<entry>Get the name and type of table which inherites attributes from
|
||||
this table.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_CONSTRAINT</entry>
|
||||
<entry>PDO::CUBRID_SCH_CONSTRAINT</entry>
|
||||
<entry>Get the table constraints.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_TRIGGER</entry>
|
||||
<entry>PDO::CUBRID_SCH_TRIGGER</entry>
|
||||
<entry>Get the table triggers.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_TABLE_PRIVILEGE</entry>
|
||||
<entry>PDO::CUBRID_SCH_TABLE_PRIVILEGE</entry>
|
||||
<entry>Get the privilege information of table.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_COL_PRIVILEGE</entry>
|
||||
<entry>PDO::CUBRID_SCH_COL_PRIVILEGE</entry>
|
||||
<entry>Get the privilege information of column.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_DIRECT_SUPER_TABLE</entry>
|
||||
<entry>PDO::CUBRID_SCH_DIRECT_SUPER_TABLE</entry>
|
||||
<entry>Get the direct super table of table.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_PRIMARY_KEY</entry>
|
||||
<entry>PDO::CUBRID_SCH_PRIMARY_KEY</entry>
|
||||
<entry>Get the table primary key.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_IMPORTED_KEYS</entry>
|
||||
<entry>PDO::CUBRID_SCH_IMPORTED_KEYS</entry>
|
||||
<entry>Get imported keys of table.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_EXPORTED_KEYS</entry>
|
||||
<entry>PDO::CUBRID_SCH_EXPORTED_KEYS</entry>
|
||||
<entry>Get exported keys of table.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>CUBRID_SCH_CROSS_REFERENCE</entry>
|
||||
<entry>PDO::CUBRID_SCH_CROSS_REFERENCE</entry>
|
||||
<entry>Get reference relationship of tow tables.</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in a new issue