c# - Which DataSet creation technique is faster? -


इन तकनीकों में से कौन सा तेज है?

1)

  डीबीडाटाएडेटाडेटाडेटाएडैप्टर = _ फ़ैक्टरी। क्रेडेटडाटाएडेटाटर (); DataAdapter.SelectCommand = _command; डेटासेट = नया डेटासेट (); dataAdapter.Fill (डाटासेट);  

2)

  डेटाटाले डीटी = नया डेटाटाले (); आईडीटा रीडर iDataReader = _command.ExecuteReader (); dt.Load (iDataReader); iDataReader.Close ();  

इन लिंकों पर नजर डालें

और

जैसा कि आपके प्रश्न पर टिप्पणी में उल्लिखित है। हाथ की स्थिति के लिए जांच करना सबसे अच्छा होगा, कभी भी एक नियम सभी पर लागू नहीं होता है।


Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -