How do I stream large objects from PostgreSQL in JRuby?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
In JRuby you can’t use the
pggem as you would in regular Ruby, so you can’t use it’s large object support.However you do have access to
PgJDBC, so you can use the large object features offered by PgJDBC, same as you would from Java directly. See:This should work much the same in JRuby as in regular Java.