If I define a column in a mysql database as type int, my queries always return the values as type string.
Is there a way of retreiving the right type?
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.
Yes, using PDO and the mysqlnd driver you can retrieve integers as type(int).
e.g.
prints
on my machine. As you can see the
idis returned as an integer.