Page 1 of 3
Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Wed Oct 23, 2013 6:55 pm
by Miguel Salas
Hola a Todos
Tengo un jpg que quiero grabar en campo blob de mysql , solo logré grabarlo como texto con la fmimienc() en un longtext , y tambien me falta recuperarlo y mostrarlo, he visto varios post pero no me han funcionado.
alguien que haya pasado por este problema.
saludos , desde ya gracias.
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Thu Oct 24, 2013 5:44 am
by nageswaragunupudi
Create the field with MEDIUMBLOB type.
Size of MEDIUMBLOB is adequate normally.
Assign the value of the field with STRTOHEX( cImageBuffer )
You can read straight without any conversion.
If you use ADO and if you have recent versions of FWH, then FWH makes all this process extremely simple.
Here is an example.
Code: Select all | Expand
#include "FiveWin.Ch"
#include "xbrowse.ch"
#include "adodef.ch" // IMPORTANT
function mysqlimages()
local oCn, oRs, cSql, a
local cPath := "c:\fwh\bitmaps\pngs\"
local cPassWord := <yourpasswordhere>
oCn := FW_OpenAdoConnection( { "MYSQL", "localhost", "FWH", "root", cPassWord } )
if FW_AdoTableExists( "IMAGETEST", oCn )
oCn:Execute( "DROP TABLE IMAGETEST" )
endif
FWAdoCreateTable( "IMAGETEST", ;
{ { "IMGNAME", 'C', 20, 0 }, ;
{ "IMAGE", 'm', 10, 0 } }, ; // small 'm' indicates binary data
oCn )
for each a in Directory( cPath + "*.png" )
cSql := SQL ; // SQL is FWH command
INSERT INTO IMAGETEST ( IMGNAME, IMAGE ) ;
VALUES ( a[ 1 ], MemoRead( cPath + a[ 1 ] ) )
oCn:Execute( cSql )
next
oRs := FW_OpenRecordSet( oCn, "IMAGETEST" )
XBROWSER oRs TITLE "IMAGES IN MYSQL" SETUP ( ;
oBrw:nEditTypes := EDIT_GET, ;
oBrw:lCanPaste := .t. )
oRs:Close()
oCn:Close()
return nil

