Lotus Domino and PostgreSql in Linux - Mailing list pgsql-general

From Kallol Nandi
Subject Lotus Domino and PostgreSql in Linux
Date
Msg-id 028D68E08591C44FB746AC978426B7F520FB65@RSI-PUN-MAIL01.indussoft.rsystems.com
Whole thread Raw
List pgsql-general
I am running an agent in the domino server that connects to a database in Postgresql through odbc dsn.
I am getting an error "Error Creating product object" at the line     Set con = New ODBCConnection

Here is the code :

Option Public
Uselsx "*LSXODBC"

Sub Initialize

   Dim con As ODBCConnection
   Dim qry As ODBCQuery
   Dim result As ODBCResultSet
   Dim id As Integer
   Dim nam As String,job As String

Am getting Error here
   Set con = New ODBCConnection
   Set qry = New ODBCQuery
   Set result = New ODBCResultSet
   Set qry.Connection = con
   Set result.Query = qry

   status = con.ConnectTo("debug")
   qry.SQL = "select * from testtable"
   result.Execute
   Do
       result.NextRow
       id = result.GetValue("a", id)
       nam = result.GetValue("b", nam)
   Loop Until result.IsEndOfData
   result.Close(DB_CLOSE)
   con.Disconnect
End Sub


I guess it is an error related to Domino.But not sure..... may be related to the ODBC driver also.
Is there any way to solve it.
 
Thanks and Regards,
Kallol Nandi,
Systems Analyst,
Indus Software - A Division of R Systems International Ltd.,
Tidel Park, Taramani, Chennai-600113, India.
Phone: +91-44-22540014/6 Extn: 209
Fax: +91-44-22540017
Email: Kallol.Nandi@indussoft.com <http://uk.f200.mail.yahoo.com/ym/Compose?To=Kallol.Nandi@indussoft.com> 
Visit us @ http://www.indussoft.com/ 

"The information in this email is confidential, and intended solely for the addressee. Access to this email by anyone
elseis unauthorized. If you are the addressee, the contents of this email are intended for your use only and it must
notbe forwarded to any third party, without first obtaining written authorization from the originator, or Indus
Software.It may contain information, which is confidential and legally privileged, and the same shall not be used, or
dealtwith, by any third party, in any manner whatsoever, without the specific consent of Indus Software.
 

The opinions expressed are those of the sender, and do not necessarily reflect those of the Indus Software."

 

pgsql-general by date:

Previous
From: Hervé Piedvache
Date:
Subject: Strange trouble with pg_dump import
Next
From: "Kallol Nandi"
Date:
Subject: JDBC in PostgreSql for Linux