Skip to content

Commit

Permalink
Major changes for FieldInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
erayhanoglu committed Nov 16, 2020
1 parent 015a3e8 commit 32d2e08
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -872,15 +872,19 @@ Extends [DataMappingOptions](#223-datamappingoptions)


### 2.2.7. FieldInfo
| Key | Type | Description |
|--------------|-------------| -------------------|
| fieldName | `string` | Name of the field |
| tableId | `number` | OID of the table |
| columnId | `number` | OID of the column |
| dataTypeId | `number` | OID of the data type |
| fixedSize | `number` | Data length if data type has a fixed size |
| modifier | `number` | Modifier of the data type |
| isArray | `boolean`| Whether the data type is an array |
| Key | Type | Description |
|---------------|-------------| -------------------|
| fieldName | `string` | Name of the field |
| tableId | `number` | OID of the table |
| columnId | `number` | OID of the column |
| dataTypeId | `number` | OID of the data type |
| dataTypeName | `string` | Name of the data type |
| elementDataTypeId | `number` | OID of the elements data type if field is an array |
| elementDataTypeName | `string` | Name of the elements data type if field is an array |
| dataTypeName | `string` | Name of the data type |
| jsType | `number` | JS type name that data type mapped |
| modifier | `number` | Modifier of the data type |
| isArray | `boolean`| Whether the data type is an array |

### 2.2.8. StatementPrepareOptions

Expand Down

0 comments on commit 32d2e08

Please sign in to comment.