Re: [pgadmin-support] ayuda

2002-10-30 Thread Rick Moore
Perdone por favor mi español inadecuado. Yo no estoy seguro que entendí su
pregunta, pero...

¿Tiene usted postgres instalado y correr? Pgadmin comunica con camarero de
postgres vía el TCP/IP protocolo. Tan el camarero de postgres debe estar
corriendo con el "-i" opción. También, pienso que eso hay un programa
ipc_daemon que se requiere.

>
>
>
> Soy Edwards
> Le he instalado pgadmin
> pero no quiere entrar sale problemas de servidor, password
> como puedo solucionar estos problemas
>
>
> _
> MSN. Más Útil Cada Día http://www.msn.es/intmap/
>
>
> ---(end of broadcast)---
> TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
>

--
Rick

All wiyht.  Rho sritched mg kegtops awound?



---(end of broadcast)---
TIP 6: Have you searched our list archives?

http://archives.postgresql.org



Re: [pgadmin-support] Connection ODBC

2003-01-07 Thread Rick Moore


> 
> Date: 06/01/03
> 
>  I need to connect ASP - (Active Server Pages)to the data base 
> POSTGRESQL,Is it possible?

Yes.

>  I don't know the connection string,so Ineedthat someone can help me, and 
> tell me some information about that.

I could send you a full example (of course the database table/function names, 
etc. are specific to our application domain.)  The actual connection stuff is 
like this:


<%
... initialization stuff removed from here...

Session("dbname") = "iprdemo"
 Set Conn = Server.CreateObject("ADODB.Connection")
 Dim constr
 constr="dsn=" + dbname + ";uid=XXX;pwd=YYY"
 Conn.Open constr

.. continued processing removed from here...
%>
... remainder of html stuff removed...

>  Are there some more special thing to do?
> 

We have an ODBC System DSN called "iprdemo" that points to a PostGreSQL 
database on our local Intranet.  The postmaster must be running on the machine 
identified in that DSN, and the user specified has to have access to the 
database.  

> Thanks for all...
> 
> From Brazil
> Sds, Daniel
> 
> 

--
Rick

Intuition (n): an uncanny sixth sense which tells people 
that they are right, whether they are or not.



---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])