Re: Nextval & Currval

Поиск
Список
Период
Сортировка
От Shavonne Marietta Wijesinghe
Тема Re: Nextval & Currval
Дата
Msg-id 00c801c8cae5$aee27f60$0602a8c0@DREAM
обсуждение исходный текст
Ответ на Nextval & Currval  ("Shavonne Marietta Wijesinghe" <shavonne.marietta@studioform.it>)
Список 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 по дате отправления:

Предыдущее
От: "A. Kretschmer"
Дата:
Сообщение: Re: Nextval & Currval
Следующее
От: Patrick Scharrenberg
Дата:
Сообщение: Re: returning results from an update for joining other tables