fixed / clean ups
[mir.git] / source / mircoders / storage / DatabaseContentToTopics.java
index eca6c29..2ad9fb2 100755 (executable)
@@ -70,7 +70,7 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
     logger = new LoggerWrapper("Database.ContentToTopics");
 
     hasTimestamp = false;
-    theTable="content_x_topic";
+    mainTable="content_x_topic";
     theEntityClass = mir.entity.GenericEntity.class;
   }
 
@@ -86,10 +86,10 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
       String id = content.getId();
       try {
         Vector extraTables = new Vector();
-        extraTables.add(theTable+" cxt");
+        extraTables.add(mainTable+" cxt");
         returnList = DatabaseTopics.getInstance()
-                      .selectByWhereClauseWithExtraTables("t",extraTables, 
-                                              "t.id=cxt.topic_id and  cxt.content_id="+id );        
+                      .selectByWhereClauseWithExtraTables("t",extraTables,
+                                              "t.id=cxt.topic_id and  cxt.content_id="+id );
       }
       catch (Exception e) {
         logger.error("-- get topics failed " + e.toString());
@@ -107,7 +107,7 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
     ArrayList returnList = new ArrayList();
 
     if (contentId != null) {
-      String sql = "select topic_id from " + theTable + " where content_id=" + contentId;
+      String sql = "select topic_id from " + mainTable + " where content_id=" + contentId;
       Connection con=null;Statement stmt=null;
       try {
         con = getPooledCon();
@@ -171,9 +171,9 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
     logger.debug("to add = " + topicsToAdd.toString());
 
 
-    if (!topicsToDelete.isEmpty()) {      
+    if (!topicsToDelete.isEmpty()) {
       String sql =
-          "delete from " + theTable + " " +
+          "delete from " + mainTable + " " +
           "where content_id=" + anArticleId +
           "        and topic_id in (" + getIdListExpression(topicsToDelete) + ")";
 
@@ -200,7 +200,7 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
     while (i.hasNext()) {
       Integer topicId = (Integer) i.next();
       String sql =
-          "insert into " + theTable + " (content_id, topic_id) "+
+          "insert into " + mainTable + " (content_id, topic_id) "+
           "values (" + anArticleId + "," + topicId + ")";
       Connection connection=null;
       Statement statement=null;
@@ -230,7 +230,7 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
       return;
     }
     //delete all row with content_id=contentId
-    String sql = "delete from "+ theTable +" where content_id=" + contentId;
+    String sql = "delete from "+ mainTable +" where content_id=" + contentId;
 
     Connection con=null;Statement stmt=null;
     try {
@@ -252,7 +252,7 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
       return;
     }
     //delete all row with content_id=contentId
-    String sql = "delete from "+ theTable +" where topic_id=" + topicId;
+    String sql = "delete from "+ mainTable +" where topic_id=" + topicId;
 
     Connection con=null;Statement stmt=null;
     try {
@@ -268,7 +268,7 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
       freeConnection(con,stmt);
     }
   }
-  
+
 /**
  * Returns list of Content for a specific topic
  * @param topic
@@ -282,10 +282,10 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
       String id = topic.getId();
       try {
         Vector extraTables = new Vector();
-        extraTables.add(theTable+" cxt");
+        extraTables.add(mainTable+" cxt");
         returnList = DatabaseContent.getInstance()
-                      .selectByWhereClauseWithExtraTables("c",extraTables, 
-                          "c.id=cxt.content_id and cxt.topic_id="+id );    
+                      .selectByWhereClauseWithExtraTables("c",extraTables,
+                          "c.id=cxt.content_id and cxt.topic_id="+id );
       }
       catch (Exception e) {
         logger.error("-- get content failed");