Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Variable definition inside mysql query Post 303034908 by wassi on Thursday 9th of May 2019 09:30:32 AM
Old 05-09-2019
replace means update not insert ???
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

What wrong with the variable definition

i am using the below script and trying to move files in that directory in that pattern to archive. But it doesn;t seem to take the metacharacters. Please sugggest. Code Debug output: (1 Reply)
Discussion started by: dsravan
1 Replies

2. Shell Programming and Scripting

Passing a variable from shell script to mysql query?

I heard this was possible but from my research I haven't been able to figure it out yet. Seems it should be simple enough. Basically from a high level view I'm trying to accomplish... . $X='grep foo blah.log' then 'mysql command SELECT foo FROM bar WHERE ' . $X or something like that. ... (2 Replies)
Discussion started by: kero
2 Replies

3. Shell Programming and Scripting

variable inside variable inside loop headache

Hi Gurus I have a file called /tmp/CMDB which looks like this serial: 0623AN1208 hostname: server1 model: x4100 assetID: 1234 I am writing a for loop that will go through this file line by line creating a variable of itself. Using the first iteration of the loop (i.e. the first line) as... (6 Replies)
Discussion started by: hcclnoodles
6 Replies

4. Shell Programming and Scripting

How to define a variable with variable definition is stored in a variable?

