Changeset 4537
- Timestamp:
- 06/21/08 14:12:31 (13 months ago)
- Location:
- branches/0.11/manual/docs/en/getting-started
- Files:
-
- 3 modified
-
installation.txt (modified) (1 diff)
-
starting-new-project.txt (modified) (1 diff)
-
working-with-existing-databases.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/manual/docs/en/getting-started/installation.txt
r4159 r4537 36 36 </code> 37 37 38 If you do not have a SVN client, chose one from the list below. Find the **Checkout** option and enter 39 svn.phpdoctrine.org/branches/0.10 in the **path** or **repository url** parameter. There is no need for a username 38 If you do not have a SVN client, chose one from the list below. Find the **Checkout** option and enter svn.phpdoctrine.org/branches/0.10 in the **path** or **repository url** parameter. There is no need for a username 40 39 or password to check out Doctrine. 41 40 -
branches/0.11/manual/docs/en/getting-started/starting-new-project.txt
r4159 r4537 50 50 </code> 51 51 52 Have a look in /path/to/generate/models/ and /path/to/generate/models/generated. You will see User.php and BaseUser. class.php.52 Have a look in /path/to/generate/models/ and /path/to/generate/models/generated. You will see User.php and BaseUser.php. 53 53 User.php is for you to add your own custom functionality, and BaseUser.php is the code which is automatically regenerated 54 54 from the YAML schema file above each time. -
branches/0.11/manual/docs/en/getting-started/working-with-existing-databases.txt
r4318 r4537 2 2 3 3 A common case when looking for ORM tools like Doctrine is that the database and the code that access it is growing 4 large/complex. A more substantial tool is needed th en manual SQL code.4 large/complex. A more substantial tool is needed than manual SQL code. 5 5 6 6 Doctrine has support for generating Doctrine_Record classes from your existing database. There is no need for you to … … 25 25 </code> 26 26 27 Now we would like to convert it into Doctrine record class. It can be achieved easily with the following code snippet:27 Now we would like to convert it into Doctrine_Record class. It can be achieved easily with the following code snippet: 28 28 29 29 <code type="php">