avatar

Andres Jaimes

Support Glumik!

Hello,

This time I write to ask you for your support. We’re developing a website for small business owners in the City of Queretaro, Mexico.

The website will allow the proprietors have presence on the Internet. Many of these people do not have the …

Oracle Snippets

This post will be updated with snippets for Oracle. I hope you find it useful.

 

1. Change the default date format

Most useful snippet of the year! 😉

1ALTER SESSION SET NLS_DATE_FORMAT = 'MM/DD/YYYY HH24:MI:SS';
2select sysdate from dual;

2. …

RESTful URL's

RESTful operations on collections

Use pretty and RESTful URL’s.

GET /places 

returns a list of all places

GET /places/new 

returns a form to create a new place

POST /places

submits fields for creating a new place

Operate on a Record

GET /places/1 …