Issue 2070: 'Start' reserve word in PlSql/Oracle.
Status:  Done
Owner: ----
Closed:  Jun 2014
Reported by vajahata...@gmail.com, Jan 14, 2014
Hi jQuery Gurus, 

First of All, Hats off for such excellent work!.

The problem cannot be shown using code or demo as it is related to PLSQL/Oracle. In PLSQL/Oracle term 'start' is a reserve word and we cant use it as procedure parameter to receive start from http request.

The jQuery full calender appends http request params like 'start','end' automatically to the request url when using eventSources. 
The problem is that we cannot call PLSQL procedure using http call with url having param 'start' i-e /oracle/myprocedure?start=value

I know we need to modify string 'start' in the js library, but for quick fix where? any idea? OR any other way to avoid sending start,end with url?

Best Regards,
Vajahat Ali Niazi
Helsinki, Finland.
Feb 25, 2014
#1 NBst...@gmail.com
I had similar problem using Oracle and created a mapping routine to modify the "START" parameter name as it called the procedure. 
Jun 7, 2014
Project Member #2 adamrs...@gmail.com
I think a lot of people like the succinctness of `start` and `end`. I don't know PLSQL but there's gotta be a way to escape it. Otherwise, you can decide to call those fields whatever you want and use `eventDataTransform` to assign them to `start` and `end` at the very end of the process.

http://arshaw.com/fullcalendar/docs/event_data/eventDataTransform/

You can rename them when they are requested too:
http://arshaw.com/fullcalendar/docs/event_data/startParam/
http://arshaw.com/fullcalendar/docs/event_data/endParam/
Status: Done