SchmitzKater
unread,Jun 24, 2011, 3:20:57 AM6/24/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CakePHP-de für deutsche CakePHP Entwickler
Hi,
ich habe folgendes Problem.
Beim Aufruf von $this->ModelName->save($this->data) werden
grundsätzlich 2 Datensätze in der DB-Tabelle erstellt.
Hier mein Code:
Model:
<?php
class Test extends AppModel
{
}
Controller:
<?php
class TestController extends AppController
{
function index()
{
$this->data['Test']['name'] = 'testname';
$this->Test->save($this->data);
}
}
Das Table tests:
+-------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| name | varchar(255) | NO | | NULL | |
+-------+--------------+------+-----+---------+----------------+
Ich hab keine Ahnung, warum das so ist und komme hier nicht weiter.
Vielen Dank
Gruss Stefan