SQL Insert DateTime object into Date column

Hi, how do you insert a DateTime object into an SQL column of type date? Do you convert it to String or pass the DateTime object directly or …?

Hi @DEATHFISH

Check this

“insert into table_name(create_date) values(”'+Now.ToString("mm/dd/yyyy))

Th@nks
@shwin S

Its not working… string is not excepted by datetime field in sql