updated the docs for table options
This commit is contained in:
parent
1dfbc5b007
commit
7d5d2179d9
@ -11,7 +11,7 @@ class MyInnoDbRecord extends Doctrine_Record
|
|||||||
{
|
{
|
||||||
\$this->hasColumn('name', 'string');
|
\$this->hasColumn('name', 'string');
|
||||||
|
|
||||||
\$this->option('engine', 'INNODB');
|
\$this->option('type', 'INNODB');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>");
|
?>");
|
@ -85,6 +85,7 @@ class DocTool
|
|||||||
if (substr($c, 0, 5) == "<?php") {
|
if (substr($c, 0, 5) == "<?php") {
|
||||||
include("docs/$name.php");
|
include("docs/$name.php");
|
||||||
} elseif (strpos($c, '<br \>') !== false ||
|
} elseif (strpos($c, '<br \>') !== false ||
|
||||||
|
strpos($c, '<br />') !== false ||
|
||||||
strpos($c, '<ul>') !== false ||
|
strpos($c, '<ul>') !== false ||
|
||||||
strpos($c, '<p>') !== false) {
|
strpos($c, '<p>') !== false) {
|
||||||
print $c;
|
print $c;
|
||||||
|
@ -18,6 +18,7 @@ Connection management
|
|||||||
Object relational mapping
|
Object relational mapping
|
||||||
Introduction
|
Introduction
|
||||||
Table and class naming
|
Table and class naming
|
||||||
|
Table options
|
||||||
Columns
|
Columns
|
||||||
Column naming
|
Column naming
|
||||||
Column aliases
|
Column aliases
|
||||||
@ -237,6 +238,15 @@ DQL (Doctrine Query Language)
|
|||||||
Arithmetic functions
|
Arithmetic functions
|
||||||
Datetime functions
|
Datetime functions
|
||||||
Collection functions
|
Collection functions
|
||||||
|
Subqueries
|
||||||
|
Introduction
|
||||||
|
Comparisons using subqueries
|
||||||
|
Conditional expressions
|
||||||
|
ANY, IN and SOME
|
||||||
|
ALL
|
||||||
|
EXISTS and NOT EXISTS
|
||||||
|
Correlated subqueries
|
||||||
|
Subqueries in FROM clause
|
||||||
GROUP BY, HAVING clauses
|
GROUP BY, HAVING clauses
|
||||||
ORDER BY clause
|
ORDER BY clause
|
||||||
Introduction
|
Introduction
|
||||||
|
Loading…
x
Reference in New Issue
Block a user