Click here to Skip to main content
15,886,788 members
Home / Discussions / Database
   

Database

 
AnswerRe: Need help with an oracle UPDATE Pin
David Skelly7-Jun-10 2:50
David Skelly7-Jun-10 2:50 
GeneralRe: Need help with an oracle UPDATE Pin
Kalyan_A7-Jun-10 5:11
professionalKalyan_A7-Jun-10 5:11 
QuestionRTF to TEXT Pin
Sebastian T Xavier6-Jun-10 20:45
Sebastian T Xavier6-Jun-10 20:45 
AnswerRe: RTF to TEXT Pin
Mycroft Holmes6-Jun-10 23:29
professionalMycroft Holmes6-Jun-10 23:29 
GeneralRe: RTF to TEXT Pin
Sebastian T Xavier6-Jun-10 23:40
Sebastian T Xavier6-Jun-10 23:40 
GeneralRe: RTF to TEXT Pin
Sebastian T Xavier6-Jun-10 23:43
Sebastian T Xavier6-Jun-10 23:43 
AnswerRe: RTF to TEXT Pin
J4amieC6-Jun-10 23:42
J4amieC6-Jun-10 23:42 
GeneralRe: RTF to TEXT Pin
Sebastian T Xavier6-Jun-10 23:51
Sebastian T Xavier6-Jun-10 23:51 
Thanks for your reply.

This method also I have tried.
What I have intended to do is to create a class library , add the following code;
public String ConvertRtftoText(RichTextBox rtb)
        {
            String strText = "";
            try
            {
                strText = rtb.Text;
            }
            catch (Exception Ex)
            {
                // do nothing
            }
            return strText;
        }


& call this as a CLR stored procedure.
But the problem which I faced is , when I tried to execute the below code
CREATE ASSEMBLY getTextfromRTF
from '\\ustech39\Shared\BackendRTFHandler.dll'
WITH PERMISSION_SET = UNSAFE


I got another error

Warning: The Microsoft .Net frameworks assembly 'system.windows.forms, version=2.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
Warning: The Microsoft .Net frameworks assembly 'system.drawing, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a, processorarchitecture=msil.' you are registering is not fully tested in SQL Server hosted environment.
Msg 10301, Level 16, State 1, Line 1
Assembly 'BackendRTFHandler' references assembly 'accessibility, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a.', which is not present in the current database. SQL Server attempted to locate and automatically load the referenced assembly from the same location where referring assembly came from, but that operation has failed (reason: 2(The system cannot find the file specified.)). Please load the referenced assembly into the current database and retry your request.


modified on Monday, June 7, 2010 9:19 AM

GeneralRe: RTF to TEXT Pin
Mycroft Holmes7-Jun-10 0:56
professionalMycroft Holmes7-Jun-10 0:56 
GeneralRe: RTF to TEXT Pin
Sebastian T Xavier7-Jun-10 1:22
Sebastian T Xavier7-Jun-10 1:22 
GeneralRe: RTF to TEXT Pin
Mycroft Holmes7-Jun-10 1:30
professionalMycroft Holmes7-Jun-10 1:30 
GeneralRe: RTF to TEXT Pin
Eddy Vluggen7-Jun-10 1:59
professionalEddy Vluggen7-Jun-10 1:59 
GeneralRe: RTF to TEXT Pin
Sebastian T Xavier7-Jun-10 3:19
Sebastian T Xavier7-Jun-10 3:19 
GeneralRe: RTF to TEXT Pin
Eddy Vluggen7-Jun-10 3:48
professionalEddy Vluggen7-Jun-10 3:48 
GeneralRe: RTF to TEXT Pin
Sebastian T Xavier7-Jun-10 4:25
Sebastian T Xavier7-Jun-10 4:25 
GeneralRe: RTF to TEXT Pin
Eddy Vluggen7-Jun-10 4:59
professionalEddy Vluggen7-Jun-10 4:59 
QuestionHas anyone run SQL Server 2000 Developer's Edition on Windows 2008? Pin
Xiangyang Liu 刘向阳3-Jun-10 12:52
Xiangyang Liu 刘向阳3-Jun-10 12:52 
QuestionINLINE FUNCTION Pin
It_tech3-Jun-10 4:18
It_tech3-Jun-10 4:18 
AnswerRe: INLINE FUNCTION Pin
J4amieC3-Jun-10 4:39
J4amieC3-Jun-10 4:39 
GeneralRe: INLINE FUNCTION Pin
It_tech3-Jun-10 5:51
It_tech3-Jun-10 5:51 
GeneralRe: INLINE FUNCTION Pin
J4amieC3-Jun-10 6:06
J4amieC3-Jun-10 6:06 
GeneralRe: INLINE FUNCTION Pin
It_tech3-Jun-10 6:26
It_tech3-Jun-10 6:26 
GeneralRe: INLINE FUNCTION Pin
J4amieC3-Jun-10 6:34
J4amieC3-Jun-10 6:34 
GeneralRe: INLINE FUNCTION Pin
It_tech3-Jun-10 7:00
It_tech3-Jun-10 7:00 
GeneralRe: INLINE FUNCTION Pin
Mycroft Holmes3-Jun-10 14:20
professionalMycroft Holmes3-Jun-10 14:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.