I have this Sql query:...INSERT INTO myTable (myField) VALUES (N'Thermal Oxide: 0 Å to 40 μm')
...and I want to exeute it by SqlBulkCopy like that:...DataTable myDataTable=myDb.getData("select top 1* from myTable").Clone();
DataRow dr = myDataTable.NewR...