home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / ssadbms.tcl < prev    next >
Text File  |  1997-07-22  |  753b  |  38 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:        %W%
  6. #      Author:        edri
  7. #      Description:    SQL Server Anywhere RDBMS attributes.
  8. #---------------------------------------------------------------------------
  9. # SccsId = %W% %G% Copyright 1996 Cadre Technologies Inc.
  10.  
  11. proc SqlAnyDBMS::name {} {
  12.     return "Sybase SQL Anywhere"
  13. }
  14.  
  15. proc SqlAnyDBMS::shortName {} {
  16.     return "ssa"
  17. }
  18.  
  19. proc SqlAnyDBMS::hasUser {} {
  20.     return 0
  21. }
  22.  
  23. proc SqlAnyDBMS::hasPassword {} {
  24.     return 1
  25. }
  26.  
  27. proc SqlAnyDBMS::hasDirectory {} {
  28.     return 1
  29. }
  30.  
  31. proc SqlAnyDBMS::hasServer {} {
  32.     return 1
  33. }
  34.  
  35. proc SqlAnyDBMS::hasHost {} {
  36.     return 1
  37. }
  38.