1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /**********************************************************
- * MODULE: mysql
- * AUTHOR(S): Radim Blazek (radim.blazek@gmail.com)
- * PURPOSE: MySQL database driver
- * COPYRIGHT: (C) 2001 by the GRASS Development Team
- * This program is free software under the
- * GNU General Public License (>=v2).
- * Read the file COPYING that comes with GRASS
- * for details.
- **********************************************************/
- #include <stdlib.h>
- #include <grass/gis.h>
- #include <grass/dbmi.h>
- #include <grass/glocale.h>
- #include "globals.h"
- #include "proto.h"
- int db__driver_open_select_cursor(dbString * sel, dbCursor * dbc, int mode)
- {
- cursor *c;
- dbTable *table;
- char *str;
- /* allocate cursor */
- c = alloc_cursor();
- if (c == NULL)
- return DB_FAILED;
- db_set_cursor_mode(dbc, mode);
- db_set_cursor_type_readonly(dbc);
- /* \ must be escaped, see explanation in
- * db_driver_execute_immediate() */
- str = G_str_replace(db_get_string(sel), "\\", "\\\\");
- G_debug(3, "Escaped SQL: %s", str);
- if (mysql_query(connection, str) != 0) {
- db_d_append_error("%s\n%s\n%s",
- _("Unable to select data:"),
- db_get_string(sel),
- mysql_error(connection));
- if (str)
- G_free(str);
- db_d_report_error();
- return DB_FAILED;
- }
- if (str)
- G_free(str);
- c->res = mysql_store_result(connection);
- if (c->res == NULL) {
- db_d_append_error("%s\n%s",
- db_get_string(sel),
- mysql_error(connection));
- db_d_report_error();
- return DB_FAILED;
- }
- if (describe_table(c->res, &table, c) == DB_FAILED) {
- db_d_append_error(_("Unable to describe table."));
- db_d_report_error();
- mysql_free_result(c->res);
- return DB_FAILED;
- }
- c->nrows = (int)mysql_num_rows(c->res);
- /* record table with dbCursor */
- db_set_cursor_table(dbc, table);
- /* set dbCursor's token for my cursor */
- db_set_cursor_token(dbc, c->token);
- return DB_OK;
- }
|