Pengo Wray

Results 33 comments of Pengo Wray

@fdcastel [TimeSpanParser](https://github.com/pengowray/TimeSpanParser) will parse all those values to a TimeSpan. e.g. `TimeSpanParser.Parse("50 milliseconds")` Note: TimeSpanParser only does English, and it will **not** do the relative dates mentioned by others such...

Hi, yes I left it out deliberately because of the ambiguity, implication of relative timespans, and added work to support all possible "correct" values of "1 year" or "1 month"....

Information on github wikis is always hard to find because they're not indexed by search engines. Many projects avoid them for this reason. For details see: [Permit search engines to...

I badgered the SQLite mailing list about this missing table metadata, and I'm happy to say, code to expose it has now been added to their version control: > Add...

I guess that depends if we want to wait for `PRAGMA table_ipk(TABLE)` to find its way into a stable release of SQLite. I just tested following the instructions you gave...

Here's a somewhat hackish way to find a true "INTEGER PRIMARY KEY" when using versions of the SQLite database engine prior to the the new `pragma table_ipk(table)` command being added....

If I have a go at writing a PR, first I'll wait for a new release of SQLite and related .NET drivers so I have a chance of including a...

Update: The only SQLite release since then has been Version 3.22.0 (2018-01-22). It did _not_ include the new [pragma table_ipk function](https://www.sqlite.org/src/info/2494132a2b1221a4).

I give up. Richard Hipp does not believe SQLite should reveal whether a database's column is auto incrementing or not. Fixing this bug would require a fork of SQLite or...