Skip to content

Instantly share code, notes, and snippets.

View ztaylor797's full-sized avatar

Zac ztaylor797

View GitHub Profile
@afawcett
afawcett / CustomMetadataService.cls
Last active March 30, 2021 17:10
Custom Metadata POC for DLRS
/**
* Copyright (c) 2013, Andrew Fawcett
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
@woemler
woemler / ComplexTableDescription.java
Created May 12, 2015 14:37
SQL building for more dynamic JDBC operations in Spring JdbcTemplates.
package me.woemler.sqlbuilder;
import org.springframework.util.Assert;
import java.util.Arrays;
import java.util.List;
/**
* Based on com.nurkiewicz.jdbcrepository.TableDescription, with a number of modifications.
*