Originally posted on Arnab's Blog:
Today we learn how to integrate jqgrid with codeigniter. At first, write a model in your application/model directory. The code is …. class JqgridSample extends CI_Model { function getAllData($start,$limit,$sidx,$sord,$where){ $this->db->select(‘id,name,email,passport,phone,fax,address’); $this->db->limit($limit); if($where != NULL) $this->db->where($where,NULL,FALSE); $this->db->order_by($sidx,$sord); …
Originally posted on Arnab's Blog:
Hello all, Today we are going to learn how to write a stored procedure in sql server. The following code is a sample one. If you like it you can use this format for all stored procedure… SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO if exists(select * from…
Originally posted on Arnab's Blog:
Dear all, Today we are going to discuss about a different subject that is accounting which is necessary to know for developing an Accounting software, Point of sale, ERP, Banking solution etc. I divide this tutorial into some series for clearly understanding the accounting. First of all we have…
Originally posted on Arnab's Blog:
Hello all, Thanks for waiting for the finest part of accounting. Today we will see how transactions are stored for basic accounting. In the first part of this series we know that accounting basically lays on equation.. ↑ Asset = ↑ Equity + ↑ Liabilities That means if equity…
Originally posted on Arnab's Blog:
Hi all, Today we are going to learn about double entry system of accounting which means debit and credit. This is the toughest part of accounting. But, if you are confident about the earlier part of this series then this part is not so difficult. Now, we all know…
Originally posted on Arnab's Blog:
Dear all, Sometimes we need to copy the data from access db to sql server. For transferring data we can use openrowset command. For using openrowset you need the Ad Hoc Distributed Queries component turned on. But, by default this component is being turned off for the security of server. But you…
Integrate twig with codeigniter and codeigniter hmvc
Integrate twig with codeigniter and codeigniter hmvc.
Python Learning Step One(Data types and variables)
Dear all, I want to describe you about python datatypes and variables. In python language there are several types of variables. Such as.. Integer String Float Boolean List Dictionaries Tuples Declaring A variable in python.. a = 10 # now a is integer variable b = 10.00 # now b is float variable c = ‘abc’…
Downloading and Installing python
Dear all, How are you? Today i am going to describe how to install python to your windows machine. At first, visit http://www.python.org/download/ to download the python. You may download the latest version of python but i recommend to download the python 2.7 version because of many of the python framework doesn’t work with python…