Sponsored Content
Full Discussion: Delete account
Contact Us Post Here to Contact Site Administrators and Moderators Delete account Post 302209908 by N!cklas on Sunday 29th of June 2008 04:27:39 AM
Old 06-29-2008
...and also please remove my e-mail from the previous post (didn't believe it would be public like this...)
N!cklas
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

delete or disable the system generated account

I have this unix version 3.0 "UNIX_SV server 4.0 3.0 3425 Pentium II(TM)-ISA/PCI" can i delete or disable the system generated account as "daemon";"uucp";"sys";"adm";"listen";"bin" and if yes how can i do it? Regards (1 Reply)
Discussion started by: sak900354
1 Replies

2. Forum Support Area for Unregistered Users & Account Problems

how to delete an existing account on unix.com

Hi, Can you tell me the instructions to delete my account from unix.com if I dont want to continue it anymore because I have an already existing account and this one was created by mistake. Regards, Raj Kumar Arora email address removed (2 Replies)
Discussion started by: Raj Kumar Aora
2 Replies

3. Post Here to Contact Site Administrators and Moderators

Delete my Account

Delete my account, please. Many thanks and best wishes with the forum. :] (1 Reply)
Discussion started by: BSRadcliffe
1 Replies

4. Post Here to Contact Site Administrators and Moderators

Delete the threads started by me or my account

Can you please delete the account or the threads started by me please. I really appreciate it. (1 Reply)
Discussion started by: ravis83
1 Replies

5. Post Here to Contact Site Administrators and Moderators

Delete this account

Hi, I want to change my user name.And if that is not possible can u please close the account so that i can create a new account with other user name. Regards, Jyothi (3 Replies)
Discussion started by: jyothi_wipro
3 Replies

6. Post Here to Contact Site Administrators and Moderators

Please delete my account

can`t find an option to do this.... (1 Reply)
Discussion started by: spacevoid8
1 Replies
MONGOCOMMANDCURSOR(3)							 1						     MONGOCOMMANDCURSOR(3)

The MongoCommandCursor class

INTRODUCTION
A command cursor is similar to a MongoCursor except that you use it for iterating through the results of a database command instead of a normal query. Command cursors are useful for iterating over large result sets that might exceed the document size limit (currently 16MB) of a single MongoDB.command(3) response. While you can create command cursors using MongoCommandCursor.__construct(3) or the MongoCommandCursor.createFromDocument(3) factory method, you will generally want to use command-specific helpers such as MongoCollection.aggregateCursor(3). Note that the cursor does not "contain" the database command's results; it just manages iteration through them. Thus, if you print a cur- sor (f.e. with var_dump(3) or print_r(3)), you will see the cursor object but not the result documents. CURSOR STAGES
A MongoCommandCursor has two "life stages": pre- and post- command. When a cursor is created, it has not yet contacted the database, so it is in its pre-command state. When the client first attempts to get a result (by calling MongoCommandCursor.rewind(3), directly or indi- rectly), the cursor moves into the post-command state. The command cursor's batch size and socket timeout may be configured in both the pre- and post- command states. Example #1 Adding options to MongoCommandCursor <?php $cursor = new MongoCommandCursor(...); $cursor = $cursor->batchSize( 4 ); foreach ($cursor as $result) { var_dump($result); } ?> CLASS SYNOPSIS
MongoCommandCursor MongoCommandCursorMongoCursorInterfaceIterator Methods o public MongoCommandCursor MongoCommandCursor::batchSize (int $batchSize) o public MongoCommandCursor::__construct (MongoClient $connection, string $ns, array $command = array()) o publicstatic MongoCommandCursor MongoCommandCursor::createFromDocument (MongoClient $connection, string $hash, array $document) o public array MongoCommandCursor::current (void ) o public bool MongoCommandCursor::dead (void ) o public array MongoCommandCursor::getReadPreference (void ) o public array MongoCommandCursor::info (void ) o public int MongoCommandCursor::key (void ) o public void MongoCommandCursor::next (void ) o public array MongoCommandCursor::rewind (void ) o public MongoCommandCursor MongoCommandCursor::setReadPreference (string $read_preference, [array $tags]) o public MongoCommandCursor MongoCommandCursor::timeout (int $ms) o public bool MongoCommandCursor::valid (void ) SEE ALSO
o MongoDB::command o MongoCollection::aggregateCursor PHP Documentation Group MONGOCOMMANDCURSOR(3)
All times are GMT -4. The time now is 05:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy