2003-03-26 20:03:37 +08:00
|
|
|
//
|
|
|
|
// ZoneMinder Core Interfaces, $Date$, $Revision$
|
2008-07-25 17:33:23 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2003-03-26 20:03:37 +08:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZM_DB_H
|
|
|
|
#define ZM_DB_H
|
|
|
|
|
|
|
|
#include <mysql/mysql.h>
|
|
|
|
|
2011-06-21 17:19:10 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2003-03-26 20:03:37 +08:00
|
|
|
extern MYSQL dbconn;
|
|
|
|
|
2011-06-21 17:19:10 +08:00
|
|
|
extern int zmDbConnected;
|
|
|
|
|
2004-12-29 01:01:25 +08:00
|
|
|
void zmDbConnect();
|
2014-11-15 05:17:44 +08:00
|
|
|
void zmDbClose();
|
|
|
|
|
2015-07-17 01:04:28 +08:00
|
|
|
MYSQL_RES * zmDbFetch( const char *query );
|
2015-07-17 04:44:09 +08:00
|
|
|
MYSQL_ROW zmDbFetchOne( const char *query );
|
2015-07-17 01:04:28 +08:00
|
|
|
|
2011-06-21 17:19:10 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
2003-03-26 20:03:37 +08:00
|
|
|
|
|
|
|
#endif // ZM_DB_H
|