The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
23 views

Hibernate @ElementCollection @Lob

I get the following exception when trying to use @ElementCollection with @Lob: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'db.Product_quantityOptions' doesn't exist ...
1
vote
0answers
31 views

ORA-24811:While writing into a LOB, less data was provided than indicated

When ever I run my Pro*C code which insert a large buffer to table using CLOB. ORA-24811:While writing into a LOB, less data was provided than indicated. code is below OCIClobLocator *lob; ... ...
0
votes
0answers
85 views

Missing lob entry error message on query to h2 database

I have simple object configured in hibernate with @Lob annotation. On reading it from database using simple sql select statement h2 gives me Missing lob entry. I googled around by there are no ...
1
vote
0answers
78 views

ServiceStack, Silverlight, LOB. Interface & Service Impl. Assemblies - Best Practice

I am bit confused about the service contract definitions in ServiceStack. As mentioned here https://github.com/ServiceStack/ServiceStack/wiki/SilverlightServiceClient its possible to use a Portable ...
0
votes
1answer
90 views

Accessing a Lob property from postgres in the view

I have a standard Spring Framework (v3.1.2) java (v1.6) database backed (postgres v9.1) web application, which runs on Apache Tomcat (v6.0). Please note that I am using Hibernate 3.6.10.Final and ...
2
votes
1answer
57 views

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 ...
0
votes
2answers
87 views

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; or @Lob ...
0
votes
1answer
135 views

“invalid stream header” exception - Lob with JPA and MySQL

I have a field defined like this @MappedSupperclass public abstract class BaseItem { ... @Lob @Basic(fetch=FetchType.EAGER) private String description; ... } @Entity public class ...
0
votes
0answers
91 views

SQL*Loader strips the EOF (End of File) character off of the last image file loaded

I'm loading a bunch of image files into an oracle 11g database via SQL*Loader. Each field is terminated by <FIELD#>. Each "Line" is terminated by <ENDREC> Each Image gets loaded into the ...
0
votes
1answer
281 views

JDODetachedFieldAccessException: You have just attempted to access field “attachment” yet this field was not detached when you detached the object

