Browse Source

* Fix bug #34135, patch by Andrea Urbani

git-svn-id: trunk@39618 -
michael 7 năm trước cách đây
mục cha
commit
3d7ce42194
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/fcl-db/src/sqldb/oracle/oracleconnection.pp

+ 1 - 1
packages/fcl-db/src/sqldb/oracle/oracleconnection.pp

@@ -1203,7 +1203,7 @@ begin
     qry.next;
     while (name = qry.fields[0].asstring) and (not qry.eof) do
       begin
-      Fields := Fields + ';' + trim(qry.Fields[2].asstring);
+      Fields := Fields + ';' + trim(qry.Fields[1].asstring);
       qry.next;
       end;
     end;