//Here is my attempt:
<?php
//PDO prepare statement to create a row in the database'
$pdo = new PDO("sqlite:customer.db");
$statement =
$pdo->prepare("INSERT INTO customer(CustomerID, CustomerName) VALUES('LA002', 'Alex Matrix')");
$statement->execute();
$numberOfRowsCreated = $statement->rowCount();
echo "Created ".$numberOfRowsCreated." new rows";
//I get 0 new rows. what am I doing wrong?