Subversion Repositories MLServ

Rev

Rev 5 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5 Rev 7
Line 1... Line 1...
1
/* $Id: db.c 5 2024-09-25 00:19:35Z nishi $ */
1
/* $Id: db.c 7 2024-09-25 00:56:55Z nishi $ */
2
 
2
 
3
#include "cm_db.h"
3
#include "cm_db.h"
4
 
4
 
5
#include <sqlite3.h>
5
#include <sqlite3.h>
6
 
6
 
Line 28... Line 28...
28
		sqlite3_close(sql);
28
		sqlite3_close(sql);
29
		return NULL;
29
		return NULL;
30
	}
30
	}
31
	return sql;
31
	return sql;
32
}
32
}
-
 
33
 
-
 
34
char** cm_list_ml(sqlite3* sql) { return NULL; }