orthoxerox

Results 77 comments of orthoxerox

I am currently taking a look at what can be done to support Oracle, and the first stumbling block so far has been its quoting/casing rules. In Oracle, `Customer` is...

Another thing I wanted to run by you first is using `OracleDbType` instead of `DbType` in `OracleConvertFieldResolver`. Am I correct that this is not a good idea, since the core...

Finally, what's the lowest version of Oracle you want to support? 11g and lower require some... interesting queries to emulate `LIMIT`/`OFFSET` clauses.

That's what I wanted to hear. I also found `MySqlDbTypeToMySqlStringNameResolver` that looked like what I was proposing, but it looks like it isn't used anywhere at all.

I would like to release a PR for your repo if you accept contributions.

I should be able to show something next week, if I am not inundated with actual work.

Unit tests for 12c and higher are green (but I need to write a few more for the trivial changes I did to the hints placement). Tomorrow I hope to...

I am bogged down in the integration tests, no PR today. Oh, Oracle, why do you have to come up with stuff like `OracleCommand.BindByName` being false by default?

All right, I think I need some advice here. In `DbConnectionExtension.InsertInternalBase` the command is invoked like this: ```c# result = Converter.ToType(command.ExecuteScalar()); // Get explicitly if needed if (Equals(result, default(TResult)) ==...

Oracle is... special. I checked Oracle docs again, and this is the summary: - Oracle has no way to obtain the last generated identity like `@@IDENTITY` in MS SQL, until...