Re: Nextval & Currval - Mailing list pgsql-sql

From Shavonne Marietta Wijesinghe
Subject Re: Nextval & Currval
Date
Msg-id 00c801c8cae5$aee27f60$0602a8c0@DREAM
Whole thread Raw
In response to Nextval & Currval  ("Shavonne Marietta Wijesinghe" <shavonne.marietta@studioform.it>)
List pgsql-sql
This is the test i did for the connection.
 
' Connecting to the database
WriteToFile logfilepath, date & " " & time & "isobject(conn) = " & isobject(session("connection")) & vbcrlf , True
if not isobject(session("connection")) then
    Set conn = Server.CreateObject("ADODB.Connection")
    conn.Open "Form_Store_PSQL"
    session("connection") = conn
    WriteToFile logfilepath, date & " " & time & "IF " & conn & vbcrlf , True
else
    set conn = session("connection")
    WriteToFile logfilepath, date & " " & time & "ELSE " & conn & vbcrlf , True
end if
 
 
Thank you.
 
Shavonne Wijesinghe

pgsql-sql by date:

Previous
From: "A. Kretschmer"
Date:
Subject: Re: Nextval & Currval
Next
From: Patrick Scharrenberg
Date:
Subject: Re: returning results from an update for joining other tables