Better too many options than not enough eh?
On Thu, Dec 3, 2009 at 2:47 PM, Daniel wrote:
> Thanks. I did not realise it was so configurable.
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/p
Thanks. I did not realise it was so configurable.
--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general
void TBClientFrame::Login(const wxString &user, const wxString &pass)
{
std::string host("127.0.0.1");
std::string user_str = std::string(user.mb_str(*wxConvCurrent));
std::string pass_str = std::string(pass.mb_str(*wxConvCurrent));
if (db_conn.Connect(host, user_str, pass_str))
wxMe
Daniel writes:
> My program is reporting "Logged on." even if I enter an invalid or no
> password atall.
You sure the server is configured to ask for a password?
http://www.postgresql.org/docs/8.4/static/client-authentication.html
regards, tom lane
--
Sent via pgsql-ge