PDA

View Full Version : ASP Question


mByte
03-28-2002, 06:44 AM
Can anybody help here.

Using ASP how would you once you have the blob field open - Parse it and read it and put it in a string to response.write?

Malevolent
03-28-2002, 08:15 AM
Blobs are binary large datasets in mysql, right? I think they are, You can use Response.BinaryWrite with the normal ado recordset patterns.

So far as manipulating the blob, you'd be better off making a COM+ object that you can create on the server which manipulates the data for you.

ASP Script, IMHO, is more driven for the presentation layer.