|
-
Dec 26th, 2008, 12:43 AM
#1
Thread Starter
Hyperactive Member
Suggestion on keeping rtf.rtf in sql db
Need your suggestion on keeping RichTextBox.rtf (rtf proerty RichtextBox) in slq table
so that i can save rtf data and retreiw back from sql table in same formt like bold underline and etc.. for a multi user environmet
1. Is it good to keep like this instead of rtf text will it be reliable to insert RichtextBox.rtf
2. Is there any problem to slq database for size etc..
3. I am using text field at present what should i use
Please suggest
-
Dec 26th, 2008, 02:40 AM
#2
Re: Suggestion on keeping rtf.rtf in sql db
The answer depends on which database and which version. SQL Server 2008 introduces a new method to store Blob data. Basically, you define the field as varbinary(max) or varchar(max) and give it a FileStream attribute. SQL Server 2008 then stores the actual file in the FileSystem but applications can still use typical t-sql statements to insert/update the data. With SQL Server 2005 the data is stored in the database file.
-
Dec 26th, 2008, 03:28 AM
#3
Thread Starter
Hyperactive Member
Re: Suggestion on keeping rtf.rtf in sql db
I am using sql server 2000
-
Dec 26th, 2008, 07:25 AM
#4
Re: Suggestion on keeping rtf.rtf in sql db
Since you are already using text to store it, are you currently having problems with it?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|