convert dateTimePicker string to SQL format

This commit is contained in:
Andreas Zweili 2017-07-22 15:42:33 +02:00
parent c3fb4a6976
commit 96d82feece
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ namespace marketconnectionNET
{
dataaccess db = new dataaccess();
db.InsertPerson(firstnameInsText.Text, lastnameInsText.Text, dateTimePicker.Text, streetnameInsText.Text, streetnumberInsText.Text);
db.InsertPerson(firstnameInsText.Text, lastnameInsText.Text, dateTimePicker.Value.Date.ToString("yyyyMMdd"), streetnameInsText.Text, streetnumberInsText.Text);
firstnameInsText.Text = "";
lastnameInsText.Text = "";