仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 408|回复: 7
打印 上一主题 下一主题

[学习教程] ASP网页设计ADO.NET 2.0 Feature Matrix

[复制链接]
山那边是海 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 23:40:15 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
Access是一种桌面数据库,只适合数据量少的应用,在处理少量数据和单机访问的数据库时是很好的,效率也很高。但是它的同时访问客户端不能多于4个。access数据库有一定的极限,如果数据达到100M左右,很容易造成服务器iis假死,或者消耗掉服务器的内存导致服务器崩溃。adoADO.NET2.0FeatureMatrix
BobBeauchemin
DevelopMentor
July2004
Appliesto:
MicrosoftADO.NET2.0
MicrosoftSQLServer2005
Summary:ADO.NET2.0includesanewbase-classprovidermodel,featuresforallproviders,and
changestoSystem.Data.SqlClient.Getanoverviewofthesenewfeatures,examplesoftheiruse,anda
chartofwhichfeaturesareprovider-neutralandSqlClient-specific.(14printedpages)
Contents
TheBase-Class-BasedProviderModel
ConnectionPoolingEnhancements
AsynchronousCommands
BulkImport
ProviderStatistics
AttachDbFileName
SQLServer2005-SpecificFeaturesinSqlClient
Conclusion
ADO.NET2.0comeswithaplethoraofnewfeatures.Thisincludesanewbase-classCbasedprovider
modelandfeaturesthatallproviderscantakeadvantageof,aswellaschangesthatarespecificto
System.Data.SqlClient.Becausethe.NETFramework2.0isbeingreleasedinconjunctionwithSQL
Server2005,someofthesefeaturesrequireSQLServer2005tobeusable.Thisarticleismeanttoserve
asanoverviewandroadmapofthenewfeatures,giveexamplesoftheiruse,andincludesachartof
whichfeaturesareprovider-neutralandwhichareSqlClient-specific.Infuturearticlesinthisseries,Ill
begoingoversomeofthefeaturesingreaterdetail.Inaddition,therearemanynewfeaturesofthe
DataSetandfriends;thesewillbecoveredinfuturearticles.
TheBase-Class-BasedProviderModel
InADO.NET1.0and1.1,providerwritersimplementedaseriesofprovider-specificclasses.Generic
codingwaspossiblebasedonthefactthateachoftheclassesimplementedagenericinterface.Asan
example,System.Data.SqlClientcontainstheclassSqlConnectionandthisclassimplements
IDbConnection.System.Data.OracleClientcontainstheclassOracleConnection,whichalso
implementsIDbConnection.Theprovider-specificclassescouldimplementdata-sourceCspecific
propertiesandmethods,e.g.,SqlConnectionimplementstheDatabasepropertyandthe
ChangeDatabasemethod.OracleConnectiondoesnot,becausetheOracledatabasedoesnothavethe
conceptofmultiple"databases"(theseareknownascatalogsinANSISQL)perdatabaseinstance.The
newprovidermodelinADO.NET2.0isbasedonaseriesofbaseclassesinSystem.Data.Common.
Theseprovideabasicimplementationofcommonfunctionalityand,ofcourse,eachofthebaseclasses
implementsthestill-requiredgenericinterfaceforbackwardcompatibility.Providerwriterscanchooseto
usethebaseclassesorsupporttheinterfaces.
Thereweretwoexceptionstotheinterfacemodelinpreviousversions,the
DataAdapter/DbDataAdapterandCommandBuilder.TheCommandBuilderclassprovidesan
automaticimplementationofINSERT,UPDATE,andDELETEcommandsthatusethesamecolumn-set,
forasimpleSELECTcommand.ExtendingaCommandBuilderwhilekeepingthebasealgorithmthatit
usedtocreateactionstatementswasnotpossiblebecausetheSqlCommandBuilderwasasealedclass.
AlthoughthereisstillnowaytoreusetheSqlCommandBuilderparameterparser,thereisa
DbCommandBuilderbaseclassinSystem.Data.Common.Therearenewfeaturesexposedatthe
base-classlevelintheseclasses,too.TheDataAdapter/DbDataAdapterbaseclassesexposemechanisms
forpushingprovider-specifictypeslikeSQLServerSqlTypesintotheDataSet(the
ReturnProviderSpecificTypesproperty)andforbatchupdates(StatementType.Batchenumeration
valueandUpdateBatchSizeproperty).TheDbCommandBuildercommonbaseclassincludesaproperty
toindicateconcurrencypolicychoices(theConflictDetectionproperty).
ProviderFactories
Oneofthecomplicationsoftheinterface-basedapproachinADO.NET1.0and1.1isthatyoucantcalla
constructoronaninterface.Youmustcreateaconcreteinstanceofaspecificclass.PreviousAPIslike
OLEDBandADOworkedaroundthisbyoverloadingtheconnectionstring.Theconnectionstring
containedtheCOMPROGIDoftheprovider,andthecorrectDataSourceclasswascreatedbasedonthis
PROGID.ThiswaspossiblebecauseOLEDBDataSourcePROGIDswerestoredintheregistry.
VB6ADOcode,Connectionisaninterface(actuallyits_Connection)
DimconnasConnection
notethatthedefaultproviderisMSDASQL,theOLEDBproviderforODBC
thisusestheOLEDBproviderforSQLServer
conn.ConnectionString="provider=sqloledb;.."otherparameters
deleted
conn.Open
ADO.NET2.0hasasolutionforthis.EachdataproviderregistersaProviderFactory</p>源代码保护方面其实现在考虑得没那么多了..NET也可以反编译.ASP写得复杂的话别人能看得懂的话.他也有能力自己写了.这方面担心的倒不太多.纵观现在网上可以下载的那些所谓BBS还有什么网站等等的源代码
沙发
发表于 2015-1-29 06:52:49 | 只看该作者
不能只是将它停留在纸上谈兵的程度上。
蒙在股里 该用户已被删除
板凳
发表于 2015-2-3 19:47:39 | 只看该作者
Application:这个存储服务端的数据,如果不清除,会直到web应用程序结束才清除(例如重启站点)
admin 该用户已被删除
地板
发表于 2015-2-9 04:28:38 | 只看该作者
ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:
小妖女 该用户已被删除
5#
发表于 2015-2-26 22:09:30 | 只看该作者
尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。
兰色精灵 该用户已被删除
6#
发表于 2015-3-8 18:15:06 | 只看该作者
ASP.Net摆脱了以前ASP使用脚本语言来编程的缺点,理论上可以使用任何编程语言包括C++,VB,JS等等,当然,最合适的编程语言还是MS为.NetFrmaework专门推出的C(读csharp),它可以看作是VC和Java的混合体吧。
因胸联盟 该用户已被删除
7#
发表于 2015-3-16 09:37:01 | 只看该作者
Session:这个存储跟客户端会话过程的数据,默认20分钟失效
谁可相欹 该用户已被删除
8#
发表于 2015-3-22 22:09:34 | 只看该作者
学习是为了用的,是为了让你的程序产生价值,把握住这个原则会比较轻松点。除此之外,课外时间一定要多参加一些社会实践活动,来锻炼自己的能力。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2025-1-10 04:19

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表