/* * Drizzle Client & Protocol Library * * Copyright (C) 2008 Eric Day (eday@oddments.org) * All rights reserved. * * Use and distribution licensed under the BSD license. See * the COPYING file in this directory for full text. */ /** * @file * @brief Command Declarations for Clients */ #ifndef __DRIZZLE_COMMAND_CLIENT_H #define __DRIZZLE_COMMAND_CLIENT_H #ifdef __cplusplus extern "C" { #endif /** * @addtogroup drizzle_command_client Command Declarations for Clients * @ingroup drizzle_client_interface * * These functions are used to issue commands on a connection. Normal SQL * queries are issued using the drizzle_query* functions defined in query.h. * @{ */ /** @} */ #ifdef __cplusplus } #endif #endif /* __DRIZZLE_COMMAND_CLIENT_H */