pgtclUtils.tcl
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. # getDBs :
  2. #   get the names of all the databases at a given host and port number
  3. #   with the defaults being the localhost and port 5432
  4. #   return them in alphabetical order
  5. proc getDBs { {host "localhost"} {port "5432"} } {
  6.     # datnames is the list to be result
  7.     set conn [pg_connect template1 -host $host -port $port]
  8.     set res [pg_exec $conn "SELECT datname FROM pg_database ORDER BY datname"]
  9.     set ntups [pg_result $res -numTuples]
  10.     for {set i 0} {$i < $ntups} {incr i} {
  11. lappend datnames [pg_result $res -getTuple $i]
  12.     }
  13.     pg_disconnect $conn
  14.     return $datnames
  15. }