Entity class: public class CustomerSurvey implements Serializable { @Id @GeneratedValue(strategy=GenerationType.SEQUENCE, generator="CUSTOMER_SURVEY_SEQUENCE") @Column(name = "SURVEYID", ...
5
votes
1answer
234 views

How to download huge Oracle LOB with cx_Oracle on memory constrained system?

I'm developing part of a system where processes are limited to about 350MB of RAM; we use cx_Oracle to download files from an external system for processing. The external system stores files as ...
1
vote
1answer
257 views

Oracle 11g temporary lob not freeable

I´m using Oracle 11gR2, can someone tell me why the temporary lob isn´t freed? ... -- Apply stylesheet to DOM document outdomdocf := dbms_xslprocessor.processxsl(proc, xsl, indomdoc); ...
0
votes
2answers
910 views

Spring JDBC lob insertion fails: Invalid column type

The code: jdbcTemplate.update("MERGE INTO app_role_data x USING (select ? name, ? xml FROM dual) d ON (x.app_name = d.name) WHEN MATCHED THEN UPDATE SET x.xml_blob = d.xml WHEN NOT ...
1
vote
1answer
211 views

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 ...
0
votes
0answers
170 views

Create Oracle sql dump (with CLOBs)

I need to dump my Oracle database as sql file. The problem is that some tables contain a CLOB column and so the sql export function fail. Is there any way to get the dump as sql file if possible with ...
0
votes
2answers
319 views

Blob size limit when using HSQLDB from spring

I'm using HSQLDB for testing. The database is created from spring by scanning the models. One of the models is a message which contains an attachment (Thus resulting in a lob). When trying to save a ...
0
votes
1answer
179 views

PSQL Exception on column length

I get an internal exception: org.postgresql.util.PSQLException: Error value too long for varying character (255) when i try to insert using EclipseLink JPA a value for a description on a certain ...
0
votes
0answers
92 views

Read BLOB content from a table

I am trying to read BLOB content from one of my tables. I am using the following query: select utl_raw.cast_to_varchar2(dbms_lob.substr(blob_file)) from table_name where ID = my_id This query is ...
0
votes
2answers
214 views

Using WPF Attached Properties to layout an LOB form

I have been writing lots of data entry type forms in my application and I have come to the conclusion that I need to make it a bit easier. After doing some reading up it seems this can be done using a ...
7
votes
1answer
479 views

Cannot store Euro-sign into LOB String property with Hibernate/PostgreSQL

I am having trouble writing and reading back special characters like the Euro-sign (€) into LOB String properties in PostgreSQL 8.4 with Hibernate 3.6.10. What I know is that PostgreSQL provides two ...
0
votes
1answer
176 views

Retrieving a set of primitive types from a database using hibernate

I am using an informix database and I have two tables; instance and contact. Contact table has the following fields; contact_id, fname and lname. Instance table has the following fields, instance_id, ...
1
vote
0answers
577 views

Hibernate4 & Lobhandler

According to this post i changed my session factory definition from <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" ...
2
votes
1answer
272 views

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(). ...
0
votes
1answer
182 views

Is Umbraco suitable for a LOB application?

I wonder if Umbraco 5, which is based on MVC, is appropriate for a Line of Business application, mainly to handle extensibility. Would it be a good ideia to use Umbraco as a base, and create modules ...
0
votes
2answers
85 views

How to structure a LOB application/database for offline mode

I have a line of business application that constantly communicates to the database. I have a user that wants to operate multiple sites at remote locations all connected back to a central database. ...
1
vote
4answers
1k views

Biztalk wcf-sql not able to configure

I am running into a werid 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 ...
6
votes
2answers
2k views

JBoss6 JPA: Entity with @Lob results in GenericJDBCException

I have a simple EntityBean with a @Lob annotation. If I delete this annotation I get no errors on JBossAS 6.0.0.Final and MySQL5. But if I annotate it with @Lob (because mt contains about 100 to 5000 ...
1
vote
2answers
641 views

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 ...
2
votes
1answer
1k views

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 ...
2
votes
1answer
687 views

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 ...
0
votes
2answers
2k views

Mapping a long text string in Oracle and NHibernate

Using NHibernate 3.1 with both SQL Server and Oracle DBs, we need to store a text string that is longer than 4000 characters. The text is actually XML, but that is not important - we just want to ...
1
vote
1answer
3k views

What is the difference between CLOB and NCLOB?

Can you state any difference between the CLOB and NCLOB?
0
votes
2answers
338 views

Dynamic alternative to RIA services?

I'm building a silverlight line of business application in silverlight 4 using RIA services currently and i'm finding RIA services to be more and more of a pain everyday.. A lot of the database ...
0
votes
1answer
1k views

Help with Video Upload with MySQL and PHP

I'm writing some PHP that will interact with MySQL to 1. upload and 2. display a Quicktime .mov file. I have done similar things with image formats quite easily, but this one is giving me some issues. ...
0
votes
1answer
237 views

Efficient way to apply the repository and UoW pattern in SL RIA-enabled LoB app?

I am developing a SL app that uses RIA and the server exposes some LinqToEntitiesDomainService subclasses. (I am using generated EntityObjects, not POCOs). What would be the efficient way to retrieve ...
0
votes
1answer
147 views

Using a generic save button for several different WPF forms

I have a question about WPF and a LOB application. I would like to have a ribbon control with the buttons: "New", "Save", "Next Record", "Previous Record" and so on. I would like the buttons to ...
15
votes
12answers
12k views

Third party WPF controls: Devexpress vs Telerik

I would like to hear your opinion about the two control providers. To put it in a nutshell: I am building a classic LOB desktop application. The app will be created entirely in WPF. PRISM 4.0 will be ...
0
votes
1answer
416 views

How to: Multi screen/regions Silverlight application?

I have to create now a multi-screen Silverlight 4 RIA application with MVVM. Each of these screens has to be devided in multiple regions (for example master-detail scenario whereas each of them is a ...
0
votes
1answer
195 views

Problem storing data in S3 using @Lob annotation

For my app, i'm storing data in simpleDB, but since SimpleDB has a 1024 character per attribute maximum so larger values should be stored in S3. I'm doing something like this :: ...
0
votes
1answer
1k views

LOB App with Silverlight, WCF RIA, MVVM and EF 4?

I develop in WPF with EF (EDM designer entities). I now want to move to Silverlight+RIA, and I am looking for a turorial, video or whatever that will guide me how-to to use Silverlight RIA with MVVM ...
2
votes
2answers
100 views

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 ...
4
votes
1answer
1k views

Spring MVC + Oracle LOBs + Streaming

I have to send a binary stream of a blob by means of a ServletOutputStream. I'm using the following technologies and software: Oracle 11, WebSphere 7, Springframework 2.5.5, Hibernate 3.3.SP1. ...
6
votes
3answers
7k views

Oracle CLOB performance

I am running queries against an Oracle 10g with JDBC (using the latest drivers and UCP as DataSource) in order to retrieve CLOBs (avg. 20k characters). However the performance seems to be pretty bad: ...
0
votes
1answer
91 views

LOBs in BerkeleyDB

what's the usual way to store a CLOB (a few 100KB) inside Berkeley DB?
7
votes
2answers
5k views

Lazily loading a clob in hibernate

There's a lot one can find about this googling a bit but I haven't quite found a workable solution to this problem. Basically what I have is a big CLOB on a particular class that I want to have ...
2
votes
3answers
3k views

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, ...
10
votes
4answers
9k views

WPF Best Practice for DataEntry Window

i`m currently playing around with WPF and now i wonder what would be the layout for a typical dataentry window (20+ textboxes and stuff). atm i`m using a grid object like this (basic sample) ...
6
votes
2answers
16k views

How do I display the full content of LOB column in Oracle SQL*Plus?

When I try to display the contents of a LOB (large object) column in SQL*Plus, it is truncated. How do I display the whole thing?