Hi all, I have a variable say var1 (output from somewhere, which I can't change)which store something like this: echo $var1 name=fred age=25 address="123 abc" password=pass1234 how can I make the variable $name, $age, $address and $password contain the info? I mean do this in a... (1 Reply)
Discussion started by: freddy1228
1 Replies

5. Shell Programming and Scripting

bash assign mysql query single field to variable

I'm running a bash script query and assigning the output to a variable like this: exists=`mysql -u $USER_NAME --password=$PASSWORD -D "somedb" \ -e "SELECT * FROM somedb.sometable WHERE field1 ='$a' \ AND field2 ='$b' LIMIT 0 , 30";` which returns something like: echo... (2 Replies)
Discussion started by: unclecameron
2 Replies

6. Shell Programming and Scripting

Using a shell script variable in a mysql query using 'LIKE'

Hello. I am writing a simple script that reads a text file and removes records from a mysql database. The items in the text file are of the format: firstname.middle.lastXXX, where XXX is a 3 digit number. The table has an email field that will match the firstname.middle.last. So, I thought I... (1 Reply)
Discussion started by: bricoleur
1 Replies

7. UNIX for Dummies Questions & Answers

What is inside the definition of Unix?

Is FreeBSD and OpenBSD considered Unix? What O.S does Most of the forum members use? How popular are Licensed Unix operating systems for home users? Additionally I thought Linux was a Minux fork and BSD was a Unix fork. Thanks in ... (7 Replies)
Discussion started by: theKbStockpiler
7 Replies

8. UNIX for Advanced & Expert Users

Variable definition

Hi all, I'm bit new to the advanced bash shell scripting. When I'm looking at some of the existing code in my organization, got confused with a few variable definings. For ex: var1={1:-30} var2="abc def ghi" var3={xyz:-$var2} In above, 1st and last lines are confusing me.... (4 Replies)
Discussion started by: raghu.iv85
4 Replies

9. UNIX for Dummies Questions & Answers

Environment variable definition

I'm a bit confused about the term ‘environment variables'. Within your shell you can set two types of variables: 1. Shell variable - affecting functionality within your shell 2. User defined variable When using the ‘export' command on a variable you make sure it's being inherited by new sub... (2 Replies)
Discussion started by: niels
2 Replies
MONGODBDRIVERBULKWRITE(3)						 1						 MONGODBDRIVERBULKWRITE(3)

The MongoDBDriverBulkWrite class

INTRODUCTION
The MongoDBDriverBulkWrite collects one ore more write operations that should be sent to the server in writees. The MongoDBDriverManager has 3 wrapper methods for single-item writees for simplicity: o MongoDBDriverManager::executeInsert o MongoDBDriverManager::executeDelete o MongoDBDriverManager::executeUpdate along with the main method to execute a write: MongoDBDriverManager::executeBulkWrite When constructing a write, you must define if the write should be executed in order (default), or if it can be reordered by the server. Ordered write write operations are sent to the server, in the order provided, for serial execution. If a write fails, any remaining opera- tions will be aborted. Unordered operations are sent to the server in arbitrary order where they may be executed in parallel. Any errors that occur are reported after all operations have been attempted. CLASS SYNOPSIS
MongoDB0 final MongoDB0ntable Methods o public MongoDBDriverBulkWrite::__construct ([boolean $ordered = true]) o public int MongoDBDriverBulkWrite::count (void ) o public void MongoDBDriverBulkWrite::delete (array|object $filter, [array $deleteOptions]) o public MongoDBDriverObjectID MongoDBDriverBulkWrite::insert (array|object $document) o public void MongoDBDriverBulkWrite::update (array|object $filter, array|object $newObj, [array $updateOptions]) EXAMPLES
Example #1 Mixed write operations sent in groupped writees Mixing write operations (insert/update/delete) will create internal sub-writees and will be sent sequentially to the server. <?php $write = new MongoDBDriverBulkWrite(true); $write->insert($a); $write->update($b, $obj); $write->update($c, $obj); $write->insert($d); $write->insert($e); $write->delete($f); ?> Will result in 4 writes (round-trips) being executed. Example #2 Ordered BulkWrite causing error <?php $write = new MongoDBDriverBulkWrite(false); $write->delete([]); $write->insert(["_id" => 1]); $write->insert(["_id" => 2]); $write->insert(["_id" => 3, "hello" => "world"]); $write->update(["_id" => 3], ['$set' => ["hello" => "earth"]]); $write->insert(["_id" => 4, "hello" => "pluto"]); $write->update(["_id" => 4], ['$set' => ["hello" => "moon"]]); $write->insert(["_id" => 3]); $write->insert(["_id" => 4]); $write->insert(["_id" => 5]); $manager = new MongoDBDriverManager("mongodb://localhost:27017"); $writeConcern = new MongoDBDriverWriteConcern(MongoDBDriverWriteConcern::MAJORITY, 1000); try { $result = $manager->executeBulkWrite("databaseName.collectionName", $write, $writeConcern); } catch(MongoDBDriverDuplicateKeyException $ex) { $result = $ex->getWriteResult(); printf("Inserted %d document(s) ", $result->getInsertedCount()); printf("Updated %d document(s) ", $result->getModifiedCount()); /* If the WriteConcern could not be fullfilled */ if ($writeConcernError = $result->getWriteConcernError()) { printf("%s (%d): %s ", $writeConcernError->getMessage(), $writeConcernError->getCode(), var_export($writeConcernError->getInfo(), true) ); } /* If the write could not happen at all */ foreach ($result->getWriteErrors() as $writeError) { printf("Operation#%d: %s (%d) ", $writeError->getIndex(), $writeError->getMessage(), $writeError->getCode() ); } } catch(MongoDBDriverAuthenticationException $ex) { } catch(MongoDBDriverConnectionException $ex) { } catch(MongoDBDriverRuntimeException $ex) { } ?> The above example will output: Inserted 4 document(s) Updated 2 document(s) Operation#7: E11000 duplicate key error index: databaseName.collectionName.$_id_ dup key: { : 3 } (11000) If the WriteConcern could not be fullfilled, the example above would output something like: Inserted 4 document(s) Updated 2 document(s) waiting for replication timed out (64): array ( 'wtimeout' => true, ) Operation#7: E11000 duplicate key error index: databaseName.collectionName.$_id_ dup key: { : 3 } (11000) Executing the same example, changing the order to false: <?php $write = new MongoDBDriverBulkWrite(false); /* ... */ ?> The above example will output: Inserted 5 document(s) Updated 2 document(s) Operation#7: E11000 duplicate key error index: databaseName.collectionName.$_id_ dup key: { : 3 } (11000) Operation#8: E11000 duplicate key error index: databaseName.collectionName.$_id_ dup key: { : 4 } (11000) SEE ALSO
o MongoDBDriverManager::executeBulkWrite oMongoDBDriverWriteResult oMongoDBDriverWriteConcern oMongoDBDriverWriteConcernError oMongoDBDriverWriteError PHP Documentation Group MONGODBDRIVERBULKWRITE(3)
All times are GMT -4. The time now is 04:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy