Does anyone know how to connect to CouchDB using codeigniter?
We have tried many tutorials, we have added the necessary libraries, but we have not succeeded. Please help us.
Does anyone know how to connect to CouchDB using codeigniter?
We have tried many tutorials, we have added the necessary libraries, but we have not succeeded. Please help us.
I'm finishing here, thanks, after much effort we got connection, it's just loading the library into autoload. and start using the methods.
//no autoload.php
$autoload['libraries'] = array('couchdb');
//criar uma database
$dsn ='http://127.0.0.1:5984/';
$couch = new couchClient($dsn, 'testecouch'); // See if we can make a connection
$resp = $couch->createDatabase();
The library is working perfectly.