Update of /cvsroot/eas-dev/eas/libeas
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv11146/libeas
Modified Files:
componentmanager.prg
Log Message:
Continues fix client and small changes in documentation
Index: componentmanager.prg
===================================================================
RCS file: /cvsroot/eas-dev/eas/libeas/componentmanager.prg,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- componentmanager.prg 2 Jun 2006 14:32:45 -0000 1.1
+++ componentmanager.prg 5 Jun 2006 14:12:19 -0000 1.2
@@ -74,7 +74,7 @@
// Query database
q:db := OCMNG_REPOSITORY
- q:query := 'select id from '+OCMNG_COMMANDS_CLASS+' where component=="'+component+'" .and. name=="'+method+'";'
+ q:query := 'select id from '+OCMNG_COMMANDS_CLASS+' where component_name=="'+component+'" .and. name=="'+method+'";'
cmds := sendMessage(,'sys.db', 'execute', q )
eDebug(17, "DB returns:", cmds)
@@ -157,7 +157,7 @@
// Query database
q:db := OCMNG_REPOSITORY
- q:query := "select name from "+OCMNG_COMPONENT_CLASS+";"
+ q:query := "select component_name from "+OCMNG_COMPONENT_CLASS+";"
a := sendMessage(,'sys.db', 'execute', q )
eDebug(17, "DB returns:", a)
@@ -170,7 +170,7 @@
// Query database
q:db := OCMNG_REPOSITORY
- q:query := "select name,component from "+OCMNG_COMMANDS_CLASS+";"
+ q:query := "select component_name,name from "+OCMNG_COMMANDS_CLASS+";"
a := sendMessage(,'sys.db', 'execute', q )
eDebug(17, "DB returns:", a)
@@ -199,7 +199,7 @@
// Query database
q:db := OCMNG_REPOSITORY
- q:query := 'select id from '+OCMNG_COMPONENT_CLASS+' where name=="'+component+'";'
+ q:query := 'select id from '+OCMNG_COMPONENT_CLASS+' where component_name=="'+component+'";'
a := sendMessage(,'sys.db', 'execute', q )
eDebug(17, "DB returns:", a)
|