Lists: | Postg토토 사이트SQL : |
---|
From: | "Aziz ABI" <abi(at)mail(dot)cbi(dot)net(dot)ma> |
---|---|
To: | <pgsql-interfaces(at)postgreSQL(dot)org> |
Subject: | |
Date: | 2000-12-09 14:57:33 |
Message-ID: | 000801c061f0c5fc740$cac9ccc2@mail.cbi.net.ma |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-interfaces |
Bonjour
Vous pouvez m'aider à créer une connexion ODBC à partir par un petit module VB.
Merci
From: | Bob Kline <bkline(at)rksystems(dot)com> |
---|---|
To: | Aziz ABI <abi(at)mail(dot)cbi(dot)net(dot)ma> |
Cc: | pgsql-interfaces(at)postgreSQL(dot)org |
Subject: | Re: your mail |
Date: | 2000-12-13 04:09:34 |
Message-ID: | Pine.LNX.4.10.10012122300450.5451-100000@rksystems.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-interfaces |
On Sat, 9 Dec 2000, Aziz ABI wrote:
> Bonjour
>
> Vous pouvez m'aider crer une connexion ODBC partir par un petit
> module VB.
>
> Merci
>
Sure.
1. Set your pg_hba.conf to allow access from your Windows machine.
2. Install the ODBC driver for PostgreSQL on that machine.
3. Set up an ODBC DSN using that driver.
4. Here's some sample VB code to talk to the database using the DSN:
Dim rs As ADODB.Recordset
Dim cn As String
Dim rc As Variant
Dim r, c As Integer
Set rs = New ADODB.Recordset
cn = "DSN=pgtest;UID=moi;DATABASE=test"
rs.Open "SELECT * FROM t", cn, , , 1
Do While Not rs.EOF
rc = rs.GetRows
For r = 0 To UBound(rc, 2)
For c = 0 To UBound(rc, 1)
Debug.Print r & " " & c " " & rc(c, r)
Next c
Next r
Loop
Hope this help.
--
Bob Kline
mailto:bkline(at)rksystems(dot)com
http://www.rksystems.com
From: | "Adam Lang" <aalang(at)rutgersinsurance(dot)com> |
---|---|
To: | |
Cc: | <pgsql-interfaces(at)postgresql(dot)org> |
Subject: | Re: Re: your mail |
Date: | 2000-12-13 13:46:50 |
Message-ID: | 034a01c0650b1ee0400a0a0a@6014cwpza006 |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-interfaces |
For curiosity's sake... why are you using getrows?
Much easier to do:
dim fd as ADODB.Recordset
dim strRow as string
do while not rs.EOF
strRow = ""
for each fd in rs.Fields
strRow = strRow & " " & fd.value
next
debug.Print strRow
rs.MoveNext
Loop
set fd = nothing
Adam Lang
Systems Engineer
Rutgers Casualty Insurance Company
http://www.rutgersinsurance.com
----- Original Message -----
From: "Bob Kline" <bkline(at)rksystems(dot)com>
To: "Aziz ABI" <abi(at)mail(dot)cbi(dot)net(dot)ma>
Cc: <pgsql-interfaces(at)postgresql(dot)org>
Sent: Tuesday, December 12, 2000 11:09 PM
Subject: [INTERFACES] Re: your mail
> On Sat, 9 Dec 2000, Aziz ABI wrote:
>
> > Bonjour
> >
> > Vous pouvez m'aider à créer une connexion ODBC à partir par un petit
> > module VB.
> >
> > Merci
> >
>
> Sure.
>
> 1. Set your pg_hba.conf to allow access from your Windows machine.
> 2. Install the ODBC driver for PostgreSQL on that machine.
> 3. Set up an ODBC DSN using that driver.
> 4. Here's some sample VB code to talk to the database using the DSN:
>
> Dim rs As ADODB.Recordset
> Dim cn As String
> Dim rc As Variant
> Dim r, c As Integer
> Set rs = New ADODB.Recordset
> cn = "DSN=pgtest;UID=moi;DATABASE=test"
> rs.Open "SELECT * FROM t", cn, , , 1
> Do While Not rs.EOF
> rc = rs.GetRows
> For r = 0 To UBound(rc, 2)
> For c = 0 To UBound(rc, 1)
> Debug.Print r & " " & c " " & rc(c, r)
> Next c
> Next r
> Loop
>
> Hope this help.
>
> --
> Bob Kline
> mailto:bkline(at)rksystems(dot)com
> http://www.rksystems.com
From: | Bob Kline <bkline(at)rksystems(dot)com> |
---|---|
To: | Adam Lang <aalang(at)rutgersinsurance(dot)com> |
Cc: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | Re: Re: your mail |
Date: | 2000-12-13 15:32:05 |
Message-ID: | Pine.LNX.4.10.10012131026130.6006-100000@rksystems.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | Postg토토 사이트SQL : |
On Wed, 13 Dec 2000, Adam Lang wrote:
> For curiosity's sake... why are you using getrows?
>
> Much easier to do:
>
> dim fd as ADODB.Recordset
> dim strRow as string
> do while not rs.EOF
> strRow = ""
> for each fd in rs.Fields
> strRow = strRow & " " & fd.value
> next
> debug.Print strRow
> rs.MoveNext
> Loop
> set fd = nothing
Sure, that works, too. All I was trying to illustrate was how he could
establish the connection, which is what he originally asked. Turns out
that's not what he meant, though. What he really wanted to know was how
to create the data source programmatically.
--
Bob Kline
mailto:bkline(at)rksystems(dot)com
http://www.rksystems.com
From: | Katsuyuki Tanaka <katsut(at)cse(dot)unsw(dot)edu(dot)au> |
---|---|
To: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | passwd |
Date: | 2000-12-13 17:05:30 |
Message-ID: | Pine.GSO.4.21.0012140401060.25941-100000@mozart.orchestra.cse.unsw.EDU.AU |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-interfaces |
Can anyone tell me how to set passwd for users? I do
what I told in pg_passwd man it doesn;t seem to work.
eg, when I do
psql -u testdb
UserName: user
password: ....
anything i type in password let user access testdb,
I beilive that this username and password are what we have to
put in jdbc getConnection? Am I right?
one more question if one user create db is this accessable from
other users? Seem to me it si now since my authentification is not
working .....
Thanks
Katsu