1
0
mirror of synced 2025-01-18 06:21:40 +03:00

updated the docs for table options

This commit is contained in:
zYne 2007-03-01 22:41:41 +00:00
parent 1dfbc5b007
commit 7d5d2179d9
3 changed files with 12 additions and 1 deletions

View File

@ -11,7 +11,7 @@ class MyInnoDbRecord extends Doctrine_Record
{
\$this->hasColumn('name', 'string');
\$this->option('engine', 'INNODB');
\$this->option('type', 'INNODB');
}
}
?>");

View File

@ -85,6 +85,7 @@ class DocTool
if (substr($c, 0, 5) == "<?php") {
include("docs/$name.php");
} elseif (strpos($c, '<br \>') !== false ||
strpos($c, '<br />') !== false ||
strpos($c, '<ul>') !== false ||
strpos($c, '<p>') !== false) {
print $c;

View File

@ -18,6 +18,7 @@ Connection management
Object relational mapping
Introduction
Table and class naming
Table options
Columns
Column naming
Column aliases
@ -237,6 +238,15 @@ DQL (Doctrine Query Language)
Arithmetic functions
Datetime 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
ORDER BY clause
Introduction