I am having view this comes from push view controller through navigation.this view has scroll view,when i run the project view is not scrolling.how do i make it scroll.
how to create SQl statement for update using 'where' condition with 'name', how to bind this name to sql statement...
///example
const char *sql = "update profile set name = ? ,Lname = ?, date = ?,phno = ? ,image = ? , id= ? where name=?;";
Hi..
I am creating stored procedure ,here code :
CREATE PROCEDURE `dbnm`.`getlogin`
(
IN uid INT,
IN upass VARCHAR(45)
)
BEGIN
if exists(select uphno,pass from user_master where uphno=uid and pass=upass)then
***true
else
***false
end if;
END $$
DELIMITER ;
i want return value(**true or **false) in stored procedure
from PHP by calling sp
PHP code:
$res = $mysqli->query('call getlogin("1","rashmi")');
how to acesss boolean value in PHP from sp?
Thanks