iAccount based inUnited States!
About this account
- Account based in
- United States
- Connected via
- Web
! X says this location may be affected by a proxy or VPN.
Account-level information from X, not a live location or the device used for a specific post.
Oracle REST Data Services (ORDS) provides REST APIs for Oracle Database & the JSON Document Store (SODA) plus the Database Actions (SQL Developer Web) App.
- Tweets767
- Following71
- Followers3.1K
- Likes164
ALT A sample REST API with GET handler to test your Oracle Database configuration with REST Data Services (ORDS), begin ORDS_METADATA.ORDS.create_service( p_module_name => 'day_zero', p_base_path => 'day0', p_pattern => 'greeting/', p_method => 'GET', p_source_type => 'json/item', p_source => 'select ''Hello!'' from dual', p_status => 'PUBLISHED', p_module_comments => 'see if we can create a module', p_template_comments => 'see if we can create a template', p_handler_comments => 'see if we can say Hello!'); COMMIT; END; /