[[!meta title="Dendis Martin"]] **Project name and homepage:** [Nette](http://nette.org) Assignment ====== I'd like to help fix some bugs in database layout I've discovered (a) If I have in database column with type time/timeint, database layout will return it's values as instance of class DateInterval. But when I want to insert or update this column, database layout can't process DateInterval & crashes. See the example: > // This works just fine > $actRow = $this->connection->table('test')->insert(array('time' => '1:30:00')); > > // But this will crash, because database layout can't deal with class DateInterval on insert or update > $actRow = $this->connection->table('test')->insert(array('time' => new \DateInterval('PT1H30M'))); > > // On the other hand > $actRow = $this->connection->table('test')->insert(array('time' => '1:30:00')); > echo $actRow['time'] instanceof \DateInterval ? 'Yes' : 'No'; // Will print Yes (b) If I'm working with ActivRow and I want to update column which is defined as primary key the app crashes. It's because after each update of ActiveRow database layout fetches (refreshes) row from database, but with old values of primary keys. Seethe example: > // In database I have in table test defined column id as primary key > $actRow = $this->connection->table('test')->insert(array('username' => 'marek')); > > // This operation will fail, the data in the database has been modified > // But after update, database layout will try to refresh ActiveRow from database > // and use old primary key 'marek' instead of new one 'ondra' so no record is found and exception is thrown > $actRow->update(array('username' => 'ondra')); and maybe some others... Links documenting the results of my work ====== Ok, so for now I've created some issues on GitHub & waiting for reply from members of the project 1. [Problem with \DateInterval object on insert/update](https://github.com/nette/database/issues/56) 2. [ActiveRow problem with update of primary key](https://github.com/nette/database/issues/57) Presentation ========== Ohloh ===== Here, I'll fill in the HTML code of the [Ohloh widgetu][w] showing my KudoRank. For example: [w]:https://www.ohloh.net/accounts/dendimar/widgets [1]: ef