Search
 
SCRIPT & CODE EXAMPLE
 

SQL

insert query in ci

function order_summary_insert()
    $OrderLines=$this->input->post('orderlines');
    $CustomerName=$this->input->post('customer');
    $data = array(
        'OrderLines'=>$OrderLines,
        'CustomerName'=>$CustomerName
    );

    $this->db->insert('Customer_Orders',$data);
}
Comment

PREVIOUS NEXT
Code Example
Sql :: sql limit decimal places 
Sql :: remove binlog mysql 
Sql :: mysql select and count left join 
Sql :: select all_source oracle 
Sql :: coalesce postgresql 
Sql :: clear query cache sql server 
Sql :: oracle all tables 
Sql :: SET NOCOUNT ON; 
Sql :: mysql check if not null 
Sql :: sql where keyword 
Sql :: mysql first day of month date 
Sql :: django mssql backend 
Sql :: python sqlalchemy connection show server 
Sql :: mssql disable foreign key constraint 
Sql :: oracle replace 
Sql :: spring datasource properties mysql 
Sql :: remove duplicates sql server select 
Sql :: sql identity column reset 
Sql :: SQL COUNT() with DISTINCT 
Sql :: truncate function in sql oracle 
Sql :: pl/sql cursor 
Sql :: SQL CREATE UNIQUE INDEX for Unique Values 
Sql :: multiple count in sql 
Sql :: current date sql 
Sql :: sql round down to nearest integer 
Sql :: remove user and their privileges postgres 
Sql :: how to test for sql injection 
Sql :: zsh-syntax-highlighting zsh-autosuggestions 
Sql :: postgre describe table 
Sql :: connect mysql command line 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =