Android Question problem with Save blob with query

azzam223

Active Member
Licensed User
Longtime User
Hi

I want To save blob with query command but I write the query to save the blob the problem is shown

note: I use mssqlserver example with asp file

Public Sub UploadImage(data() As Byte,Mrid As Int)
Try
Dim query As String=$"AddReportImages[${Mrid}],[${data}],[img${Mrid}],[.jpg],[Null]"$
job.Initialize("UploadImage",Me)
job.PostString(ServerUrl,query)
DoEvents
Catch
Log(LastException)
End Try
End Sub

Can Anyone help me?
 

azzam223

Active Member
Licensed User
Longtime User
hello erle

I am sorry I forget Add code tags

i am use asp script from msSqlserver tutorial not mysql

buy about rdc my web site doesn't support java can i use RDC or not
 
Last edited:
Upvote 0

azzam223

Active Member
Licensed User
Longtime User
hi erel

i have encode the blob with base64 but when i send it to my site happen problem

Message longer than Log limit (4000)
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
What is the error of your problem.
The log output is limited to 4000 characters; that´s not a bug.
Save the result to a file and then read this file.

Maybe you just dont recognized that the hole result is available. You just cannot LOG everything (limited to 4000 characters)....
 
Upvote 0
Top