TableFields returns detailed information about all fields in the specified table. The returned map keys are field names and values contain field metadata.
(ctx context.Context, table string, schema ...string)
| 322 | // TableFields returns detailed information about all fields in the specified table. |
| 323 | // The returned map keys are field names and values contain field metadata. |
| 324 | TableFields(ctx context.Context, table string, schema ...string) (map[string]*TableField, error) |
| 325 | |
| 326 | // ConvertValueForField converts a value to the appropriate type for a database field. |
| 327 | // It handles type conversion from Go types to database-specific types. |
no outgoing calls