create.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* Create a MERGE-file */
  17. #include "mrgdef.h"
  18. /* create file named 'name' and save filenames in it
  19.    table_names should be NULL or a vector of string-pointers with
  20.    a NULL-pointer last
  21.    */
  22. int mrg_create(name,table_names)
  23. const char *name,**table_names;
  24. {
  25.   int save_errno;
  26.   uint errpos;
  27.   File file;
  28.   char buff[FN_REFLEN],*end;
  29.   DBUG_ENTER("mrg_create");
  30.   errpos=0;
  31.   if ((file = my_create(fn_format(buff,name,"",MRG_NAME_EXT,4),0,
  32.        O_RDWR | O_TRUNC,MYF(MY_WME))) < 0)
  33.     goto err;
  34.   errpos=1;
  35.   if (table_names)
  36.     for ( ; *table_names ; table_names++)
  37.     {
  38.       strmov(buff,*table_names);
  39.       fn_same(buff,name,4);
  40.       *(end=strend(buff))='n';
  41.       if (my_write(file,*table_names,(uint) (end-buff+1),
  42.    MYF(MY_WME | MY_NABP)))
  43. goto err;
  44.     }
  45.   if (my_close(file,MYF(0)))
  46.     goto err;
  47.   DBUG_RETURN(0);
  48. err:
  49.   save_errno=my_errno;
  50.   switch (errpos) {
  51.   case 1:
  52.     VOID(my_close(file,MYF(0)));
  53.   }
  54.   my_errno=save_errno; /* Return right errocode */
  55.   DBUG_RETURN(-1);
  56. } /* mrg_create */