Index: openacs-4/packages/acs-bootstrap-installer/db-init-checks-oracle.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/db-init-checks-oracle.tcl,v diff -u -N -r1.3 -r1.4 --- openacs-4/packages/acs-bootstrap-installer/db-init-checks-oracle.tcl 13 Mar 2002 22:50:53 -0000 1.3 +++ openacs-4/packages/acs-bootstrap-installer/db-init-checks-oracle.tcl 17 Mar 2003 20:18:32 -0000 1.4 @@ -9,7 +9,7 @@ upvar $errors my_errors upvar $error_p my_error_p - foreach pool [nsv_get db_available_pools .] { + foreach pool [db_available_pools] { if { [catch { set db [ns_db gethandle -timeout 15 $pool]}] || ![string compare $db ""] } { # This should never happened - we were able to grab a handle previously, why not now? append my_errors "(db_bootstrap_checks) Internal error accessing pool \"$pool\".
" Index: openacs-4/packages/acs-bootstrap-installer/db-init-checks-postgresql.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/db-init-checks-postgresql.tcl,v diff -u -N -r1.7 -r1.8 --- openacs-4/packages/acs-bootstrap-installer/db-init-checks-postgresql.tcl 16 Jan 2003 16:54:07 -0000 1.7 +++ openacs-4/packages/acs-bootstrap-installer/db-init-checks-postgresql.tcl 17 Mar 2003 20:18:32 -0000 1.8 @@ -11,7 +11,7 @@ set my_errors "We found the following problems with your PostgreSQL installation:

+ @param dbn The database name to use. If empty_string, uses the default database. } { set full_statement_name [db_qd_get_fullname $statement_name] # This procedure needs a full rewrite! - db_with_handle Tdb { + db_with_handle -dbn $dbn Tdb { # Execute the query set selection [db_exec select $Tdb $full_statement_name $sql_qry] set Tcount 0