Guest User

Untitled

a guest
Dec 7th, 2017
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. var qry = "DELETE Table1";
  2. var col = new SpannerParameterCollection();
  3. col.Add("CustomerKey", SpannerDbType.Int64, 0);
  4. col.Add("EmailAddress", SpannerDbType.String, "some@email.com");
  5. col.Add("GeographyKey", SpannerDbType.Int64, 37);
  6.  
  7. var qry = "DELETE Table1";
  8. var col = new SpannerParameterCollection();
  9. col.Add("EmailAddress", SpannerDbType.String, "some@email.com");
  10. col.Add("GeographyKey", SpannerDbType.Int64, 37);
  11. col.Add("CustomerKey", SpannerDbType.Int64, 0);
  12.  
  13. var qry = "DELETE Table1";
  14. var col = new SpannerParameterCollection();
  15. col.Add("GeographyKey", SpannerDbType.Int64, 37);
  16. col.Add("CustomerKey", SpannerDbType.Int64, 0);
  17. col.Add("EmailAddress", SpannerDbType.String, "some@email.com");
Add Comment
Please, Sign In to add comment