dbapi_query_util.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dbapi_query_util.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:22:27  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: dbapi_query_util.cpp,v 1000.1 2004/06/01 19:22:27 gouriano Exp $
  10. * ===========================================================================
  11. *
  12. *                            PUBLIC DOMAIN NOTICE
  13. *               National Center for Biotechnology Information
  14. *
  15. *  This software/database is a "United States Government Work" under the
  16. *  terms of the United States Copyright Act.  It was written as part of
  17. *  the author's official duties as a United States Government employee and
  18. *  thus cannot be copyrighted.  This software/database is freely available
  19. *  to the public for use. The National Library of Medicine and the U.S.
  20. *  Government have not placed any restriction on its use or reproduction.
  21. *
  22. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and the U.S.
  24. *  Government do not and cannot warrant the performance or results that
  25. *  may be obtained by using this software or data. The NLM and the U.S.
  26. *  Government disclaim all warranties, express or implied, including
  27. *  warranties of performance, merchantability or fitness for any particular
  28. *  purpose.
  29. *
  30. *  Please cite the author in any work or product based on this material.
  31. *
  32. * ===========================================================================
  33. *
  34. * File Name:  $Id: dbapi_query_util.cpp,v 1000.1 2004/06/01 19:22:27 gouriano Exp $
  35. *
  36. * File Description: Implementation of dbapi language call
  37. * $Log: dbapi_query_util.cpp,v $
  38. * Revision 1000.1  2004/06/01 19:22:27  gouriano
  39. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  40. *
  41. * Revision 1.3  2004/05/18 18:24:52  gorelenk
  42. * Added PCH - <ncbi_pch.hpp> .
  43. *
  44. * Revision 1.2  2002/07/18 19:51:04  starchen
  45. * fixed some error
  46. *
  47. * Revision 1.1  2002/07/18 15:49:39  starchen
  48. * first entry
  49. *
  50. *
  51. *============================================================================
  52. */
  53. #include <ncbi_pch.hpp>
  54. // the following function  do not describe any DBAPI usage
  55.  char* getParam(char tag, int argc, char* argv[], bool* flag)
  56. {
  57.     for(int i= 1; i < argc; i++) {
  58.         if(((*argv[i] == '-') || (*argv[i] == '/')) && 
  59.            (*(argv[i]+1) == tag)) { // tag found
  60.             if(flag) *flag= true;
  61.             if(*(argv[i]+2) == '')  { // tag is a separate arg
  62.                 if(i == argc - 1) return 0;
  63.                 if(*argv[i+1] != *argv[i]) return argv[i+1];
  64.                 else return 0;
  65.             }
  66.             else return argv[i]+2;
  67.         }
  68.     }
  69.     if(flag) *flag= false;
  70.     return 0;
  71. }