IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13615 for trunk/Ohana/src


Ignore:
Timestamp:
Jun 4, 2007, 11:23:37 AM (19 years ago)
Author:
eugene
Message:

added dbconnect, dbselect, probe for mysql

Location:
trunk/Ohana/src/opihi
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/Makefile.Common

    r12280 r13615  
    44
    55BASE_CFLAGS   = $(CFLAGS)
    6 BASE_CPPFLAGS = $(CPPFLAGS) -I$(INC) -I$(DESTINC) $(INCDIRS) -D$(ARCH) 
     6BASE_CPPFLAGS = $(CPPFLAGS) -I$(INC) -I$(DESTINC) $(INCDIRS) -D$(ARCH)
    77BASE_LDFLAGS  = $(LDFLAGS) -L$(LIB) -L$(DESTLIB) $(LIBDIRS) $(LIBFLAGS)
    88
  • trunk/Ohana/src/opihi/cmd.data/Makefile

    r12879 r13615  
    3838$(SRC)/dimendown.$(ARCH).o      \
    3939$(SRC)/dimenup.$(ARCH).o        \
     40$(SRC)/dbconnect.$(ARCH).o      \
     41$(SRC)/dbselect.$(ARCH).o       \
    4042$(SRC)/erase.$(ARCH).o          \
    4143$(SRC)/extract.$(ARCH).o        \
  • trunk/Ohana/src/opihi/cmd.data/init.c

    r13479 r13615  
    1818int cut              PROTO((int, char **));
    1919int datafile         PROTO((int, char **));
     20int dbconnect        PROTO((int, char **));
     21int dbselect         PROTO((int, char **));
    2022int delete           PROTO((int, char **));
    2123int device           PROTO((int, char **));
     
    132134  {"cut",          cut,              "extract a cut across an image"},
    133135  {"datafile",     datafile,         "define file to read vectors"},
     136  {"dbconnect",    dbconnect,        "setup mysql db connection"},
     137  {"dbselect",     dbselect,         "extract vectors from mysql database table"},
    134138  {"delete",       delete,           "delete vectors or matrices"},
    135139  {"device",       device,           "set / get current graphics device"},
  • trunk/Ohana/src/opihi/include/data.h

    r13479 r13615  
    165165
    166166int read_table_vectors (int argc, char **argv, char *extname);
     167
     168void *db_getConnection ();
     169
    167170# endif
    168171
Note: See TracChangeset for help on using the changeset viewer.