$sql = 'insert into rows set row = ?';
$sth = $pdo->prepare($sql);
$sth->bindParam(1, 'default');
$sth->execute();
$pdo->query("insert into rows values ()");
$sql = 'insert into rows set row = DEFAULT(row)';
$sth = $pdo->prepare($sql);
$sth->execute();