bookmarks-import-oracle.xql
DB Query file
Related Files
- packages/bookmarks/www/bookmarks-import.xql
- packages/bookmarks/www/bookmarks-import.tcl
- packages/bookmarks/www/bookmarks-import.adp
- packages/bookmarks/www/bookmarks-import-postgresql.xql
- packages/bookmarks/www/bookmarks-import-oracle.xql
[ hide source ] | [ make this the default ]
File Contents
<?xml version="1.0"?> <queryset> <rdbms><type>oracle</type><version>8.1.6</version></rdbms> <fullquery name="folder_insert"> <querytext> declare dummy_var integer; begin dummy_var := bookmark.new ( bookmark_id => :bookmark_id, owner_id => :viewed_user_id, local_title => :local_title, parent_id => :parent_id, folder_p => 't', creation_user => :user_id, creation_ip => :creation_ip ); end; </querytext> </fullquery> <fullquery name="new_url"> <querytext> declare dummy_var integer; begin dummy_var := url.new ( url_id => :url_id, url_title => :local_title, host_url => :host_url, complete_url => :complete_url, creation_user => :viewed_user_id, creation_ip => :creation_ip ); end; </querytext> </fullquery> <fullquery name=""> <querytext> declare dummy_var integer; begin dummy_var := bookmark.new ( bookmark_id => :bookmark_id, owner_id => :viewed_user_id, url_id => :url_id, local_title => :local_title, parent_id => :parent_id, creation_user => :user_id, creation_ip => :creation_ip ); end; </querytext> </fullquery> </queryset>