當前位置: 首頁>>代碼示例>>Java>>正文


Java DBCollection.drop方法代碼示例

本文整理匯總了Java中com.mongodb.DBCollection.drop方法的典型用法代碼示例。如果您正苦於以下問題:Java DBCollection.drop方法的具體用法?Java DBCollection.drop怎麽用?Java DBCollection.drop使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.mongodb.DBCollection的用法示例。


在下文中一共展示了DBCollection.drop方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: dropTable

import com.mongodb.DBCollection; //導入方法依賴的package包/類
private int dropTable(SQLDropTableStatement state) {		
	for (SQLTableSource table : state.getTableSources()){
		DBCollection coll =this._db.getCollection(table.toString());
		coll.drop();
	}
	return 1;
	
}
 
開發者ID:huang-up,項目名稱:mycat-src-1.6.1-RELEASE,代碼行數:9,代碼來源:MongoSQLParser.java

示例2: remove

import com.mongodb.DBCollection; //導入方法依賴的package包/類
@Override
public Object remove(Key key) throws PageException {
	if(!containsKey(key.getString()))
		throw exp.createExpressionException("can't remove DBCollection with key ["+key+"], key doesn't exist");

	DBCollection coll = db.getCollection(key.getString());
	coll.drop();
	return toCFML(coll);
}
 
開發者ID:lucee,項目名稱:extension-mongodb,代碼行數:10,代碼來源:DBImpl.java

示例3: clear

import com.mongodb.DBCollection; //導入方法依賴的package包/類
@Override
public void clear() {
	Iterator<Key> it = keyIterator();
	Key k;
	DBCollection coll;
	while(it.hasNext()){
		k=it.next();
		coll = db.getCollection(k.getString());
		coll.drop();
	}
}
 
開發者ID:lucee,項目名稱:extension-mongodb,代碼行數:12,代碼來源:DBImpl.java

示例4: onRootAccess

import com.mongodb.DBCollection; //導入方法依賴的package包/類
@RequestMapping(method = RequestMethod.GET)
public @ResponseBody Result onRootAccess() {

    DBCollection collection = mongoTemplate.getCollection("test");
    long count = collection.getCount();
    log.info("Object count in 'test' collection before insert: " + count + "<br/> Inserting one object.<br/>");

    BasicDBObject dBObject = new BasicDBObject();
    dBObject.put("hello", "world");
    collection.insert(dBObject);
    count = collection.count();
    log.info("Object count in test collection after insert:" + count);

    Result result = new Result();
    List<DBObject> dbObjects = new ArrayList<DBObject>();
    DBCursor cursor = collection.find();
    while (cursor.hasNext()) {
        com.mongodb.DBObject obj = cursor.next();
        final String value = (String) obj.get("hello");
        DBObject object = new DBObject();
        object.setKey("hello");
        object.setValue(value);
        dbObjects.add(object);
    }
    result.setDbObjects(dbObjects);
    result.setStatus(
            "Successfully accessed Mongodb service. Retrieving the data object inserted in test collection.");
    collection.drop();
    return result;
}
 
開發者ID:SAP,項目名稱:hcp-cloud-foundry-tutorials,代碼行數:31,代碼來源:RootController.java

示例5: test1

import com.mongodb.DBCollection; //導入方法依賴的package包/類
@Test
public void test1() {
    IndexDefinition iDef = IndexDefinitionFactory.getDefinition("idField(id) string, fundField(fund) string, sideField(side) string");
    iDef.setIndexName("FOO");
    List<IndexDefinition> indexDefinitions = new ArrayList<IndexDefinition>();
    indexDefinitions.add(iDef);

    store.createIndexHandler(new IndexProducer(indexDefinitions));

    DBCollection collection = MongoDBFactory.getDB("Test").getCollection("strumpet_index_index");
    List<DBObject> indexes = collection.getIndexInfo();

    // we should have the number of indexes in the definition
    // (plus 2 that are always created: _id and key)
    // only test for indexes created by createRelatedTableStore() ...
    // assertEquals(5, indexes.size());

    ArrayList<String> index_names = new ArrayList<>(indexes.size());
    for (DBObject i: indexes) {
        index_names.add((String) i.get("name"));
    }

    //name should be one provided
    assertTrue(index_names.contains("FOO"));

    collection.drop();
}
 
開發者ID:RapturePlatform,項目名稱:Rapture,代碼行數:28,代碼來源:MongoIndexDefinitionTest.java

示例6: test2

import com.mongodb.DBCollection; //導入方法依賴的package包/類
@Test
public void test2() {
    IndexDefinition iDef1 = IndexDefinitionFactory.getDefinition("id1Field(id1) string");
    IndexDefinition iDef2 = IndexDefinitionFactory.getDefinition("fooField(foo) string, barField(bar) string");

    List<IndexDefinition> indexDefinitions = new ArrayList<IndexDefinition>();
    indexDefinitions.add(iDef1);
    indexDefinitions.add(iDef2);

    store.createIndexHandler(new IndexProducer(indexDefinitions));

    DBCollection collection = MongoDBFactory.getDB("Test").getCollection("strumpet_index_index");
    List<DBObject> indexes = collection.getIndexInfo();

    // we should have the number of indexes in the definition
    // (plus 2 that are always created: _id and key)
    // only test for indexes created by createRelatedTableStore() ...
    // assertEquals(5, indexes.size());

    ArrayList<String> index_names = new ArrayList<>(indexes.size());

    for (DBObject i: indexes) {
        index_names.add((String) i.get("name"));
    }

    assertTrue(index_names.contains("id1Field_idx"));
    assertTrue(index_names.contains("fooFieldbarField_idx"));

    collection.drop();
}
 
開發者ID:RapturePlatform,項目名稱:Rapture,代碼行數:31,代碼來源:MongoIndexDefinitionTest.java

示例7: removeQueue

import com.mongodb.DBCollection; //導入方法依賴的package包/類
@Override
public boolean removeQueue(String jobClientNodeGroup) {
    String tableName = JobQueueUtils.getFeedbackQueueName(jobClientNodeGroup);
    DBCollection dbCollection = template.getCollection(tableName);
    dbCollection.drop();
    LOGGER.info("drop queue " + tableName);
    return true;
}
 
開發者ID:WenZuHuai,項目名稱:light-task-scheduler,代碼行數:9,代碼來源:MongoJobFeedbackQueue.java

示例8: removeQueue

import com.mongodb.DBCollection; //導入方法依賴的package包/類
@Override
public boolean removeQueue(String taskTrackerNodeGroup) {
    String tableName = JobQueueUtils.getExecutableQueueName(taskTrackerNodeGroup);
    DBCollection dbCollection = template.getCollection(tableName);
    dbCollection.drop();
    LOGGER.info("drop queue " + tableName);

    return true;
}
 
開發者ID:WenZuHuai,項目名稱:light-task-scheduler,代碼行數:10,代碼來源:MongoExecutableJobQueue.java


注:本文中的com.mongodb.DBCollection.drop方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。