Re: PostgreSQL back end to Excel ap

From: "Shoaib Mir" <shoaibmir(at)gmail(dot)com>
To: glenn(at)tangelosoftware(dot)com(dot)au
Cc: kkc(at)hydrosphere(dot)com, pgsql-novice(at)postgresql(dot)org
Subject: Re: PostgreSQL back end to Excel ap
Date: 2006-12-07 09:36:44
Message-ID: bf54be870612070136mc6c34cp2fd8adc7a3b2c9b7@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

For ADO using VBScript you can use it like this:

*dim conn, rst, cmd*

*set conn = server.createobject("ADOdb.connection")*

*conn.open "Data Source=testing;location=192.168.0.2
;UserID=username;password=password;"*

*Set cmd = Server.CreateObject("ADODB.Command")*

*cmd.ActiveConnection = conn*

*cmd.CommandText = "select empno from emp"*

*set rst = server.createobject("ADOdb.recordset")*

*Set rst= cmd.Execute*

*do until rst.eof*

*<<data processing code goes here>>*

*loop*

*rst.Close
conn.Close*
**

Hope this helps...

Regards,
Shoaib
On 12/7/06, Glenn Davy <glenn(at)tangelosoftware(dot)net> wrote:
>
> Hi Kelly - sorry to hijack your thread, but I have to know...
> when you say:
> > ADO (have used this with Access)
>
> how did you do this? If you can tell me how you did this in access with
> ADO (which ive never been able to do) Im pretty sure I can adopt the
> approach to excel?
>
> thanks
> Glenn
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faq
>

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message jennifer llerena 2006-12-07 14:14:06 Sort question ! ! !
Previous Message Glenn Davy 2006-12-07 00:28:58 Re: PostgreSQL back end to Excel ap