Hi all,
i am new to python
how to store image into database blob using python
please help me for this its urgent
Hi all,
i am new to python
how to store image into database blob using python
please help me for this its urgent
Hi,
first of all storing a BLOB is very bad design.
But, it would be like this:
blob_value = open('image.jpg', 'rb').read()
sql = 'INSERT INTO Tab1(blob_field) VALUES(%s)'
args = (blob_value, )
cursor.execute (sql, args)
connection.commit()
Hi,
first of all storing a BLOB is very bad design.
But, it would be like this:
blob_value = open('image.jpg', 'rb').read() sql = 'INSERT INTO Tab1(blob_field) VALUES(%s)' args = (blob_value, ) cursor.execute (sql, args) connection.commit()
Thanks yar your code is working fine.
thanks yar your code is working fine
can you help me how to retrieve the image back
I would try
sql = 'SELECT `blob_field` FROM `Tab1`'
cursor.execute(sql)
for row in cursor:
blob_value = row[0]
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.