Project name and homepage: Nette Framework

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

  1. Nette\Database - Problem with \DateInterval object on insert/update (rejected - David Grudl solved my problem before I could do it by myself, even though I asked about the possibility of my own implementation.)
  2. Nette\Database - ActiveRow problem with update of primary key (merged)
  3. Nette\Deprecated - Added .gitattributes file (merged - so composer will not download test & other files in non-dev mode)
  4. Zenify\DoctrineMigrations - Added support for PHP 5.4 (rejected - I’ve started working on it a several weeks ago, but when I finally created merge-request, then I found out that somebody else was faster than me)

Presentations

  1. Presentation of the aim of my work.pdf
  2. Presentation of the results of my work.pdf

Ohloh

Registration into openhub.net is not working anymore.

náhodou jsem koukl na vaší stránku a všechny chyby, na které odkazujete, už jsou označeny jako „fixed„. Jako semestrálku to bude chtít vybrat si něco jiného.
Comment by sojkam1 Pá 27. únor 2015, 08:42:53 CET