Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Change Data Table name in dataset
Message
 
 
À
11/03/2012 14:35:51
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Versions des environnements
Environment:
C# 2.0
Divers
Thread ID:
01537984
Message ID:
01537987
Vues:
32
>>Say I am creating a data set as following:
>>
>>
>>DataSet MyDataSet = new DataSet();
>>Adapter.Fill( MyDataSet );
>>
>>
>>I don't know what is the default name of the table inside the data set. But I want to set the name of this table to be specific to what I need (e.g. "MyTable"). How can I do it?
>>
>>Note that since the variable Adapter is of type IDbDataAdapter, I cannot pass the second parameter to the .Fill() method.
>
>Here it is:
>
>
>                ' Adjust to our default name
>                oDataSet.Tables("Table").TableName = "Temp"
>
>
>Then, you can refer as Temp or whatever the name you wish to have:
>
>
>                ' Record count
>                nCount = oDataSet.Tables("Temp").Rows.Count
>
Thank you. I also found the following approach:
MyDataSet.Tables[0].TableName = "MyTable"; 
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform