Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add notes on VARCHAR #200

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions samples/data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ uint64/ulonglong D myuint64 20u 0 <data type='20u0'/>
[indicator] D myind 1a <data type='1a'/>

```
* VARCHAR notes:
* varchar2: accommodates a string of 1-65535 bytes.
* varchar4: use if string may be larger than 65535 bytes.
* https://www.ibm.com/docs/en/i/7.5?topic=keywords-varcharlength-2-4 [https://www.ibm.com/docs/en/i/7.5?topic=keywords-varcharlength-2-4]
* https://www.ibm.com/docs/en/i/7.5?topic=type-variable-length-character-graphic-ucs-2-formats [https://www.ibm.com/docs/en/i/7.5?topic=type-variable-length-character-graphic-ucs-2-formats]



## PHP Toolkit Functions That Implement the XMLSERVICE Data Types Shown Above ###

Expand Down