Mark

Results 600 comments of Mark

@pdet can this be merged?

Thanks!

> No comment on the contents of the PR, but I find the requirement to disclose identity/affiliation when making an Issue very off putting. To me the [justification](https://berthub.eu/articles/posts/anonymous-help) reads as...

On the topic of the PR, perhaps we could add a required checkbox that states "I have provided my name and affiliation, or they are obvious from my profile"?

> Of course this is your oss project so you are free to ask for whatever information you want. My question would be through, whether this has been an issue...

> Pseudonymity is normal on the internet and not an affront. I don't see filing an issue is "coming at you" or expecting free work. It would be better to...

Have you tried this on v0.5.0? At least `SELECT * FROM pragma_table_info(?)` should work now.

You need to submit a tuple, e.g.: ```sql print(con.execute("SELECT * FROM pragma_table_info(?)", ('test',)).fetchdf()) ``` Otherwise each character of the string is used as a different prepared statement parameter. The DB...

Wouldn't the `USING` clause resolve this ambiguity more elegantly? For example: ```sql SELECT id, name, score FROM a JOIN b USING (id) -- id name score -- 0 1 one...