VCD

Results 5 comments of VCD

Just curious, can ExtractStrict implemented in this way? ```ts export type ExtractStrict = U; ```

@Maransatto Did you tried something like this? ```sql /*!50110 ALTER TABLE tableName DROP FOREIGN KEY IF EXISTS fkName */; ``` According to [MySQL documentation](https://dev.mysql.com/doc/refman/5.7/en/comments.html), it seems helpful to your case?...

I use superstruct to validate configuration file. Sometimes someone might have a typo on the key field. I want the users to notice that mistake but I don't want to...

I spent my weekend and published [a module](https://www.npmjs.com/package/@verycrazydog/mysql-parser) which hope to provide a more standard solution to the missing `DELIMITER` support. I have handled all edge cases pointed out by...

Same here, but I found the root cause in my case. It is because the value of HTTP header `Content-Length` in the response is smaller than the actual content length,...