]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/sql_create.c
63c5e4ed12b4235b025a82259102d8f2feac23c5
[bacula/bacula] / bacula / src / cats / sql_create.c
1 /*
2  * Bacula Catalog Database Create record interface routines
3  * 
4  *    Kern Sibbald, March 2000
5  *
6  *    Version $Id$
7  */
8
9 /*
10    Copyright (C) 2000-2003 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 /* *****FIXME**** fix fixed length of select_cmd[] and insert_cmd[] */
30
31 /* The following is necessary so that we do not include
32  * the dummy external definition of DB.
33  */
34 #define __SQL_C                       /* indicate that this is sql.c */
35
36 #include "bacula.h"
37 #include "cats.h"
38
39 #if    HAVE_MYSQL || HAVE_SQLITE
40
41 /* -----------------------------------------------------------------------
42  *
43  *   Generic Routines (or almost generic)
44  *
45  * -----------------------------------------------------------------------
46  */
47
48 /* Forward referenced subroutines */
49 static int db_create_file_record(B_DB *mdb, ATTR_DBR *ar);
50 static int db_create_filename_record(B_DB *mdb, ATTR_DBR *ar);
51 static int db_create_path_record(B_DB *mdb, ATTR_DBR *ar);
52
53
54 /* Imported subroutines */
55 extern void print_dashes(B_DB *mdb);
56 extern void print_result(B_DB *mdb);
57 extern int QueryDB(char *file, int line, B_DB *db, char *select_cmd);
58 extern int InsertDB(char *file, int line, B_DB *db, char *select_cmd);
59 extern void split_path_and_filename(B_DB *mdb, char *fname);
60
61
62 /* Create a new record for the Job
63  * Returns: 0 on failure
64  *          1 on success
65  */
66 int
67 db_create_job_record(B_DB *mdb, JOB_DBR *jr)
68 {
69    char dt[MAX_TIME_LENGTH];
70    time_t stime;
71    struct tm tm;
72    int stat;
73    char JobId[30];
74    utime_t JobTDate;
75    char ed1[30];
76
77    stime = jr->SchedTime;
78
79    localtime_r(&stime, &tm); 
80    strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
81    JobTDate = (utime_t)stime;
82
83    db_lock(mdb);
84    if (!db_next_index(mdb, "Job", JobId)) {
85       jr->JobId = 0;
86       db_unlock(mdb);
87       return 0;
88    }
89    /* Must create it */
90    Mmsg(&mdb->cmd,
91 "INSERT INTO Job (JobId,Job,Name,Type,Level,JobStatus,SchedTime,JobTDate) VALUES \
92 (%s,'%s','%s','%c','%c','%c','%s',%s)", 
93            JobId, jr->Job, jr->Name, (char)(jr->Type), (char)(jr->Level), 
94            (char)(jr->JobStatus), dt, edit_uint64(JobTDate, ed1));
95
96    if (!INSERT_DB(mdb, mdb->cmd)) {
97       Mmsg2(&mdb->errmsg, _("Create DB Job record %s failed. ERR=%s\n"), 
98             mdb->cmd, sql_strerror(mdb));
99       jr->JobId = 0;
100       stat = 0;
101    } else {
102       jr->JobId = sql_insert_id(mdb);
103       stat = 1;
104    }
105    db_unlock(mdb);
106    return stat;
107 }
108
109 /* Create a JobMedia record for medium used this job   
110  * Returns: 0 on failure
111  *          1 on success
112  */
113 int
114 db_create_jobmedia_record(B_DB *mdb, JOBMEDIA_DBR *jm)
115 {
116    int stat;
117
118    db_lock(mdb);
119    Mmsg(&mdb->cmd, "SELECT JobId, MediaId FROM JobMedia WHERE \
120 JobId=%d AND MediaId=%d", jm->JobId, jm->MediaId);
121
122    Dmsg0(30, mdb->cmd);
123    if (QUERY_DB(mdb, mdb->cmd)) {
124       mdb->num_rows = sql_num_rows(mdb);
125       if (mdb->num_rows > 0) {
126          Mmsg0(&mdb->errmsg, _("Create JobMedia failed. Record already exists.\n"));
127          sql_free_result(mdb);
128          db_unlock(mdb);
129          Dmsg0(0, "Already have JobMedia record\n");
130          return 0;
131       }
132       sql_free_result(mdb);
133    }
134
135    /* Must create it */
136    Mmsg(&mdb->cmd, 
137 "INSERT INTO JobMedia (JobId,MediaId,FirstIndex,LastIndex,\
138 StartFile,EndFile,StartBlock,EndBlock) \
139 VALUES (%u,%u,%u,%u,%u,%u,%u,%u)", 
140        jm->JobId, jm->MediaId, jm->FirstIndex, jm->LastIndex,
141        jm->StartFile, jm->EndFile, jm->StartBlock, jm->EndBlock);
142
143    Dmsg0(30, mdb->cmd);
144    if (!INSERT_DB(mdb, mdb->cmd)) {
145       Mmsg2(&mdb->errmsg, _("Create db JobMedia record %s failed. ERR=%s\n"), mdb->cmd, 
146          sql_strerror(mdb));
147       stat = 0;
148    } else {
149       stat = 1;
150    }
151    db_unlock(mdb);
152    Dmsg0(30, "Return from JobMedia\n");
153    return stat;
154 }
155
156
157
158 /* Create Unique Pool record
159  * Returns: 0 on failure
160  *          1 on success
161  */
162 int
163 db_create_pool_record(B_DB *mdb, POOL_DBR *pr)
164 {
165    int stat;
166    char ed1[30], ed2[30], ed3[50];
167
168    Dmsg0(200, "In create pool\n");
169    db_lock(mdb);
170    Mmsg(&mdb->cmd, "SELECT PoolId,Name FROM Pool WHERE Name='%s'", pr->Name);
171    Dmsg1(200, "selectpool: %s\n", mdb->cmd);
172
173    if (QUERY_DB(mdb, mdb->cmd)) {
174
175       mdb->num_rows = sql_num_rows(mdb);
176    
177       if (mdb->num_rows > 0) {
178          Mmsg1(&mdb->errmsg, _("pool record %s already exists\n"), pr->Name);
179          sql_free_result(mdb);
180          db_unlock(mdb);
181          return 0;
182       }
183       sql_free_result(mdb);
184    }
185
186    /* Must create it */
187    Mmsg(&mdb->cmd, 
188 "INSERT INTO Pool (Name,NumVols,MaxVols,UseOnce,UseCatalog,\
189 AcceptAnyVolume,AutoPrune,Recycle,VolRetention,VolUseDuration,\
190 MaxVolJobs,MaxVolFiles,MaxVolBytes,PoolType,LabelFormat) \
191 VALUES ('%s',%u,%u,%d,%d,%d,%d,%d,%s,%s,%u,%u,%s,'%s','%s')", 
192                   pr->Name,
193                   pr->NumVols, pr->MaxVols,
194                   pr->UseOnce, pr->UseCatalog,
195                   pr->AcceptAnyVolume,
196                   pr->AutoPrune, pr->Recycle,
197                   edit_uint64(pr->VolRetention, ed1),
198                   edit_uint64(pr->VolUseDuration, ed2),
199                   pr->MaxVolJobs, pr->MaxVolFiles,
200                   edit_uint64(pr->MaxVolBytes, ed3),
201                   pr->PoolType, pr->LabelFormat);
202    Dmsg1(200, "Create Pool: %s\n", mdb->cmd);
203    if (!INSERT_DB(mdb, mdb->cmd)) {
204       Mmsg2(&mdb->errmsg, _("Create db Pool record %s failed: ERR=%s\n"), 
205             mdb->cmd, sql_strerror(mdb));
206       pr->PoolId = 0;
207       stat = 0;
208    } else {
209       pr->PoolId = sql_insert_id(mdb);
210       stat = 1;
211    }
212    db_unlock(mdb);
213    
214    return stat;
215 }
216
217
218 /* 
219  * Create Unique Media record   
220  * Returns: 0 on failure
221  *          1 on success
222  */ 
223 int
224 db_create_media_record(B_DB *mdb, MEDIA_DBR *mr)
225 {
226    int stat;
227    char ed1[30], ed2[30], ed3[30], ed4[30];
228    char dt[MAX_TIME_LENGTH];
229    struct tm tm;
230
231    db_lock(mdb);
232    Mmsg(&mdb->cmd, "SELECT MediaId FROM Media WHERE VolumeName='%s'", 
233            mr->VolumeName);
234    Dmsg1(110, "selectpool: %s\n", mdb->cmd);
235
236    if (QUERY_DB(mdb, mdb->cmd)) {
237       mdb->num_rows = sql_num_rows(mdb);
238       if (mdb->num_rows > 0) {
239          Mmsg1(&mdb->errmsg, _("Media record %s already exists\n"), mr->VolumeName);
240          sql_free_result(mdb);
241          db_unlock(mdb);
242          return 0;
243       }
244       sql_free_result(mdb);
245    }
246
247    /* Must create it */
248    if (mr->LabelDate) {
249       localtime_r(&mr->LabelDate, &tm); 
250       strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
251    } else {
252       strcpy(dt, "0000-00-00 00:00:00");
253    }
254    Mmsg(&mdb->cmd, 
255 "INSERT INTO Media (VolumeName,MediaType,PoolId,MaxVolBytes,VolCapacityBytes," 
256 "Recycle,VolRetention,VolUseDuration,VolStatus,LabelDate,Slot) "
257 "VALUES ('%s','%s',%u,%s,%s,%d,%s,%s,'%s','%s',%d)", 
258                   mr->VolumeName,
259                   mr->MediaType, mr->PoolId, 
260                   edit_uint64(mr->MaxVolBytes,ed1),
261                   edit_uint64(mr->VolCapacityBytes, ed2),
262                   mr->Recycle,
263                   edit_uint64(mr->VolRetention, ed3),
264                   edit_uint64(mr->VolUseDuration, ed4),
265                   mr->VolStatus, dt,
266                   mr->Slot);
267
268    Dmsg1(500, "Create Volume: %s\n", mdb->cmd);
269    if (!INSERT_DB(mdb, mdb->cmd)) {
270       Mmsg2(&mdb->errmsg, _("Create DB Media record %s failed. ERR=%s\n"),
271             mdb->cmd, sql_strerror(mdb));
272       stat = 0;
273    } else {
274       mr->MediaId = sql_insert_id(mdb);
275       stat = 1;
276    }
277    db_unlock(mdb);
278    return stat;
279 }
280
281
282
283 /* 
284  * Create a Unique record for the client -- no duplicates 
285  * Returns: 0 on failure
286  *          1 on success with id in cr->ClientId
287  */
288 int db_create_client_record(B_DB *mdb, CLIENT_DBR *cr)
289 {
290    SQL_ROW row;
291    int stat;
292    char ed1[30], ed2[30];
293
294    db_lock(mdb);
295    Mmsg(&mdb->cmd, "SELECT ClientId,Uname FROM Client WHERE Name='%s'", cr->Name);
296
297    cr->ClientId = 0;
298    if (QUERY_DB(mdb, mdb->cmd)) {
299
300       mdb->num_rows = sql_num_rows(mdb);
301       
302       /* If more than one, report error, but return first row */
303       if (mdb->num_rows > 1) {
304          Mmsg1(&mdb->errmsg, _("More than one Client!: %d\n"), (int)(mdb->num_rows));
305          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
306       }
307       if (mdb->num_rows >= 1) {
308          if ((row = sql_fetch_row(mdb)) == NULL) {
309             Mmsg1(&mdb->errmsg, _("error fetching Client row: %s\n"), sql_strerror(mdb));
310             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
311             sql_free_result(mdb);
312             db_unlock(mdb);
313             return 0;
314          }
315          cr->ClientId = atoi(row[0]);
316          if (row[1]) {
317             bstrncpy(cr->Uname, row[1], sizeof(cr->Uname));
318          } else {
319             cr->Uname[0] = 0;         /* no name */
320          }
321          sql_free_result(mdb);
322          db_unlock(mdb);
323          return 1;
324       }
325       sql_free_result(mdb);
326    }
327
328    /* Must create it */
329    Mmsg(&mdb->cmd, "INSERT INTO Client (Name, Uname, AutoPrune, \
330 FileRetention, JobRetention) VALUES \
331 ('%s', '%s', %d, %s, %s)", cr->Name, cr->Uname, cr->AutoPrune,
332       edit_uint64(cr->FileRetention, ed1),
333       edit_uint64(cr->JobRetention, ed2));
334
335    if (!INSERT_DB(mdb, mdb->cmd)) {
336       Mmsg2(&mdb->errmsg, _("Create DB Client record %s failed. ERR=%s\n"),
337             mdb->cmd, sql_strerror(mdb));
338       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
339       cr->ClientId = 0;
340       stat = 0;
341    } else {
342       cr->ClientId = sql_insert_id(mdb);
343       stat = 1;
344    }
345    db_unlock(mdb);
346    return stat;
347 }
348
349
350 /* 
351  * Create a FileSet record. This record is unique in the
352  *  name and the MD5 signature of the include/exclude sets.
353  *  Returns: 0 on failure
354  *           1 on success with FileSetId in record
355  */
356 int db_create_fileset_record(B_DB *mdb, FILESET_DBR *fsr)
357 {
358    SQL_ROW row;
359    int stat;
360
361    db_lock(mdb);
362    Mmsg(&mdb->cmd, "SELECT FileSetId FROM FileSet WHERE \
363 FileSet='%s' and MD5='%s'", fsr->FileSet, fsr->MD5);
364
365    fsr->FileSetId = 0;
366    if (QUERY_DB(mdb, mdb->cmd)) {
367
368       mdb->num_rows = sql_num_rows(mdb);
369       
370       if (mdb->num_rows > 1) {
371          Mmsg1(&mdb->errmsg, _("More than one FileSet!: %d\n"), (int)(mdb->num_rows));
372          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
373       }
374       if (mdb->num_rows >= 1) {
375          if ((row = sql_fetch_row(mdb)) == NULL) {
376             Mmsg1(&mdb->errmsg, _("error fetching FileSet row: ERR=%s\n"), sql_strerror(mdb));
377             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
378             sql_free_result(mdb);
379             db_unlock(mdb);
380             return 0;
381          }
382          fsr->FileSetId = atoi(row[0]);
383          sql_free_result(mdb);
384          db_unlock(mdb);
385          return 1;
386       }
387       sql_free_result(mdb);
388    }
389
390    /* Must create it */
391    Mmsg(&mdb->cmd, "INSERT INTO FileSet (FileSet, MD5) VALUES \
392 ('%s', '%s')", fsr->FileSet, fsr->MD5);
393
394    if (!INSERT_DB(mdb, mdb->cmd)) {
395       Mmsg2(&mdb->errmsg, _("Create DB FileSet record %s failed. ERR=%s\n"),
396             mdb->cmd, sql_strerror(mdb));
397       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
398       fsr->FileSetId = 0;
399       stat = 0;
400    } else {
401       fsr->FileSetId = sql_insert_id(mdb);
402       stat = 1;
403    }
404
405    db_unlock(mdb);
406    return stat;
407 }
408
409
410 /*
411  *  struct stat
412  *  {
413  *      dev_t         st_dev;       * device *
414  *      ino_t         st_ino;       * inode *
415  *      mode_t        st_mode;      * protection *
416  *      nlink_t       st_nlink;     * number of hard links *
417  *      uid_t         st_uid;       * user ID of owner *
418  *      gid_t         st_gid;       * group ID of owner *
419  *      dev_t         st_rdev;      * device type (if inode device) *
420  *      off_t         st_size;      * total size, in bytes *
421  *      unsigned long st_blksize;   * blocksize for filesystem I/O *
422  *      unsigned long st_blocks;    * number of blocks allocated *
423  *      time_t        st_atime;     * time of last access *
424  *      time_t        st_mtime;     * time of last modification *
425  *      time_t        st_ctime;     * time of last inode change *            
426  *  };
427  */
428
429
430
431 /* 
432  * Create File record in B_DB   
433  *
434  *  In order to reduce database size, we store the File attributes,
435  *  the FileName, and the Path separately.  In principle, there   
436  *  is a single FileName record and a single Path record, no matter
437  *  how many times it occurs.  This is this subroutine, we separate
438  *  the file and the path and create three database records.
439  */
440 int db_create_file_attributes_record(B_DB *mdb, ATTR_DBR *ar)
441 {
442
443    Dmsg1(100, "Fname=%s\n", ar->fname);
444    Dmsg0(50, "put_file_into_catalog\n");
445    /*
446     * Make sure we have an acceptable attributes record.
447     */
448    if (!(ar->Stream == STREAM_UNIX_ATTRIBUTES || ar->Stream == STREAM_WIN32_ATTRIBUTES)) {
449       Mmsg0(&mdb->errmsg, _("Attempt to put non-attributes into catalog\n"));
450       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
451       return 0;
452    }
453
454    db_lock(mdb);
455
456    split_path_and_filename(mdb, ar->fname);
457
458    if (!db_create_filename_record(mdb, ar)) {
459       db_unlock(mdb);
460       return 0;
461    }
462    Dmsg1(100, "db_create_filename_record: %s\n", mdb->esc_name);
463
464
465    if (!db_create_path_record(mdb, ar)) {
466       db_unlock(mdb);
467       return 0;
468    }
469    Dmsg1(100, "db_create_path_record\n", mdb->esc_name);
470
471    /* Now create master File record */
472    if (!db_create_file_record(mdb, ar)) {
473       db_unlock(mdb);
474       return 0;
475    }
476    Dmsg0(50, "db_create_file_record\n");
477
478    Dmsg3(100, "Path=%s File=%s FilenameId=%d\n", mdb->path, mdb->fname, ar->FilenameId);
479    db_unlock(mdb);
480    return 1;
481 }
482
483 /*
484  * This is the master File entry containing the attributes.
485  *  The filename and path records have already been created.
486  */
487 static int db_create_file_record(B_DB *mdb, ATTR_DBR *ar)
488 {
489    int stat;
490
491    ASSERT(ar->JobId);
492    ASSERT(ar->PathId);
493    ASSERT(ar->FilenameId);
494
495    /* Must create it */
496    Mmsg(&mdb->cmd,
497 "INSERT INTO File (FileIndex, JobId, PathId, FilenameId, \
498 LStat, MD5) VALUES (%u, %u, %u, %u, '%s', '0')", 
499       ar->FileIndex, ar->JobId, ar->PathId, ar->FilenameId, 
500       ar->attr);
501
502    if (!INSERT_DB(mdb, mdb->cmd)) {
503       Mmsg2(&mdb->errmsg, _("Create db File record %s failed. ERR=%s"),       
504          mdb->cmd, sql_strerror(mdb));
505       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
506       ar->FileId = 0;
507       stat = 0;
508    } else {
509       ar->FileId = sql_insert_id(mdb);
510       stat = 1;
511    }
512    return stat;
513 }
514
515 /* Create a Unique record for the Path -- no duplicates */
516 static int db_create_path_record(B_DB *mdb, ATTR_DBR *ar)
517 {
518    SQL_ROW row;
519    int stat;
520
521    mdb->esc_name = check_pool_memory_size(mdb->esc_name, 2*mdb->pnl+2);
522    db_escape_string(mdb->esc_name, mdb->path, mdb->pnl);
523    sm_check(__FILE__, __LINE__, True);
524
525    if (mdb->cached_path_id != 0 && mdb->cached_path_len == mdb->pnl &&
526        strcmp(mdb->cached_path, mdb->path) == 0) {
527       ar->PathId = mdb->cached_path_id;
528       ASSERT(ar->PathId);
529       return 1;
530    }          
531
532    Mmsg(&mdb->cmd, "SELECT PathId FROM Path WHERE Path='%s'", mdb->esc_name);
533
534    if (QUERY_DB(mdb, mdb->cmd)) {
535
536       mdb->num_rows = sql_num_rows(mdb);
537
538       if (mdb->num_rows > 1) {
539          char ed1[30];
540          Mmsg2(&mdb->errmsg, _("More than one Path!: %s for Path=%s\n"), 
541             edit_uint64(mdb->num_rows, ed1), mdb->path);
542          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
543       }
544       if (mdb->num_rows >= 1) {
545          if ((row = sql_fetch_row(mdb)) == NULL) {
546             Mmsg1(&mdb->errmsg, _("error fetching row: %s\n"), sql_strerror(mdb));
547             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
548             sql_free_result(mdb);
549             ar->PathId = 0;
550             ASSERT(ar->PathId);
551             return 0;
552          }
553          ar->PathId = atoi(row[0]);
554          sql_free_result(mdb);
555          /* Cache path */
556          if (ar->PathId != mdb->cached_path_id) {
557             mdb->cached_path_id = ar->PathId;
558             mdb->cached_path_len = mdb->pnl;
559             pm_strcpy(&mdb->cached_path, mdb->path);
560          }
561          ASSERT(ar->PathId);
562          return 1;
563       }
564
565       sql_free_result(mdb);
566    }
567
568    Mmsg(&mdb->cmd, "INSERT INTO Path (Path)  VALUES ('%s')", mdb->esc_name);
569
570    if (!INSERT_DB(mdb, mdb->cmd)) {
571       Mmsg2(&mdb->errmsg, _("Create db Path record %s failed. ERR=%s\n"), 
572          mdb->cmd, sql_strerror(mdb));
573       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
574       ar->PathId = 0;
575       stat = 0;
576    } else {
577       ar->PathId = sql_insert_id(mdb);
578       stat = 1;
579    }
580
581    /* Cache path */
582    if (ar->PathId != mdb->cached_path_id) {
583       mdb->cached_path_id = ar->PathId;
584       mdb->cached_path_len = mdb->pnl;
585       pm_strcpy(&mdb->cached_path, mdb->path);
586    }
587    ASSERT(ar->PathId);
588    return stat;
589 }
590
591 /* Create a Unique record for the filename -- no duplicates */
592 static int db_create_filename_record(B_DB *mdb, ATTR_DBR *ar) 
593 {
594    SQL_ROW row;
595
596    mdb->esc_name = check_pool_memory_size(mdb->esc_name, 2*mdb->fnl+2);
597    db_escape_string(mdb->esc_name, mdb->fname, mdb->fnl);
598    sm_check(__FILE__, __LINE__, True);
599
600    Mmsg(&mdb->cmd, "SELECT FilenameId FROM Filename WHERE Name='%s'", mdb->esc_name);
601
602    if (QUERY_DB(mdb, mdb->cmd)) {
603       mdb->num_rows = sql_num_rows(mdb);
604       if (mdb->num_rows > 1) {
605          Mmsg2(&mdb->errmsg, _("More than one Filename!: %d File=%s\n"), 
606             (int)(mdb->num_rows), mdb->fname);
607          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
608       }
609       if (mdb->num_rows >= 1) {
610          if ((row = sql_fetch_row(mdb)) == NULL) {
611             Mmsg2(&mdb->errmsg, _("error fetching row for file=%s: ERR=%s\n"), 
612                 mdb->fname, sql_strerror(mdb));
613             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
614             ar->FilenameId = 0;
615          } else {
616             ar->FilenameId = atoi(row[0]);
617          }
618          sql_free_result(mdb);
619          return ar->FilenameId > 0;
620       }
621       sql_free_result(mdb);
622    }
623
624    Mmsg(&mdb->cmd, "INSERT INTO Filename (Name) VALUES ('%s')", mdb->esc_name);
625
626    if (!INSERT_DB(mdb, mdb->cmd)) {
627       Mmsg2(&mdb->errmsg, _("Create db Filename record %s failed. ERR=%s\n"), 
628             mdb->cmd, sql_strerror(mdb));
629       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
630       ar->FilenameId = 0;
631    } else {
632       ar->FilenameId = sql_insert_id(mdb);
633    }
634
635    return ar->FilenameId > 0;
636 }
637
638 #endif /* HAVE_MYSQL || HAVE_SQLITE */