driver.c 714 B

123456789101112131415161718192021222324252627282930
  1. /**********************************************************
  2. * MODULE: mysql
  3. * AUTHOR(S): Radim Blazek (radim.blazek@gmail.com)
  4. * PURPOSE: MySQL database driver
  5. * COPYRIGHT: (C) 2001 by the GRASS Development Team
  6. * This program is free software under the
  7. * GNU General Public License (>=v2).
  8. * Read the file COPYING that comes with GRASS
  9. * for details.
  10. **********************************************************/
  11. #include <stdlib.h>
  12. #include <grass/gis.h>
  13. #include <grass/dbmi.h>
  14. #include "globals.h"
  15. #include "proto.h"
  16. int db__driver_init(int argc, char *argv[])
  17. {
  18. init_error();
  19. return DB_OK;
  20. }
  21. int db__driver_finish()
  22. {
  23. return DB_OK;
  24. }