SkillAgentSearch skills...

P4TMongo

P4TMongo is a PHP Class that mimics the popular AdoDB PHP Library. Use your favorite getOne, getRow, getAll, getCol and other commands with MongoDB.

Install / Use

/learn @clops/P4TMongo
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

P4TMongo

P4TMongo is a PHP Class that mimics the popular AdoDB PHP Library. Use your favorite getOne, getRow, getAll, getCol and other commands with MongoDB.

Prerequisites

  • PHP Version 5.2+
  • PHP MongoDB Driver Version 1.2.6+
  • MongoDB Version 1.6+

Usage

This class is a layer above the MongoDB PHP Driver that implements most AdoDB functions. First you need to initialize a connection:

<?php
...
    include_once('P4TMongo.class.php');
    $db = new P4TMongo('mongodb://user.password@localhost');
    $db->setDBName('myDatabase');
    ...
?>

And then you can start using your favorite AdoDB functions with MongoDB right out of the box, for example:

<?php
    ...
    $filter = array(
                        'Gender' => 'male'
                    );

    //getOne returns one value
    $value = $db->getOne('myTestCollection', 'columnIWantToTakeValueFrom', $filter);
    
    //getCol returns one column
    $column = $db->getCol('myTestCollection', 'columnIWantReturned', $filter);
    
    //getRow returns one row
    $row = $db->getRow('myTestCollection', $filter);
    
    //getAll returns all rows
    $allDataInCollection = $db->getAll('myTestCollection', $filter);
    ...
?>

Supported getters are:

  • getOne()
  • getOneByID()
  • getCol()
  • getRow()
  • getRowByID()
  • getAll()
  • getAssoc()

How about inserting data?

<?php
    ...
    $record = array(
                    'Name' => 'Alehandro Coolikoff',
                    'Gender' => 'male',
                    'Age' => 30
                );
                
    $db->insert('myTestCollection', $record);
    ...
?>

There are also helper function for updating, deleting, counting, grouping and executing admin commands. Please check the function definitions for more details on possible usage options.

License

Copyright 2012 Alexey Kulikov / a.kulikov@gmail.com / POOL4TOOL AG, Vienna, Austra

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

View on GitHub
GitHub Stars6
CategoryDevelopment
Updated1y ago
Forks1

Languages

PHP

Security Score

55/100

Audited on Oct 14, 2024

No findings