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
0
votes
0 answers

AppxProvisionedPackage commands stuck on PowerShell and return DismInitialize failed

I am trying to install LOB UWP application I used: Add-AppxProvisionedPackage -Online -PackagePath "APPX_PATH" -DependencyPackagePath "DEPENDENCIES"-SkipLicense It worked for the first time, i even asked one of my colleagues to log in and the…
Ali123
  • 740
  • 13
  • 38
0
votes
0 answers

TSQL Text LOB Column Query Works When Executed Individually, Fails When Included in CTE

I have the following query to pull LOB field (HL_DELETED_RECORD which contains no more than 25 characters) content, and it works fine by itself: SELECT REPLACE(REPLACE( CONVERT(VARCHAR(20), HL_DELETED_RECORD), '&', '&'), 'ý', ' ') AS…
VENIH
  • 1
  • 2
0
votes
1 answer

Grants to OR visibility of a specific index in Oracle

I have a somewhat strange question to ask: can I somehow hide a specific index from a specific user in Oracle 11g, yet let this user select from the table of this index? The anamnesis is as follows: there is a table with one field of BLOB type.…
TatoRo
  • 23
  • 3
0
votes
1 answer

Running into issues when using BLOB with PLSQL

I have the following PLSQL code: declare v_exec_obj_strng varchar2(4000); p_map_name varchar2(40) := 'TEST'; p_key number := 4; p_checksum varchar2(40) := '111111111111111'; p_value blob := 11111111111111111111; begin…
samg
  • 311
  • 1
  • 8
  • 21
0
votes
0 answers

Unable to print clob value

I want to load a file into plsql clob variable and then perform some regexp transformations on it. The problem I have is that I'm not able to print the freshly loaded file using dbms_output and I have no idea why. So far I tried: declare …
Z.Szymon
  • 337
  • 1
  • 13
0
votes
1 answer

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 apply to different kind of forms in the application…
0
votes
1 answer

Sybase: how in/off row LOB impact blocking

In our sybase ASE 15.7 db, we have a table with 4 columns uid int id varchar 32 version varchar 32 xml text Two indices on uid and id respectively; datarow locking; ~130 row of data We also have 2k pagesize; xml length min 1012/max 5176/avr 1837. …
CSBob
  • 39
  • 2
0
votes
0 answers

How can I install the PHP Client for Lob API (apparently using Composer) on a shared server?

I can't figure this out for the life of me. They recommend using Composer to get their PHP API Client up and running, but I'm wondering if I have to, because it's been a pain in the butt. Here's their installation instructions: Install Composer curl…
Aaron
  • 531
  • 3
  • 8
  • 22
0
votes
1 answer

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 different section and one has control on the…
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632
0
votes
1 answer

Create LOB Tablespace in Db2

I am running below mentioned query for creating LOB tablespace but getting error. Can anyone check why this error is coming. Query :- CREATE LOB TABLESPACE RESUMETS IN BLUDB LOG NO CLOSE NO; Error :- SQL> CREATE LOB TABLESPACE RESUMETS IN BLUDB…
user3568717
  • 67
  • 1
  • 2
0
votes
1 answer

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 :: @Basic(fetch=FetchType.LAZY) @Lob private byte[] multimedia; //to be…
r15habh
  • 1,468
  • 3
  • 19
  • 31
0
votes
1 answer

How to receive and show LOB.com postcard cURL/API requests in C# with webRequest Class

I am trying to get postcard information from LOB.com account using CURL. lob.com they are providing: curl https://api.lob.com/v1/postcards/psc_5c002b86ce47537a \ -u test_0dc8d51e0acffcb1880e0f19c79b2f5b0cc: How can I get the json response using…
saravanan049
  • 60
  • 10
0
votes
1 answer

Junit IllegalStateException BeanCreationException with @Lob annotation

In my database, I changed a column from "varchar" to "text". In my class, I added the annotation "@Lob": @Lob @Column(name = "detail_produit") private String detailProduit; When I launch my web service, with data as below in my field, it works very…
user1450740
  • 731
  • 10
  • 26
0
votes
0 answers

ORA-42016 when executing DBMS_REDEFINITION.START_REDEF_TABLE from script

A well-known task: convert BASICFILE LOBs to SECUREFILE LOBs. I have a table: CREATE TABLE "DKR"."DKR_SEARCH_INFO" ( "ID" NUMBER NOT NULL ENABLE, "REPORT" BLOB, "CREATE_TS" TIMESTAMP (6), "OWNER" VARCHAR2(45), CONSTRAINT…
Sergey
  • 157
  • 1
  • 6
  • 19
0
votes
1 answer

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 using EF as the model. I have extensive knowledge…
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632