renaming some files
This commit is contained in:
parent
31a0a0b677
commit
31ccb6369b
98 changed files with 30 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
||||||
|
<?php ?>
|
||||||
|
Doctrine_Db_Profiler is an eventlistener for Doctrine_Db. It provides flexible query profiling. Besides the sql strings
|
||||||
|
the query profiles include elapsed time to run the queries. This allows inspection of the queries that have been performed without the
|
||||||
|
need for adding extra debugging code to model classes.
|
||||||
|
<br \><br \>
|
||||||
|
Doctrine_Db_Profiler can be enabled by adding it as an eventlistener for Doctrine_Db.
|
||||||
|
<br \><br \>
|
||||||
|
<?php
|
||||||
|
renderCode("<?php
|
||||||
|
|
||||||
|
?>");
|
||||||
|
?>
|
0
manual/docs/DQL (Doctrine Query Language) - BNF.php
Normal file
0
manual/docs/DQL (Doctrine Query Language) - BNF.php
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
0
manual/docs/DQL (Doctrine Query Language) - Examples.php
Normal file
0
manual/docs/DQL (Doctrine Query Language) - Examples.php
Normal file
0
manual/docs/Drivers - Mysql - Tips and tricks.php
Normal file
0
manual/docs/Drivers - Mysql - Tips and tricks.php
Normal file
0
manual/docs/Functions - Contains.php
Normal file
0
manual/docs/Functions - Contains.php
Normal file
0
manual/docs/Functions - Like.php
Normal file
0
manual/docs/Functions - Like.php
Normal file
0
manual/docs/Functions - Regexp.php
Normal file
0
manual/docs/Functions - Regexp.php
Normal file
0
manual/docs/Native SQL - Component queries.php
Normal file
0
manual/docs/Native SQL - Component queries.php
Normal file
0
manual/docs/Native SQL - Scalar queries.php
Normal file
0
manual/docs/Native SQL - Scalar queries.php
Normal file
|
@ -0,0 +1 @@
|
||||||
|
This is the same as 'array' type in PHP.
|
|
@ -0,0 +1,14 @@
|
||||||
|
Doctrine supports default values for all data types. When default value is attached to a record column this means two of things.
|
||||||
|
First this value is attached to every newly created Record.
|
||||||
|
|
||||||
|
<code type="php">
|
||||||
|
class User extends Doctrine_record {
|
||||||
|
public function setTableDefinition() {
|
||||||
|
$this->hasColumn('name', 'string', 50, array('default' => 'default name'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$user = new User();
|
||||||
|
print $user->name; // default name
|
||||||
|
</code>
|
||||||
|
|
||||||
|
Also when exporting record class to database DEFAULT //value// is attached to column definition statement.
|
0
manual/docs/Operators - Logical operators.php
Normal file
0
manual/docs/Operators - Logical operators.php
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
A foreign key constraint specifies that the values in a column (or a group of columns) must match the values appearing in some row of another table.
|
||||||
|
In other words foreign key constraints maintain the referential integrity between two related tables.
|
0
manual/docs/Transactions - Deadlocks.php
Normal file
0
manual/docs/Transactions - Deadlocks.php
Normal file
0
manual/docs/Transactions - Lock modes.php
Normal file
0
manual/docs/Transactions - Lock modes.php
Normal file
Loading…
Add table
Reference in a new issue