in CakePHP how would go about running this query? It’s to get the next sequence value in a postgres DB.
"SELECT nextval('book_id_seq')"
I’m used to using a syntax like $this->find('all') but that wouldn’t work afaik.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This kind of query you can do it with the query function
$query is
"SELECT nextval('book_id_seq')";some special queries have to be done like this… at most you may get last inserted id in mysql
hope this helps you 🙂