Precompiler Messages 4 – 45 02010–02400: Oracle Precompiler, Release 2...
Serwis znalezionych hasełOdnośniki
- Smutek to uczucie, jak gdyby się tonęło, jak gdyby grzebano cię w ziemi.
- EXT REF1 SELECT lub 1106 EXT REF2 SELECT – na COMM, COMM+AI1 lub COMM*AI1...
- choćbyÅ› i mnie miaÅ‚ waszmość tak pochlastać, zawszeć winszujÄ™, winszujÄ™! – Et, dalibyÅ›cie sobie waszmoÅ›ciowie pokój; bo w rzeczy nie macie siÄ™...
- znalazÅ‚ i któż zarÄ™czy, czy jÄ… znajdzie? – Prawda jest! Ale gdy Bóg go przez nasze rÄ™ce od Bohuna uwolniÅ‚ i przez tyle niebezpieczeÅ„stw, przez...
- Po prawej, najbliżej Å›ciany hangaru, staÅ‚y bok w bok nowiutkie Gromy i BÅ‚yskawice – nieco mniejsze wozy bojowe przystosowane do przewozu piechoty...
- «Dlaczego wiÄ™c oÅ›miela siÄ™ podejść do kapÅ‚ana za pierwszym razem, kiedy jest caÅ‚kiem nieczysty, a za drugim razem – zbliżyć siÄ™ nawet do...
- Polecenie traceroute zwykle jest wykorzystywane w ten sposób, jak polecenie ping – jako parametr należy podać nazwÄ™ hosta docelowego...
- Krzysztof przetarÅ‚ palcami oczy i powtórzyÅ‚ bezdźwiÄ™cznym gÅ‚osem: – Precz, precz, zabierzcie stÄ…d tego czÅ‚owieka...
- • skrzynia biegów, dÅ‚uga – ponieważ jest wiele szybkich partii (Å‚uki, czasami proste), na których to wÅ‚aÅ›nie dużą prÄ™dkoÅ›ciÄ… można sporo...
- Czemu wiÄ™c pÅ‚akaÅ‚a? ObawiaÅ‚ siÄ™ jednak, Åœe jeÅ›li bÄ™dzie próbowaÅ‚ nalegać, tylko - Nie musi mi pani od razu odpowiadać –uspokoiÅ‚ jÄ…...
- – Zabierzesz stÄ…d te akta, zrobisz gdzieÅ› kopie, rozeÅ›lesz część do przyjaciół i znajomych rozrzuconych możliwie po caÅ‚ych Stanach, a resztÄ™ ukryjesz,...
Smutek to uczucie, jak gdyby się tonęło, jak gdyby grzebano cię w ziemi.
0 Messages PCC–02311
Cannot have VARCHAR bit fields
Cause
Host variables cannot contain bit fields.
Action
Recode the application to remove the bit fields.
PCC–02312
Arrays of VARCHAR greater than two dimensions not allowed
Cause
A VARCHAR array with more than two dimensions was declared.
Multidimensional arrays are not supported as host variables.
Action
Recode the application to remove multidimensional array usage.
PCC–02313
Malformed VARCHAR declaration – missing length
Cause
When a VARCHAR is declared, a length specification is mandatory. For example, the following VARCHAR declaration is meaningless, hence illegal: VARCHAR v1[];
Action
Specify the length for each declared VARCHAR.
PCC–02314
Cannot evaluate constant SIZEOF expression
Cause
A SIZEOF operator was used where a precompiler expression was expected.
Action
Eliminate the SIZEOF operator.
PCC–02315
Cannot evaluate expression as a constant.
Cause
The specified expression does not evaluate to a constant. Such expressions are required, for example, as the length of a VARCHAR.
Action
Replace the expression with one that does evaluate to a constant integer PCC–02316
Illegal operator in constant expression
Cause
A non–arithmetic operator was present in the expression.
Action
Rewrite the expression to eliminate the non–arithmetic operator.
PCC–02317
Illegal cast type expression
Cause
A illegal cast is present in the expression.
Action
Remove the illegal cast.
4 – 46
Oracle7 Server Messages
02010–02400: Oracle Precompiler, Release 2.0 Messages PCC–02318
Missing type expression
Cause
The specified expression is missing the declaration of a type.
Action
Specify a type for the expression.
PCC–02319
Expression type does not match usage
Cause
The type of a variable does not match its usage. For example, in dynamic SQL, a host variable containing the text of a SQL statement must be declared as a C
character type or be equivalenced to the SQL type STRING.
Action
Remove the declaration.
PCC–02320
Arithmetic expression does not have correct operand types
Cause
The arithmetic expression must be specified with integral types.
Action
Rewrite the expression using integral types.
PCC–02321
Only subtraction between two pointers is permitted
Cause
Pointer values cannot be added, multiplied, or divided.
Action
Recode to avoid this error message.
PCC–02322
Found undefined identifier
Cause
An identifier used in a SQL statement was not defined. For example, a cursor name was referenced that had not been declared, or in a DECLARE CURSOR
statement, a statement name was used that had not been PREPAREd.
Action
Check that all SQL identifiers, such as cursor names and statement names, have been defined before use.
PCC–02326
Illegal structure reference operation
Cause
A structure component using invalid syntax was referenced. For example, a –> operator was used instead of a required ‘.’ operator.
Action
Correct the invalid reference.
PCC–02327
Struct or struct pointer required
Cause
A scalar host variable was used in a context where a structure (or its pointer) is required.
Action
Make the host variable a structure or add more scalar host variables to satisfy the SQL syntax requirements.
Precompiler Messages
4 – 47
02010–02400: Oracle Precompiler, Release 2.0 Messages PCC–02328
Undefined struct member
Cause
A structure component was referenced that was not declared as part of the structure.
Action
Redefine the structure.
PCC–02330
Expecting an expression of integer type
Cause
The expression does not evaluate to an integer. For example, a SQL FOR
expression must evaluate to an integral type.
Action
Rewrite the expression.
PCC–02331
Undefined SQL identifier
Cause
All SQL identifiers must be defined before they are used. This message can result when a CURSOR or STATEMENT is not declared (defined) before being referenced.
Action
Define the identifier.
PCC–02332
Attempted to redefine SQL identifier
Cause
A SQL identifier (such as a cursor name) can be defined only once.
Action
Do not redefine the identifier. Use a different name.
PCC–02333