iGrog

Results 5 comments of iGrog

Any news on the matter?

In PostgreSQL, the **BYTEA** data type is designed to store binary data, such as images, sounds, and other raw byte sequences. The **BYTEA** type is intended for representing data in...

Hi, maybe not to generate `AND xxx.ProductGuid IN()` at all?

`unwrap` function in `Reader` removes CR+LF+0x00, but `unwrap` in `Parser` doesn't: ```php $string = \preg_replace('#[\x00\r\n]#', '', $string); ``` Is that how it should be? https://github.com/php-edifact/edifact/blob/master/src/EDI/Reader.php#L557 https://github.com/php-edifact/edifact/blob/master/src/EDI/Parser.php#L467

Is it somehow possible to get these answers from attributes? Like this: ```php #[Pure] // phpstorm uses this to display toString value in debugger. Only `Pure` functions are evaluated #[Buggregator(show:...