Questions tagged [lob]

Lob refers to a set of web services, APIs, and tools provided by the company of the same name. You can embed direct mail (postcards, letters, checks, etc.) functionality into web and mobile applications with just a few lines of code. There are several helper libraries and resources listed below to make it easy integrate.

Documentation & Resources

Libraries / Language Support

Examples are included in each wrapper and in the API Reference.

143 questions
3
votes
1 answer

How to reclaim space occupied by unused LOBs in PostgreSQL

I have a medium sized database cluster running on PostgreSQL 8.3. The database stores digital files (images) as LOBs. There is a fair bit of activity in the database cluster, a lot of content is created and deleted in an ongoing manner. Even though…
sola
  • 1,498
  • 14
  • 23
3
votes
2 answers

Postgresql - alter column type from oid to bytea with data retention

Now I'm developing application that uses hibernate + postgresql to persist data. We need to store a number of serializable HashMaps, so LOB (oid) was used for this purpose. But due to some problems with oid deletion in postgresql we decide to store…
Vladimir
  • 35
  • 1
  • 3
2
votes
1 answer

Why doesn't OCI-Lob->close work for IN OUT parameters?

From the documentation I've read regarding LOBs and the OCI8 PHP extension, it seems like I should call $lob->close() in the code below, since I have used $lob->writeTemporary(). $lob->close() works fine when I am passing a LOB to a stored procedure…
Tim
  • 285
  • 1
  • 2
  • 12
2
votes
4 answers

Biztalk wcf-sql not able to configure

I am running into a weird problem with the installation / configuration of the BizTalk 2010 Adapter Pack. I am running BizTalk 2010 cluster on Windows Server 2008 R2, wanted to get WCF-SQL to work so I installed the 64 bit of LOB, 64-bit BizTalk…
Angela
  • 531
  • 2
  • 8
  • 18
2
votes
1 answer

org.postgresql.util.PSQLException: Large Objects may not be used in auto-commit mode

I am using Spring , JPA, Hibernate, Postgresql. I can upload/insert a file to the database. But I got the error when tried to access the file. EVERE: Servlet.service() for servlet default threw exception org.postgresql.util.PSQLException: Large…
Alex
  • 617
  • 2
  • 9
  • 21
2
votes
1 answer

use of @Lob for field in playframework

In the play! tutorial,the content field of model Post is annotated as @Lob.I tried this, and when postgres was used as db,found that the table Post has a column named content which has a value 133414 instead of a long string, which was the post…
Damon Julian
  • 3,829
  • 4
  • 29
  • 34
2
votes
2 answers

Is Prism Primarily for Silverlight?

The majority of the articles/tutorials/blog post I read about Microsoft's Prism Framework center around Silverlight. With the composite model being an interesting model for an existing desktop app that needs a little TLC, I'm wondering is Prism a…
Scott
  • 11,046
  • 10
  • 51
  • 83
2
votes
2 answers

PHP remote MySQL data fetching size limit issue

I'm trying to remote connect to MySQL database of a server and pull a row. But I'm having this issue : I am able to pull some specific columns data but not able to pull the whole row. Example : This works : -- Query 1 SELECT id, name, link, cat,…
Sourabh Swarnkar
  • 131
  • 2
  • 14
2
votes
2 answers

JSON string to byte[] JSONParseException

I've gotten a whole bunch of angularJS, rest and entity stuff working together to be able to save form data via REST in my POSTGRES DB. However, I decided to try something different with one of the entity fields so that I can store longer bits of…
Nabeel Saad
  • 152
  • 2
  • 12
2
votes
1 answer

Query that shows 'BLOBs stored inline'

I need to produce a query that shows a table(table_name, column_name) of where BLOBs are stored inline from user_tables. Any help would be much appreciated.
user1712258
  • 117
  • 3
  • 7
2
votes
0 answers

Encrypting @Lob byte[] column type with jasypt

I'm trying to encrypt a byte[] field with jasypt. My code before encryption @Entity public class ContentFile { ... @Column(name = "fileContent") @Lob private byte[] fileContent; ... } Normally this gets mapped in the db to BLOB in oracle and h2…
Nadir
  • 1,369
  • 1
  • 15
  • 28
2
votes
1 answer

Implementing cross-cutting concepts into LOB/DI application

I am currently creating a small personal windows (desktop) .NET LOB application and I want to use the opportunity to increase my knowledge and experience with DI. I've separated my application into model, DAO and GUI parts but I am wondering how to…
Dalibor Čarapić
  • 2,792
  • 23
  • 38
2
votes
2 answers

What type of data record with the annotation @ Lob with JPA?

I have a problem, When I'm recording a PDF file inside the bank, I better save as file or byte []? @Lob @Basic(fetch=FetchType.EAGER) @Column(name="arqdocumento") private File arquivo;…
MiguelCPJava
  • 53
  • 1
  • 2
  • 7
2
votes
3 answers

WPF UI Layout for LOB Applications

I have been trying to find some resource on this topic for a while now but to no avail so what is the best way to construct a WPF UI for LOB (Line of Business) applications? specifically Customers, Orders, Products, etc.. I have seen many single…
Geoff Davis
  • 23
  • 1
  • 4
1
vote
2 answers

PHP framework for a Line-of-Business application? (Lots of CRUD)

I'm on the way to port an old Java Swing-based application to PHP, and this application is very CRUD-intensive, with lots of tables and reports. Application must be written in PHP (server already exists), and must be secure (no SQL injection or…
mHouses
  • 875
  • 1
  • 16
  • 36
1 2
3
9 10