Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4586082
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T21:35:19+00:00 2026-05-21T21:35:19+00:00

i want to select a picture that save as a large object in a

  • 0

i want to select a picture that save as a large object in a postgresql database.

i know i use lo_export to do this.

but there is a problem: i want to save this picture directly to my computer because i cant access the files that save on Server using lo_export

(i think that is best for me if picture transfer to my computer by a select query)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T21:35:19+00:00Added an answer on May 21, 2026 at 9:35 pm

    I don’t exactly know my way around C# but the Npgsql Manual has an example sort of like this of writing a bytea column to a file:

    command = new NpgsqlCommand("select blob from t where id = 1);", conn);
    Byte[] result = (Byte[])command.ExecuteScalar();
    
    FileStream fs = new FileStream(args[0] + "database", FileMode.Create, FileAccess.Write);
    BinaryWriter bw = new BinaryWriter(new BufferedStream(fs));
    
    bw.Write(result);
    bw.Flush();
    fs.Close();
    bw.Close();
    

    So you just read it out of the database pretty much like any other column and write it to a local file. The example is about half way down the page I linked to, just search for “bytea” and you’ll find it.

    UPDATE: For large objects, the process appears to be similar but less SQL-ish. The manual (as linked to above) includes a few large object examples:

    NpgsqlTransaction t = Polacz.BeginTransaction();
    
    LargeObjectManager lbm = new LargeObjectManager(Polacz);
    LargeObject lo = lbm.Open(takeOID(idtowaru),LargeObjectManager.READWRITE); //take picture oid from metod takeOID
    
    byte[] buf = new byte[lo.Size()];
    buf = lo.Read(lo.Size());
    
    MemoryStream ms = new MemoryStream();
    ms.Write(buf,0,lo.Size());
    
    // ...
    
    Image zdjecie = Image.FromStream(ms);
    

    Search the manual for “large object” and you’ll find it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that google goggles will translate a picture to text. What I want
I want to create something similar to this picture where you select the action
I have a database schema like this picture: I want to write a query
I know there are much discussions about this but i cannot get this to
I want to select the topmost element in a document that has a given
I want to select records that are 1 month old or newer. The query
I have a Masterpage that has Treeview. You can select some nodes there. Based
We want to show a hint for a JList that the user can select
I want user to select a picture from gallery. Since size of most pictures
Edit : if you come across this and want to know how I eventually

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.