So I have a dataset which I want to change it dynamically.
Input:
| E_Name | account | phone | check |
| Alex | 123 | 576849 | 1 |
| leo | 890 | 345 | 0 |
| | | | |
For the above data I want to change it with the below type and size.
| Name | Type | Size |
| E_Name | V_WString | 167 |
| Account | Double | 8 |
| phone | Int64 | 34 |
| check | Double | 8 |
.
So for an example, If E_Name type is V_string so we have to change it to V_WString and if size is 255 I have to change it to 167 (dynamically)