Michal Ďuračík

Results 18 comments of Michal Ďuračík

@raulgbcr i tried your fork and it is not working for me. Im not sure if disableIdleTimeout helps, because [home assistant controller](https://github.com/home-assistant-libs/pychromecast/blob/master/pychromecast/controllers/homeassistant.py) already has disableIdleTimeout in receiver code. I connot...

I'm not sure, but i think that problem is not in nette database. You probably use it wrong. Principle of ndbt is, you select only from one table, there aren't...

Can you prepare steps, how to reproduce or write falling test?

I think that `->select('*')` is wrong construction, but problem is not directly in nette database. In PDO if you use `PDO::FETCH_ASSOC` mode, you get assoc array indexed by columns names...

Yes, but what if someone use `select('table1.*, table2.id')`. I also thinking, that it can automaticaly add aliased primary keys at end of query (as you suggest `table1.id`) and create rows...

I agree, but i don't know what else it can break. As i suggested exception, something like that is alredy implemented in `ResultSet`: https://github.com/nette/database/blob/master/src/Database/ResultSet.php#L263 but selection use result set only...

Sry for late response. So, at first this PR allow create your own row normalizer for whole session because you should specify it in config. Sometimes i need work with...

ok, thanks :)

This is already fixed, it should be closed.

You're right, but workaround for this could be sth. like this ``` PHP $row = $context->table("bug12")->select('"PSC"')->fetch() ```