<div dir="ltr"><div>Hi Shao,</div><div><br></div><div>What do you need to store, more specifically? Since this is a PostGIS related thread, is it about raster data, etc.?</div><div><br></div><div>Anyway, as a general info about binary data: there are two general ways to insert binaries into a PostgreSQL database, the hex format and the escape format. I attach here the reference: <a href="https://www.postgresql.org/docs/12/datatype-binary.html">https://www.postgresql.org/docs/12/datatype-binary.html</a><br></div><div><br></div><div>As a personal experience, I used the hexadecimal format: the idea is to convert the binary blob into hex digits representation, where one digit represents an hex nibble, and each byte of the binary blob is converted into two digits, with the most significant nibble first. Then the hex digits can be inserted as you would insert a string, preceded with the charĀ  <code class="gmail-literal">\x</code>.</div><div><br></div><div>Depending on what you use at the application side, there are different ways of encoding a binary blob into hex format. If you want to try something "manually" from a file using psql, try with utilities like hexdump, keeping in mind that the binary content in the file is encoded using the platform's endianness, i.e. with the most significant nibble put for first or for last (check this from your OS).</div><div><br></div><div>Hope it helped,</div><div>Giuseppe.<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Il giorno gio 17 set 2020 alle ore 20:58 Shaozhong SHI <<a href="mailto:shishaozhong@gmail.com">shishaozhong@gmail.com</a>> ha scritto:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">We can see various publicationsĀ on the Bytea data type.<div><br></div><div>However, it is difficult to find practical examples of how to use it.</div><div><br></div><div>Anyone knows?</div><div><br></div><div>Regards,</div><div><br></div><div>Shao</div></div>
_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org" target="_blank">postgis-users@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/postgis-users" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/postgis-users</a></blockquote></div>