Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge PR 1684 [TRAFODION-3179] Correct Syntax Descriptions of *Signat…
…ure of the Java Method* in *Trafodion Stored Procedures in Java Guide*
  • Loading branch information
liuyu000 committed Aug 10, 2018
2 parents ab068e3 + b87b4db commit 5e8bfc7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/spj_guide/src/asciidoc/_chapters/develop_spjs.adoc
Expand Up @@ -83,19 +83,19 @@ PIC[TURE] X^1^ +
NCHAR +
NCHAR VARYING +
NATIONAL CHAR[ACTER] +
NATIONAL CHAR[ACTER] VARYING | java.lang.string
| DATE | java.sql.date
| TIME | java.sql.time
| TIMESTAMP | java.sql.timestamp
NATIONAL CHAR[ACTER] VARYING | java.lang.String
| DATE | java.sql.Date
| TIME | java.sql.Time
| TIMESTAMP | java.sql.Timestamp
| DEC[IMAL]^2^ +
PIC[TURE] S9^3^ +
NUMERIC (including numeric with a precision greater than eighteen)^2^ | java.math.bigdecimal
NUMERIC (including numeric with a precision greater than eighteen)^2^ | java.math.BigDecimal
| SMALLINT^2^ | short
| INT[EGER]^2^ | int or java.lang.integer^4^
| LARGEINT^2^ | long or java.lang.long^4^
| FLOAT | double or java.lang.double^4^
| REAL | float or java.lang.float^4^
| DOUBLE PRECISION | double or java.lang.double^4^
| INT[EGER]^2^ | int or java.lang.Integer^4^
| LARGEINT^2^ | long or java.lang.Long^4^
| FLOAT | double or java.lang.Double^4^
| REAL | float or java.lang.Float^4^
| DOUBLE PRECISION | double or java.lang.Double^4^
|===
1. {project-name} stores PIC X as a CHAR data type.
Expand Down

0 comments on commit 5e8bfc7

Please sign in to comment.