Advantage of using FWH functions and commands is that we can use the same code for Access, MsSql, MySql, SQLite, etc. FWH takes care of the differences in different DBMSs.
Incidentally XBrowse and TDataRow classes are excellent editors too and can handle the complexities of image data transparently.
For example, in the above example, you can copy an image from web or other sources and paste into the image cell of xbrowse with Ctrl-V and the new image is written into the MySql table automatically.
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Thu Oct 24, 2013 11:25 am
by rolando
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Thu Oct 24, 2013 10:24 pm
by Miguel Salas
Agradezco a Nages y Rolando , voy a probar y les comento como me fué saludos.
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Fri Oct 25, 2013 7:36 pm
by Miguel Salas
ya logré grabar en meduimblob aqui le dejo el codigo , solo que no entiendo porque no me graba 3 campos, lo hace bien con 2 ya sea el 1ro y 2do o 2do y 3ro o 1ro y 3ro solo comento las lineas de uno de ellos y no hay problema en cambio si dejo los 3 marca: Error description: Error ADODB.Recordset/3 DISP_E_MEMBERNOTFOUND: UPDATE , en la linea: oRsBoleta:update(), alguna idea del motivo, desde ya gracias
Code: Select all | Expand
cArch := cPAth+"\tmp\temporal1.jpg"
IF file(cArch)
nHANDLE := FOpen( cArch )
nBYTES := FSEEK( nHANDLE, 0,2 )
cBUFFER := SPACE(nBYTES+1)
FSeek( nHANDLE, 0, 0 )
nBytesRead := FRead( nHANDLE, @cBuffer, nBytes )
FClose( nHANDLE )
if nBytesRead != nBytes
SAYING := "nBytesRead = "+str(nBYTESREAD)+CHR(10)
SAYING += "nBytes = "+str(nBYTES)+CHR(10)
SAYING += "Error Reading Data"+chr(10)
MsgInfo( saying )
else
oRsBoleta:Fields("temporal1"):AppendChunk( VTArrayWrapper():New( 17, cBUFFER ) )
endif
endif
cBuffer := ""
nBytes := nBytesRead := 0
cArch := cPAth+"\tmp\temporal2.jpg"
IF file(cArch)
nHANDLE := FOpen( cArch )
nBYTES := FSEEK( nHANDLE, 0,2 )
cBUFFER := SPACE(nBYTES+1)
FSeek( nHANDLE, 0, 0 )
nBytesRead := FRead( nHANDLE, @cBuffer, nBytes )
FClose( nHANDLE )
if nBytesRead != nBytes
SAYING := "nBytesRead = "+str(nBYTESREAD)+CHR(10)
SAYING += "nBytes = "+str(nBYTES)+CHR(10)
SAYING += "Error Reading Data"+chr(10)
MsgInfo( saying )
else
oRsBoleta:Fields("temporal2"):AppendChunk( VTArrayWrapper():New( 17, cBUFFER ) )
endif
endif
cBuffer := ""
nBytes := nBytesRead := 0
cArch := cPAth+"\tmp\temporal3.jpg"
IF file(cArch)
nHANDLE := FOpen( cArch )
nBYTES := FSEEK( nHANDLE, 0,2 )
cBUFFER := SPACE(nBYTES+1)
FSeek( nHANDLE, 0, 0 )
nBytesRead := FRead( nHANDLE, @cBuffer, nBytes )
FClose( nHANDLE )
if nBytesRead != nBytes
SAYING := "nBytesRead = "+str(nBYTESREAD)+CHR(10)
SAYING += "nBytes = "+str(nBYTES)+CHR(10)
SAYING += "Error Reading Data"+chr(10)
MsgInfo( saying )
else
oRsBoleta:Fields("temporal3"):AppendChunk( VTArrayWrapper():New( 17, cBUFFER ) )
endif
endif
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Sat Oct 26, 2013 12:54 am
by nageswaragunupudi
Mr Miguel Salas
The code above can be written as:
Code: Select all | Expand
oRsBoleta:Fields("temporal1"):Value := STRTOHEX( MemoRead( cPAth+"\tmp\temporal1.jpg" ) )
oRsBoleta:Fields("temporal2"):Value := STRTOHEX( MemoRead( cPAth+"\tmp\temporal3.jpg" ) )
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Sun Oct 27, 2013 12:22 am
by Miguel Salas
ya está gracias a todos .
ahora solo falta mostrar directamente desde el campo ya que probé loadfrommemory pero no me la reconoce esta en alguna lib?
saludos
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Sat Mar 08, 2014 9:26 pm
by AIDA
Hola aprovechando el tema
tengo un archivo PDF en un campo BLOB como se puede desplegar ese archivo en pantalla ?
Saluditos

Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Sat Mar 08, 2014 11:21 pm
by carlos vargas
"oixctrl.oixctrl.2" es un control ocx de oracle el cual es gratuito y permite mostrar hasta 500 tipos de archivos, pdf, excel, word, etc.
buca en internet sobre el
Code: Select all | Expand
PROCEDURE Concesiones_ViewDoc()
LOCAL oWnd, oOcx
LOCAL cFileName, cExtension
IF COND->( Eof() )
MsgAlert( TC( IDS_CONC_EOF_VIEWDOC ) )
RETURN
ENDIF
WaitOn( TC( IDS_VIEW_PREPAREFILE ) )
CursorWait()
cFileName := GetFolderMyTemp() + "\" + RTrim ( COND->NOMBRE )
cExtension := Upper( cFileExt( cFileName ) )
COND->( AdsBlob2File( cFileName , "DOCUMENTO" ) )
WaitOff()
CursorArrow()
//IF !Empty( cExtension ) .and. cExtension $ "PDF_XLS_DOC_XLSX_DOCX_PPT_PPTX_JPG_PNG_BMP"
// ShellExecute( oDlgE:hWnd, "open", cFileName )
//ELSE
IF !IsActiveX( "oixctrl.oixctrl.2" )
MsgStop( TC( IDS_VIEW_NOINSTALLOCX ) )
RETURN
ENDIF
DEFINE WINDOW oWnd TITLE TC( IDS_VIEW_TITLE ) ICON GetIcon()
DEFINE BUTTONBAR OF oWnd 3D SIZE 60, 60 2010
DEFINE BUTTON NAME "TB_SALIR" OF oWnd:oBar ACTION oWnd:END() PROMPT TC( IDS_VIEW_TB1 )
oOcx := TActiveX():New( oWnd, "oixctrl.oixctrl.2" )
oWnd:oClient := oOcx
oWnd:SetSize( 800, 600 )
oOcx:ViewFile( FALSE, cFileName )
ACTIVATE WINDOW oWnd ON INIT oWnd:MAXIMIZE() VALID ( oOcx:Close(), oOcx := NIL, FileDelete( cFileName ), TRUE )
//ENDIF
RETURN
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Wed Mar 12, 2014 7:40 pm
by AIDA
Hola estoy tratando de meter archivos PDF en un campo BLOB pero cuando llega al registro 30 se truena el programita

