com presentations: History: 0.8.4: phphhvm-tek15.xml slides/mongodb/author-kristina.png slides/mongodb/driver-history-0.8.4-2.xml slides/mongodb/driver-history-0.8.4.xml

[email protected] (Derick Rethans)
Newsgroups php.pres
Message-ID <[email protected]>
Commit:    55e02b6f1fa173a854ece4e78f50800757cc1e7f
Author:    Derick Rethans <[email protected]>         Sun, 17 May 2015 11:07:24 -0500
Parents:   70af8f5f6beb3f9990e9685acaed93ea3d388147
Branches:  master

Link:       http://git.php.net/?p=presentations.git;a=commitdiff;h=55e02b6f1fa173a854ece4e78f50800757cc1e7f

Log:
History: 0.8.4

Changed paths:
  M  phphhvm-tek15.xml
  A  slides/mongodb/author-kristina.png
  A  slides/mongodb/driver-history-0.8.4-2.xml
  A  slides/mongodb/driver-history-0.8.4.xml


Diff:
diff --git a/phphhvm-tek15.xml b/phphhvm-tek15.xml
index 0de52dc..079de69 100644
--- a/phphhvm-tek15.xml
+++ b/phphhvm-tek15.xml
@@ -36,12 +36,16 @@ first driver (0.8.4) april 2009
   {NULL, NULL, NULL}
  - many existing functionality through PHP based classes
 
+<slide>slides/mongodb/driver-history-0.8.4.xml</slide>
+<slide>slides/mongodb/driver-history-0.8.4-2.xml</slide>
+
 0.9.0 - 5.3 support (may 2009)
 - does db, cursor and collection classes
 
 1.0.0 - sept 2009
 - the choice to always return arrays is made
 
+
 nov 2011 - I start helping out
 jan 2012 - Hannes does the odd patch
 feb 2012 - Kristina retires - 1.2.8
diff --git a/slides/mongodb/author-kristina.png b/slides/mongodb/author-kristina.png
new file mode 100644
index 0000000..09bba8f
Binary files /dev/null and b/slides/mongodb/author-kristina.png differ
diff --git a/slides/mongodb/driver-history-0.8.4-2.xml b/slides/mongodb/driver-history-0.8.4-2.xml
new file mode 100644
index 0000000..ba25570
--- /dev/null
+++ b/slides/mongodb/driver-history-0.8.4-2.xml
@@ -0,0 +1,27 @@
+<slide>
+<title>History: 0.8.4 (April 2009)</title>
+
+<image filename="author-kristina.png" align="right"/>
+<example><![CDATA[
+<?php
+include "Mongo.php";
+
+$m = new Mongo();
+$c = $m->selectCollection("phpt", "find");
+$c->drop();
+
+$c->insert( array(
+    "foo" => "bar",
+    "a" => "b",
+    "b" => "c")
+);
+
+$cursor = $c->find(array("foo"=>"bar"), array("a"=>1,"b"=>1));
+
+while ($cursor->hasNext()) {
+    var_dump($cursor->getNext());
+}
+
+?>
+]]></example>
+</slide>
diff --git a/slides/mongodb/driver-history-0.8.4.xml b/slides/mongodb/driver-history-0.8.4.xml
new file mode 100644
index 0000000..41e0b46
--- /dev/null
+++ b/slides/mongodb/driver-history-0.8.4.xml
@@ -0,0 +1,14 @@
+<slide>
+<title>History: 0.8.4 (April 2009)</title>
+
+<image filename="author-kristina.png" align="right"/>
+<list>
+	<bullet>Resources for connections</bullet>
+	<bullet>Classes for types (Code, Date, Object ID, Regex and BinData)</bullet>
+	<bullet>Very few functions:<br/>
+%mongo_connect%, %mongo_close%, %mongo_remove%, %mongo_query%, %mongo_insert%,
+%mongo_batch_insert%, %mongo_update%, %mongo_has_next%, %mongo_next%,
+%mongo_gridfs_init%, %mongo_gridfs_store%, %mongo_gridfile_write%</bullet>
+	<bullet>Additional functionality through PHP files</bullet>
+</list>
+</slide>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.