Sodium Home Page
Türkiye'nin Programlama Dili
What is Soduim?
What is the Motivation To Develop a New Software Language ?
void button_clicked() {
/* Select statement */
rsCounties = select county_name as label,
county_id as value
from
htsql.counties
order by
county_name;
if (rsCounties) then
message(rsCounties.label);
end if;
/* Insert statement */
insert into hr.deps (DEP_ID, DEP_NAME) values (htsql_test.nextval, :depname);
/* Update statement */
update hr.deps
set
dep_name = 'HR'
where
dep_name like '%'|| :col || '%';
/* Delete statement */
delete
hr.deps
where
dep_name = :dep_name;
/* Sub query */
delete hr.emps
where dep_id in (select dep_id from deps where region_id like '%' || :param || '%');
/* PL/SQL Anonymous block */
begin
for i in (select * from hr.emps e where e.retired = 'F') loop
calculate_salary(i.emp_id);
end loop;
end;
}How does Sodium works ?
Components

Last updated










