Google Группы больше не поддерживают новые публикации и подписки в сети Usenet. Опубликованный ранее контент останется доступен.

Insert Dataset from a web service into DataBase(SQL Server)

4 просмотра
Перейти к первому непрочитанному сообщению

Pierre

не прочитано,
12 мая 2005 г., 14:15:3412.05.2005
Hi,

I get a Dataset from a web service. I'de like to empty a table in my
local SQL Server and insert my Dataset (from the web service) into
this, now empty, table.

Something like (but working):
private void insertData(string type){
connectionString=ConfigurationSettings.AppSettings["DBConnectionString"];
SqlConnection _sqlcon = new SqlConnection(connectionString);
DataSet ds=new DataSet();
ds=this._webServ.GetPlayersCosts(type);

SqlDataAdapter da = new SqlDataAdapter(sql,this._sqlcon);
da.Fill(ds);
da.Update();
_sqlcon.Close();
}

Thank you for your answers, advices.

W.G. Ryan eMVP

не прочитано,
12 мая 2005 г., 14:45:5512.05.2005
Set the AcceptChangesDuringFill property of the adapter for False before
you call fill. Then you can just use Update and the data will move.

--
W.G. Ryan, MVP

www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"Pierre" <bub...@no-log.org> wrote in message
news:1115921734.3...@g14g2000cwa.googlegroups.com...

0 новых сообщений