From: | Joel Burton <joel(at)joelburton(dot)com> |
---|---|
To: | Fábio Sato <sato(at)simepar(dot)br> |
Cc: | <pgsql-odbc(at)postgresql(dot)org> |
Subject: | Re: ODBC Performance |
Date: | 2001-10-18 18:43:14 |
Message-ID: | Pine.LNX.4.30.0110181442180.4883-100000@temp.joelburton.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-odbc |
On Thu, 18 Oct 2001, [iso-8859-1] Fbio Sato wrote:
> > > is very disappointing... I have a procedure that update 868 rows and it is
> > > taking more than 5 minutes to complete.
>
> I think that the source code may be a better answer to your questions,
> so this is basically what I'm doing:
>
> conn.Open "DSN=mydb;uid=username;pwd=mypassword"
conn.Execute("begin")
> For I = 0 To size - 1
> sql = "update mytable set value1 = " & array1(I) & ", value2 = " &
> array2(I) & _
> ", value3 = " & array3(I) & ... & ", value20 = " & array20(I) &
> -
> " where code = " & codes(I)
> conn.Execute(sql)
> Next I
conn.Execute("commit")
Does this help?
--
Joel BURTON | joel(at)joelburton(dot)com | joelburton.com | aim: wjoelburton
Independent Knowledge Management Consultant
From | Date | Subject | |
---|---|---|---|
Next Message | Fábio Sato | 2001-10-18 18:54:27 | Re: ODBC Performance |
Previous Message | Fábio Sato | 2001-10-18 18:36:36 | Re: ODBC Performance |