Darren Grayson
Darren Grayson
I was mulling over suggesting that the CredSSP registry hack be wrapped up in a little option on the Tools menu so you could apply the workaround and then have...
An InsertWithPrimaryKey() function would get my vote, it's just so less ambiguous than inferring behaviour from POCO properties. If the property name doesn't explicitly advertise what it does it's bound...
I can't help with SAP Anywhere, but I am using PetaPoco with SAP Hana. Although there's no support for it out-of-the-box, it's fairly trivial to create your own database provider...
Here is an example of how my database provider for SAP Hana is set up: ``` public class PetaPocoHanaDatabaseNetCoreProvider : DatabaseProvider { public override DbProviderFactory GetFactory() { try { var...
After an error you can check the `LastSQL `and `LastCommand `properties of the database object to see what was sent to the provider.
Hi @krugertech, I am not one of the PP gurus, but your question piqued my interest because I've got some old code using the Oracle connector and have had all...
The project I tried it with wasn't using PetaPoco so I haven't got first-hand experience of that. To use MySqlConnector with PetaPoco now you should just be able to create...
I have not used the Oracle provider, but are the answers here useful: https://stackoverflow.com/questions/30407213/oracle-net-manageddataaccess-error-could-not-load-type-oracleinternal-common
I am ashamed to say that some software I wrote ten years ago (when I was young and stupid) stores GUIDs in a varchar field. Of course, this predates Petapoco,...
Until this materialises, you can use [PetaPoco.SqlKata](https://github.com/asherber/PetaPoco.SqlKata) ([Nuget](https://nuget.org/packages/PetaPoco.SqlKata)) to utilise [SqlKata](https://github.com/sqlkata/querybuilder).