Skip to content

Instantly share code, notes, and snippets.

@kutyel
Created April 22, 2016 12:08
Show Gist options
  • Save kutyel/f479ce25b908c4642df7a2fe21501e67 to your computer and use it in GitHub Desktop.
Save kutyel/f479ce25b908c4642df7a2fe21501e67 to your computer and use it in GitHub Desktop.
From Oracle to Google
$ sqlplus -s
SQL> connect [email protected]/hr
SQL> UPDATE employees SET current = false WHERE email = "[email protected]";
SQL> COMMIT;
SQL> disconnect
SQL> exit
$ curl -X POST -H "Content-Type: application/json" \
-d '{ "firstName":"Igor", "lastName":"Minar"}' \
http://google.com/employee/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment