Code: Select all
select d.dname, d.loc, e.empno, e.ename, e.job, e.mgr, e.hiredate, e.sal, e.comm, e.deptno
from emp e
join dept d on d.deptno = e.deptno
The result set cannot be edited in a DBGrid.
If I define the select statement like this:
Code: Select all
select e.empno, e.ename, e.job, e.mgr, e.hiredate, e.sal, e.comm, e.deptno, d.dname, d.loc
from emp e
join dept d on d.deptno = e.deptno
The result set can be edited in a DBGrid.
I'm porting an application from IBObjects to IBDac and in IBObjects the order in the select statement wasn't an issue like it seems to be in IBDac.
Is this a bug or as designed and if it is as designed why is the order in the SQL statement important for IBDac ?
BTW this is the first real big problem I discovered in IBDac that took a lot of time to figure out. Still testing, but I really like what I'm seeing so far
