SQL Server query with Image datatype

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default SQL Server query with Image datatype

    Hi Folks

    Can anyone please tell me how I can safely run an SQL query on SQL
    2000 via a Perl which includes a field of Image datatype which holds
    images stored in the database ?

    Every time I add the Image field to my query, it causes Perl to
    perform an illegal operation.

    Thanks
    John
    Fresh Air Rider Guest

  2. Similar Questions and Discussions

    1. Storing documents MSSQL IMAGE datatype
      I am trying to store various kinds of documents in an IMAGE datatype in MS SQL Server 2000 using CFMX 7 and having no luck. I have googled the...
    2. forcing string datatype in query of queries
      In a query, I have a column of varchar type and the strings consist of numbers in the form "00000099999" When I do a query of queries on the...
    3. Clob Datatype Cast for Queries on Query
      Hi , I am getting a Query of Queries runtime error when I try to do a QoQ on query which has a column with the clob datatype. The original query is...
    4. How To Browse for an image file and save it to image server folder
      I trying to browse for an image file and save it to the server image folder. in other words , upload the picture. I tried html and aspx.net...
    5. Form and image submission query.
      Hi Guru's, I have a query regarding using PHP to maintain a user profiles list. I want to be able to have a form where users can fill in their...
  3. #2

    Default Re: SQL Server query with Image datatype

    On Thu, 26 Jun 2003 13:26:18 -0700, Fresh Air Rider wrote:
    > Hi Folks
    >
    > Can anyone please tell me how I can safely run an SQL query on SQL 2000
    > via a Perl which includes a field of Image datatype which holds images
    > stored in the database ?
    >
    > Every time I add the Image field to my query, it causes Perl to perform an
    > illegal operation.
    You probably need to set the TEXTSIZE to some reasonable value. IIRC
    MS-SQL defaults this to 2GB. You can use
    $dbh->do("set textsize <somevalue>");
    to set this to <somevalue> bytes.

    Michael
    --
    Michael Peppler Data Migrations, Inc.
    [email]mpeppler@peppler.org[/email] [url]http://www.mbay.net/~mpeppler[/url]
    Sybase T-SQL/OpenClient/OpenServer/C/Perl developer available for short or
    long term contract positions - [url]http://www.mbay.net/~mpeppler/resume.html[/url]

    Michael Peppler Guest

  4. #3

    Default Re: SQL Server query with Image datatype

    Thanks very much for that Michael, I give it a try.

    John
    Fresh Air Rider 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