02.12.2019 18:28, 'Carlos H. Cantu' lis...@warmboot.com.br [firebird-support] 
wrote:
> IB DataPump from Clevercomponents has problems with FB 3, but now it
> is open source. It is made in Delphi. If someone interested and with
> some free time can fix the problem and even update the application:
> 
> https://github.com/CleverComponents/Interbase-DataPump/

   Nice to see that it is open source. If the problem is "Index out of range" 
error then 
here is the patch for it:

--- ibpMain.pas 2002-11-01 03:40:02.000000000 +0100
+++ ibpMain.pas.new     2019-02-18 19:23:28.403022900 +0100
@@ -2177,7 +2177,8 @@
          begin
            rd.Add(TrimRight(qryFree.Fields[0].AsString));
            i := lst.IndexOf(rd[rd.Count-1]);
-          lst.Delete(i);
+          if i >= 0 then
+            lst.Delete(i);
            DelDep(rd[rd.Count-1]);
            qryFree.Next;
          end;


-- 
   WBR, SD.


------------------------------------

------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Visit http://www.firebirdsql.org and click the Documentation item
on the main (top) menu.  Try FAQ and other links from the left-side menu there.

Also search the knowledgebases at http://www.ibphoenix.com/resources/documents/ 

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
------------------------------------

Yahoo Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/firebird-support/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/firebird-support/join
    (Yahoo! ID required)

<*> To change settings via email:
    firebird-support-dig...@yahoogroups.com 
    firebird-support-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
    firebird-support-unsubscr...@yahoogroups.com

<*> Your use of Yahoo Groups is subject to:
    https://info.yahoo.com/legal/us/yahoo/utos/terms/

  • [firebi... Kevin Stanton kevin.stan...@rdb-solutions.com [firebird-support]
    • [f... Norbert Saint Georges n...@tetrasys.eu [firebird-support]
      • ... Kevin Stanton kevin.stan...@rdb-solutions.com [firebird-support]
        • ... Norbert Saint Georges n...@tetrasys.eu [firebird-support]
          • ... Karol Bieniaszewski liviusliv...@poczta.onet.pl [firebird-support]
            • ... Kevin Stanton kevin.stan...@rdb-solutions.com [firebird-support]
    • [f... blackfalconsoftw...@outlook.com [firebird-support]
    • Re... 'Carlos H. Cantu' lis...@warmboot.com.br [firebird-support]
      • ... Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
        • ... 'Carlos H. Cantu' lis...@warmboot.com.br [firebird-support]
          • ... Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
          • ... Norbert Saint Georges n...@tetrasys.eu [firebird-support]
            • ... 'Carlos H. Cantu' lis...@warmboot.com.br [firebird-support]
              • ... Norbert Saint Georges n...@tetrasys.eu [firebird-support]

Reply via email to