Merci quand meme mais j'ai trouver mon erreur
string sql =
"create table [" + monthCalendar.TodayDate.ToShortDateString() +
"] ([RVID] int IDENTITY (1,1) PRIMARY KEY, [Heures] nvarchar (8), [Descriptions] nvarchar (247))";
Au lieu de...
string sql =
"create table " + monthCalendar.TodayDate.ToShortDateString() +
" (RVID int IDENTITY (1,1) PRIMARY KEY, Heures nvarchar (8), Descriptions nvarchar (247))";
et mon probleme est partis pour ce bout de code.
Merci Quand Meme.
BigDan