y me sale esto.

este es el código que hice me pueden ayudar tengo que meter 20000 archivos PDF
Code: Select all | Expand
Function cargapdf()
local cFile, xuData, xx
xx:=0
oQry := TDolphinQry():New( "SELECT * FROM polizario order by archivo" )
oQry:GOTOP()
DO WHILE !oQry:EOF()
cFile := oQry:archivo
xuData = D_ReadFile( cFile )
oServer:Insert( "pdf", { "archivo", "documento" }, { GetOnlyName2( cFile ), xuData } )
xx:=xx+1
oQry:skip()
loop
oQry:skip()
ENDDO
Return
FUNCTION GetOnlyName2( cFile )
LOCAL nRat
IF ! Empty( cFile )
nRat = RAt( "\", cFile )
cFile = SubStr( cFile, nRat + 1 )
ENDIF
RETURN cFile
Muchas gracias espero me puedan ayudar
Saluditos

Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Wed Mar 12, 2014 8:51 pm
by carlos vargas
Code: Select all | Expand
#ifndef __XHARBOUR__
#include "hbcompat.ch"
#endif
FUNCTION CargaPDF()
LOCAL cFile, xuData
oQry := TDolphinQry():New( "SELECT * FROM polizario order by archivo" )
oQry:GOTOP()
DO WHILE !oQry:EOF()
cFile := oQry:archivo
xuData := FileStr( cFile )
oServer:Insert( "pdf", { "archivo", "documento" }, { cFileName( cFile ), HB_Base64Encode( xuData, len( xuData ) ) } )
xuData := NIL
oQry:skip()
IF mod( oQry:Recno(), 10 )==0 //aca modificar el 10 segun tamaño de archivos, la idea es que cada 2 segundos se realize el sysrefresh
SysRefresh()
ENDIF
ENDDO
oQry:end()
RETURN
la idea es que el campo "documento" sea de tipo TEXT, el archivo binario PDF es leido por filestr (pertenece a ct.lib), pasado a un a variable, y luego codificado de binario a un tipo que solo se usen texto. sirve tambien HB_StrToHex, pero este duplica el tamaño del archivo, dado que cada byte es convertido a hexadecimal, en este caso HB_Base64Encode es mas eficiente ya que crea una cadena de 1.3 en relacion al tamaño original, lo cual ahorra en tamaño la cadena/archivo codificada.
en otras palabras puedes usar las funciones hb_StrToHex, hb_HexToStr, en lugar de las Base64, es opcional.
para decodificar se usa la funcion
HB_Base64Decode( <cBase64> ) --> cString
esta es la info de la otra funcion
HB_Base64Encode( <cString>, <nBytes> ) --> cBase64
Code: Select all | Expand
cFile := HB_Base64Decode( oQry:documento )
StrFile( cFile, oQry:archivo )
salu2
carlos vargas
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Wed Mar 12, 2014 10:21 pm
by AIDA
Muchas gracias por tu ayuda y por la información
la aplicare y te comento como me fue
Gracias
Saluditos

Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Wed Mar 12, 2014 11:47 pm
by AIDA
Ya compile y me salieron los siguientes errores
Error: Unresolved external '_HB_FUN_HB_BASE64ENCODE' referenced from C:\FWH\PEGASOMYSQL\OBJ\TEST.OBJ
y con este igual
Error: Unresolved external '_HB_FUN_HB_STRTOHEX' referenced from C:\FWH\PEGASOMYSQL\OBJ\TEST.OBJ
no se que libreria me falta ?
Saluditos

Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Thu Mar 13, 2014 12:37 am
by cnavarro
Creo que con este comando sabras en que libreria esta cualquier funcion
C:\Harbour\harb20131007\bin>hbmk2 -find HB_STRTOHEX
Harbour core (installed):
hb_StrToHex()
C:\Harbour\harb20131007\bin>hbmk2 -find HB_BASE64ENCODE
Harbour core (installed):
hb_base64Encode()
Re: Grabar, recupera y mostrar imagen jpg en blob de mysql
Posted: Thu Mar 13, 2014 2:33 am
by AIDA
ya quedo funcionando con esta lib
http://www.salc.com.br/atual/tip.rarla lib tiene los comandos que faltaban
HB_Base64Decode( <cBase64> ) --> cString
esta es la info de la otra funcion
HB_Base64Encode( <cString>, <nBytes> ) --> cBase64
y con esto ampliado
Code: Select all | Expand
//-------------------------------------------------------------------------------//
static function conectar()
local xFile, xuData
LOCAL oErr, lRet := .f.
LOCAL hIni := HB_ReadIni( "conecxion.ini" ) // PARA LEER ARCHIVOS .ini
*LOCAL oServer := NIL
LOCAL cServer := hIni["mysql"]["host"] ,; // NOMBRE DEL HOST (localhost)
cUser := hIni["mysql"]["user"] ,; // NOMBRE DEL USUARIO (root)
cPassword := hIni["mysql"]["psw"] ,; // CLAVE DEL USUARIO (vacio por ahora)
nPort := val(hIni["mysql"]["port"]) ,; // PUERTO DE CONEXION (3306)
cDBName := hIni["mysql"]["dbname"] ,; // NOMBRE DE LA BASE DE DATOS (sisprocom)
nFlags := val(hIni["mysql"]["flags"]) // NUMERO DE FLAG (0)
TRY
oServer = TDolphinSrv():New( cServer, cUser, cPassword, nPort, nFlags, cDBName )
* ?oServer
CATCH oErr
MSGALERT( "ERROR FATAL: No hubo Conexión con el SERVIDOR" + CRLF + CRLF + ;
oErr:Description(), " SISPROCOM - MYSQL" )
oServer:Execute("set session wait_timeout=86400") // 28880
IF oServer:lError
MsgStop('Error al intentar establecer wait_timeout','Error')
oServer:end()
return .f.
ENDIF
oServer:Execute("set session interactive_timeout=28880")
if oServer:lError
MsgStop('Error al intentar establecer interactive_timeout','Error')
oServer:end()
return .f.
ENDIF
oServer:Execute("set session sql_big_selects=1")
if oServer:lError
MsgStop('Error al intentar establecer sql_big_selects=1','Error')
oServer:end()
return .f.
ENDIF
oServer:Execute("set @lower_case_table_names=1")
if oServer:lError
MsgStop('Error al intentar establecer set @lower_case_table_names=1','Error')
oServer:end()
return .f.
ENDIF
oServer:Execute("SET lc_time_names = 'es_ES'")
if oServer:lError
MsgStop("Error al intentar establecer SET lc_time_names = 'es_ES'",'Error')
oServer:end()
return .f.
ENDIF
oServer:Execute("set session max_allowed_packet=16G")
if oServer:lError
MsgStop('Error al intentar establecermax_allowed_packet=16M','Error')
oServer:end()
return .f.
ENDIF
RETURN( lRet )