Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Using DataViews
Message
De
19/11/2004 16:14:26
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
Bases de données
Titre:
Using DataViews
Divers
Thread ID:
00963072
Message ID:
00963072
Vues:
43
I am looking at the code below from the help file (and it is the same as in the example provided with MM) and I can not figure it out. So is it just me, or ...

1. First the code checks to see if DataView named dv+ (in this case dvShippers) exists and if not,
2. goes and creates DataView called dvShippersByPhone

Any reasonable explanation or it is just one of those spelling errors ;)?

// Check if the DataView already exists <===1.
DataView dv = (ds.GetDataView("dv" + this.CurrentTableName, this.CurrentTableName));
if (dv == null)
{
// Create a custom DataView sorted by phone
dv = new DataView(ds.Tables["Shippers"]);
dv.Sort = "Phone";
ds.AddDataView(dv, "dvShippersByPhone"); <=== 2.
}
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform