For a system I am using, it requires the input format to be text even though the value is integer. In SQL, this is forced by using the following method:
variable_x = '"' + 5 + '"'
How do I do this in R? I tried as.character. But when I write out the data, the quote is missing.
CodeIgniter - Basic Concepts
CodeIgniter - Basic Concepts
Controllers
A controller is a simple class file. As the name suggests, it controls the whole application by URI.
Cr…Read More
CodeIgniter - Libraries
The essential part of a CodeIgniter framework is its libraries. It provides a rich set of libraries, which indirectly increase the speed of developi…Read More
CodeIgniter - Working with Database
CodeIgniter - Working with Database
Like any other framework, we need to interact with the database very often and CodeIgniter makes this job easy …Read More
CodeIgniter - Installing
It is very easy to install CodeIgniter. Just follow the steps given below −
Step-1 − Download the CodeIgniter from the link CodeIgniter
…Read More
CodeIgniter - MVC Framework
CodeIgniter is based on the Model-View-Controller (MVC) development pattern. MVC is a software approach that separates application logic from p…Read More
0 comments:
Post a Comment
Thanks