how to update and retrieve ntext fields in my asp code

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default how to update and retrieve ntext fields in my asp code

    how to update and retrieve ntext fields in my asp code



    PLEASE HELP







    el_sherif Guest

  2. Similar Questions and Discussions

    1. CFMX and NTEXT fields
      I have a SQL table that includes 2 NTEXT fields. When I do a cfquery such as SELECT * FROM MYFILE, I get no value back for these fields. Playing...
    2. Retrieve fields with similar values from 2 tables?
      Hi, How do i retreive fields with similar values from 2 tables? I tried to use "SELECT * FROM $table1 as o , $table2 as p WHERE o.name like...
    3. Retrieve ntext field using ODBC Socket
      Help....! I just upgraded cfmx6.1 to cfmx7, and all queries retrieve ntext field from MS SQL Server fail. It displays nothing or empty string...
    4. Cant get the values from the NTEXT fields
      Unfortunately I have to use the ODBC driver in order to connect to the SQL 2000 personal edition on my development workstation. but this is still...
    5. problem to retrieve value on update event in datagrid
      Could it be that you reload your datagrid and there by repopulate the values after that the viewstate has been loaded? I suggest you check when your...
  3. #2

    Default how to update and retrieve ntext fields in my asp code

    how to update and retrieve ntext fields in my asp code

    PLEASE HELP


    el_sherif Guest

  4. #3

    Default Re: how to update and retrieve ntext fields in my asp code

    You need to be a little more descriptive then that.

    -Andrew

    * * * Sent via DevBuilder [url]http://www.devbuilder.org[/url] * * *
    Developer Resources for High End Developers.
    Andrew Durstewitz Guest

  5. #4

    Default Re: how to update and retrieve ntext fields in my asp code

    yourAdoConnectionObject.Execute "UPDATE tblXYZ SET thentextfield=N'Hello
    There' WHERE thePrimaryKeyField=1"

    yourAdoConnectionObject.yourStoredProcedureOnTheSe rverThatTakesTwoParameters
    "Hello There", 1

    Open Books Online....Drill down

    Accessing and Changing Relational Data
    Advanced Query Concepts
    Managing ntext, text, and image Data

    for more information

    "el_sherif" <el_sherif@hotmail.com> wrote in message
    news:%23S7ReM3VDHA.2104@TK2MSFTNGP10.phx.gbl...
    > how to update and retrieve ntext fields in my asp code
    >
    > PLEASE HELP
    >
    >

    Tom B Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139