Tom Stryja
Tom Stryja
For now, I would try to select node and leaves - [subtree](http://we-rc.com/blog/2015/08/05/nested-set-model-practical-examples-part-ii) (depth of the leaf is there too) and insert them in loop one by one, under parent.
Delete proces is just one-by-one. I did not have situation where I neded to delete all leafs in branch at once. But I understand it may be usable.
@Medelpunkten Honestly ... I would not expect any progress. I had to change IDE and I'm now on PhpStorm.
I had the same results using `TableIdentifier`, but I thing `TableIdentifier` would be the way where to adapt this situation for SqlServer platform. Anyway, I used two ways for quering...
I tried this (quering to Microsoft Sql Server): ``` required: SELECT [db2].[dbo].[archive_sap].* but: $tableOne = new TableIdentifier('dbo.archive_sap', 'db2'); $sql = new Sql($this->adapter, $tableOne); ..... produce -> SELECT [db2].[dbo.archive_sap].*, ..... ```...