Update of /cvsroot/eas-dev/eas/libcodb_query
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv3057/libcodb_query
Modified Files:
Makefile command.prg
Log Message:
Change logotype, fix db directory creation and some small tests
Index: Makefile
===================================================================
RCS file: /cvsroot/eas-dev/eas/libcodb_query/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile 2 Jun 2006 14:32:45 -0000 1.1
+++ Makefile 6 Jun 2006 13:29:30 -0000 1.2
@@ -17,8 +17,7 @@
.SUFFIXES: .prg .o .po
# Here you can define appropriate compile settings
-#C_FLAGS=-Wall -g -I. $(CLIPINCLUDE)
-#CC=gcc
+C_FLAGS=-Wall -g -I. $(CLIPINCLUDE)
TARGET = libcodb_query$(DLLSUFF)
RTARGET = libcodb_query$(DLLREALSUFF)
Index: command.prg
===================================================================
RCS file: /cvsroot/eas-dev/eas/libcodb_query/command.prg,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- command.prg 2 Jun 2006 14:32:45 -0000 1.1
+++ command.prg 6 Jun 2006 13:29:30 -0000 1.2
@@ -208,7 +208,7 @@
static function __set_db(self, db)
local p, i
- //?? "Set DB:", db, chr(10)
+// ?? "Set DB:", db, chr(10)
if empty(db)
return .F.
@@ -227,7 +227,8 @@
?? "ERROR: unknown DB or depository name:", db, chr(10)
endif
endif
-
+// ?? "DICT:", self:dict, chr(10)
+// ?? "DEP: ", self:dep,chr(10)
return .F.
/* Close connection to server */
@@ -1229,7 +1230,8 @@
next
endif
//?? "CLASSES:", classes, chr(10)
-//?? "CLASSES_ID:", classIds, chr(10)
+//?? "CLASSES_IDS:", classIds, chr(10)
+//?? "DEP:", d:hDbData, chr(10)
// Second: fill result with 'where' condition check
res:fields := attrs
res:data := array(0)
@@ -1242,7 +1244,7 @@
//?? where_condition,chr(10)
for part in classIds
-
+ //?? "d:select:", part, where_condition, chr(10)
dbl := d:select(part,,,where_condition)
//?? part,":",len(dbl), dbl,chr(10)
|