Bye Bye Opera

April 16, 2008 at 5:28 pm | In Uncategorized | Leave a Comment
Tags: , ,

Opps. I am fool. Mozilla is always better then Opera.

Bye Bye Opera.

Welcome to Mozilla.

My Sweet Home

April 12, 2008 at 6:58 pm | In Uncategorized | 1 Comment
Tags: , , , ,

My Sweet Home at

Naringra, Devgad Taluka, Maharashtra, India

Continue reading My Sweet Home…

PHP & Excel

April 11, 2008 at 12:06 pm | In CakePHP, Uncategorized | Leave a Comment
Tags: , , ,

PhpExcel reader is good wrapper to read data from excel file. I have used this in one of my CakePHP project.

This is component class

class ExcelComponent
{
var $file = "";
var $setOutputEncoding = "UTF-8";
var $data;
var $controller;function startup( &$controller )
{
$this->controller = &$controller;
}function read()
{
vendor('Excel'.DS.'reader');
$this->data = new Spreadsheet_Excel_Reader();
$this->data->setOutputEncoding = $this->setOutputEncoding;
$this->data->read($this->file);
}
}

?>

  • http://sourceforge.net/projects/phpexcelreader

Sqlite 2.0 and .NET 2.0

April 11, 2008 at 11:50 am | In .NET, SQLite, Uncategorized | Leave a Comment
Tags: ,

Yesterday I create add-in utility program for perviosly developed application which was in .Net 1.1 & SQLite 2.0 with Finisar.SQLite.

I was unable to connect Sqlite 2.0 database with System.Data.SQLite, so i decided to use same old Finisar.SQLite

I add referece SQLite.NET.dll in my .Net 2.0 Project.

And copied sqlite.dll in bin folder.

It works.

  • http://sqlite.phxsoftware.com/ (SQLite .net wrapper for .Net 2.0)
  • http://adodotnetsqlite.sourceforge.net/ (SQLite .net wrapper for .Net 1.1)

Good Morning

April 11, 2008 at 11:43 am | In Uncategorized | Leave a Comment

This is my first post.

Blog at WordPress.com. | Theme: Pool by Borja Fernandez.
Entries and comments feeds.