मुझे लगता है कि आपको ऐसा कुछ चाहिए:
$conn = $this->getDoctrine()->getConnection();
$stmt = $conn->prepare('INSERT INTO tb_company (v1, v2, v3) values(:v1, :v2, :v3)');
$stmt->bindValue('v1', $v1);
$stmt->bindValue('v2', $v2);
$stmt->bindValue('v3', $v3);
$stmt->execute();
$id = $conn->lastInsertId();
आप bindValue
को श्रृंखलाबद्ध नहीं कर सकते हैं या execute
क्योंकि वे एक boolean
return लौटाते हैं