ADO.NET Provider for NNTP

Grazie all'idea di  Dirk Primbs è possibile interrogare un server NNTP usando dei semplici SQL statement :-)

"yeah, you can fire a SELECT-statement against a newsserver now :-)" 

Qui trovate il provider da scaricare:

http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=49e40d01-3713-4b53-881d-266f5c5613a5 .

Di seguito un semplice esempio di come usarla:

nntpConnection conn = new nntpConnection("news.microsoft.com");
try
{
    conn.Open();
    nntpCommand cmd = new nntpCommand("select top 10 * from microsoft.public.sharepoint.portalserver", conn);
    nntpDataAdapter da = new nntpDataAdapter(cmd);
    DataSet ds = new DataSet();
    da.Fill(ds);
    dataGrid1.DataSource = ds.Tables[0];
    cmd.Dispose();
}
finally
{
    conn.Dispose();
}

posted @ domenica 12 settembre 2004 14:32

Print

Comments on this entry:

# re: ADO.NET Provider for NNTP

Left by spa.- at 16/03/2008 20:25
Gravatar
il link è morto
Comments have been closed on this topic.
«novembre»
domlunmarmergiovensab
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567