Hi,
You'll probably want to start by deciding on a server-side/client-side
exchange data format.. that is, how do you transfer data from a server-
side script to your client-side JavaScript. Some options for this are
KML, XML, or JSON. KML can be natively handled by the plugin using
fetchKml or by creating network links. XML and JSON require more
processing on the client-side before displaying the data in the
plugin, but they might allow for more flexibility in your application.
I'd suggest reading the following for more information:
KML approach:
http://code.google.com/apis/kml/articles/phpmysqlkml.html (not exactly
Oracle, but the same concepts can be applied)
http://code.google.com/apis/earth/articles/earthapikml.html
XML approach:
http://code.google.com/apis/maps/articles/phpsqlajax.html (Maps, not
Earth, but the same concepts can be applied)
Hope these links help you get a basic understanding of the steps
involved.
- Roman