Can anyone assist in pointing me to a tutorial, library, etc. that will allow me to work with MongoDB from CodeIgniter?
Any help is really appreciated.
|
Can anyone assist in pointing me to a tutorial, library, etc. that will allow me to work with MongoDB from CodeIgniter? Any help is really appreciated.
| ||||
|
feedback
|
|
I'm not sure if its the "CodeIgniter way" but I created a CodeIgniter library that extends the Mongo class with an extra property to store the current database connection. Here are the relevant code files from my project. config/mongo.php
libraries/Mongo.php
And a sample controller controllers/posts.php
| |||||||||||
feedback
|
|
Working with MongoDB in CodeIgniter wouldn't be much different than working with it anywhere else. You could knock together a MongoDB library that would connect in the constructor and store $this->conn to be used in methods later on. then either work directly with the conn property in your controllers or create a few methods in your MongoDB library to do this for you. Take a look here to see the plain PHP tutorial for working with MongoDB. I'd happily create you a library for this but it would come with a price. :-p | |||||||||||||
feedback
|
|
I like Stephen Curran's example as it is simple and allows an interface to Mongo without too much functionality written within Php, I tend to find huge abstraction clases a bit much at times for what I am after. I have extended his example to include database authentication. Go here: http://www.mongodb.org/display/DOCS/Security+and+Authentication to read about mongo authentication, don't forget to enable authentication for the Mongo Server you are connecting to. I have also changed the old style constructor function to be __construct and am handling Mongo Connection Exceptions as they can reveal your username and password. config/mongo.php
config/mongo.php
| |||||
feedback
|
|
Alex Bilbie's Mongo wrapper looks nice (although I haven't given it a go yet) | |||
|
feedback
|
|
I'm using MongoDB w/ CI and came up with the following. It works for me, but I'm sure it can be tweaked somewhat. I'll worry about tweaking it later but right now it does what I want. I created a model called "database_conn.php"
Then, if I need to connect to a collection from my models.
| |||
|
feedback
|