proc rechandler {id name} {
puts "$id $name"
}
set user sa
set password odbc
database connect sqlca GENEA-PG $user $password
sqlca eval rechandler "select id_no, name from people"
##########################################################
Even if I supply the wrong user and password I can still connect to
the database. I'm using postgres on windows xp. Can someone help me on
this.