01.
string
val_feild1 =
"03"
;
02.
string
val_feild2 =
"01.05.2013"
;
03.
04.
using
(OleDbConnection cn2 =
new
OleDbConnection(connectionString))
05.
{
06.
using
(OleDbCommand iCom = connection.CreateCommand())
07.
{
08.
09.
iCom.CommandText =
" Insert Into main (feild1,feild2) Values( "
+val_feild1+
",ctod("
+val_feild2+
") )"
;
10.
11.
command.ExecuteNonQuery();
12.
}
13.
}