Basic Components - Connection - Flushing the connection.php 193 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4
<?php
$user = new User();
$user->name = "Jack";

5
$group = $conn->create("Group");
doctrine's avatar
doctrine committed
6 7 8 9
$group->name = "Drinking Club";

// saves all the changed objects into database

10
$conn->flush();
doctrine's avatar
doctrine committed
11
?>