首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 企业软件 > 行业软件 >

sharepoint列表和库解决方法

2012-02-23 
sharepoint列表和库大家一起来谈谈sharepoint列表和库的区别!他们在sharepoint定制中个起什么作用,本人十

sharepoint列表和库
大家一起来谈谈sharepoint列表和库的区别!他们在sharepoint定制中个起什么作用,本人十分想了解,先谢谢各位参与

[解决办法]
A very important distinction between a SharePoint List and a Document Library is the limitations of the attachments in practice.

With a Document Library I can: SPFileCollection.Add(String, Stream) - Accepting a Stream, means the contents can be in memory, on disk, or even a TCP/IP socket.

With a List I must SPAttachmentCollection.Add(string, byte[]) - Only accepting a byte[] meaning that the attachment must fit entirely in one contiguous block of memory. If this is something you do often with large files, your server memory may become framented. 

After working on a project for a while, I am faced with a new requirement that I need to store large files along with what had been a SharePoint list. After being bit like this, in the future I may just make everything a Document Library.


 I was reading MSDN article and got to know that Document Library can have Check In/Out feature, but a List cannot have this.
[解决办法]
言下之意就是Document Library更正规,功能更多
我一般都是用Document Library
[解决办法]
不明白你说啥 我只知道List 所有内些都是List 你说的不同只是不同的List有不同的功能 本质都是一样的
[解决办法]
我觉得list只是单纯的数据处理,而库的话功能更多,比如文档库可以上传,转换之类的

热点排行