Hey Korp, Reading from SQL isn't a big deal, but I'd recommend against writing to it. Here are my thoughts: Reads: - You want to make sure to query with "no lock". This will prevent locks in the database which will hurt performance - Reading directly from SQL won't take into account security roles. This may not be an issue for you depending on your setup. - you'll get incredible speed vs the SDK Writes: - You can totally do it, but there are a million ways to corrupt your data. There are a ton of fields the CRM sets that you'd need to account for. If you miss a field or set a picklist to a invalid number, you'll get errors in CRM that will be really tricky to find. I know users who have done SQL just for some reads, some who have written entire websites pulling directly via SQL. None of them are writing records as part of an ongoing process though. If this helps, I'd appreciate if you could mark this as a verified answer. Thanks, Aiden
↧