Sasha Alex Romanenko

Results 69 comments of Sasha Alex Romanenko

Thanks of great magnitude giving this a test after all this time. One thing to note, to make non-MySQL tests more realistic, try to always test with schema as part...

Thanks @rarog I will see if table identifer can be used in DDL too.

Thank you for report! At the moment cross schema or database joins are not supported. It is annoying, I agree. For now, maybe try `Zend\Db\Sql\Expression` which allows arbitrary SQL or...

How did you get same results with `TableIdentifier`? I did `$select->from(new TableIdentifier('users', 'db1'));` which correctly produced `SELECT [db1].[users].* FROM [db1].[users]` MSSQL seems to be the only one supporting this, so...

right, all classes share same quoting function so it would do that. Wonder if there is a way to decorate TableIdentifier at parse time specifically for SQLSRV platform to split...

While no answer from OP I will quickly jump in to give context. There are different cultures in table organizations between database vendors. - MySql devs separate applications by creating...

I do not think it is that eew in this case. Usage of `$select` is implementation choice. Technically, that component does not have to use it and is subject to...

_Is there a reason why table would be available via getRawState()....because table is required_ Yes. Raw state supplies data directly relevant and absolutely needed to perfrom INSERT database operation. Cannot...

You are welcome. I also appreciate conversation about different use cases. Can only have so much experience, unless talk to others. I really like your example. That does make me...

or no, take idea of duplication into 'columns' out, since SELECT could be more complex, those keys should just not exist.