home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / dbcorpdrop.tcl < prev    next >
Text File  |  1997-05-22  |  2KB  |  54 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. # Copyright (c) 1996 by Cayenne Software Inc.
  4. #
  5. # This software is furnished under a license and may be used only in
  6. # accordance with the terms of such license and with the inclusion of
  7. # the above copyright notice. This software or any other copies thereof
  8. # may not be provided or otherwise made available to any other person.
  9. # No title to and ownership of the software is hereby transferred.
  10. #
  11. # The information in this software is subject to change without notice
  12. # and should not be construed as a commitment by Cayenne Software Inc.
  13. #
  14. #---------------------------------------------------------------------------
  15. #
  16. #    File        : %W%
  17. #    Author        : edri
  18. #    Original date    : 16-9-1996
  19. #    Description    : dbserver script to drop a database.
  20. #---------------------------------------------------------------------------
  21.  
  22. proc finish {code file result} {
  23.     if {$code == 0} {
  24.         puts $file OK
  25.     } else {
  26.     puts $file ERROR
  27.     }
  28.     puts $file $result
  29.     close $file
  30.     exit $code
  31. }
  32.  
  33. set resultFile [lindex $argv 0]
  34. if {$resultFile == ""} {
  35.     puts stderr "No result file as first argument specified."
  36.     exit 1
  37. }
  38.  
  39. if [catch {set file [open $resultFile w]} error] {
  40.     puts stderr $error
  41.     exit 1
  42. }
  43.  
  44. if {[llength $argv] != 2} {
  45.     finish 1 $file "Usage: dbcorpdrop.tcl <resultFile> <databaseName>"
  46. }
  47.  
  48. db name [lindex $argv 1]
  49. if [catch {db drop} error] {
  50.     finish 1 $file $error
  51. }
  52.  
  53. finish 0 $file "done"
  54.