I am not sure if this problem has anything to do with my code or simply the way that my database is set up. Any pointers would be awesome!
This is the error message that I get:

I have gone to "Modify Connection" and used the 'Test Connection' tool and that says that it connects fine but when the actual program runs nothing happens and I get the error.
Here is my code:
private void btnAddCustomer_Click(object sender, EventArgs e)
{
SqlConnection CustomerInfo = new SqlConnection("Data Source=C:\\Users\\Cory\\Desktop\\DeluxWrapsWindows\\DeluxWrapsWindows\\DeluxWraps_DB.mdb");
{
SqlCommand xp = new SqlCommand("Insert into CustomerInfo(LastName, FirstName, Email, PhoneNumber, Address, Instagram, CarMake, CarModel, AdditionalNotes) Values(@LastName, @Firstname, @Email, @PhoneNumber, @Address, @Instagram, @CarMake, @CarModel, @AdditionalNotes)", CustomerInfo);
xp.Parameters.AddWithValue("@LastName", txtLastName.Text);
xp.Parameters.AddWithValue("@FirstName", txtFirstName.Text);
xp.Parameters.AddWithValue("@Email", txtEmail.Text);
xp.Parameters.AddWithValue("@PhoneNumber", txtPhoneNumber.Text);
xp.Parameters.AddWithValue("@Address", txtAddress.Text);
xp.Parameters.AddWithValue("@Instagram", txtInstagram.Text);
xp.Parameters.AddWithValue("@Carmake", txtCarMake.Text);
xp.Parameters.AddWithValue("@CarModel", txtCarModel.Text);
xp.Parameters.AddWithValue("@AdditionalNotes", txtAdditionalNotes.Text);
CustomerInfo.Open();
xp.ExecuteNonQuery();
CustomerInfo.Close();
}
}