Ask a Question related to PERL Modules, Design and Development.
-
Fresh Air Rider #1
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
-
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... -
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... -
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... -
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... -
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... -
Michael Peppler #2
Re: SQL Server query with Image datatype
On Thu, 26 Jun 2003 13:26:18 -0700, Fresh Air Rider wrote:
You probably need to set the TEXTSIZE to some reasonable value. IIRC> 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.
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
-
Fresh Air Rider #3
Re: SQL Server query with Image datatype
Thanks very much for that Michael, I give it a try.
John
Fresh Air Rider Guest



Reply With Quote

