Home > database >  Ask how to use PB read XML data in the image field in SQL
Ask how to use PB read XML data in the image field in SQL

Time:09-17

Ask how to use PB read XML data in the image field in SQL

CodePudding user response:

refer to the original poster nbxkele response:
consult how to use PB reads the XML data in image field in SQL

Needs to use selectblob statement


Blob lb_xml
//remove the data to the blob
Selectblob xml_data into: lb_xml the from name of the table where conditions;

String ls_data
Ls_data=https://bbs.csdn.net/topics/string (lb_data)
Then converted to a string
  • Related