Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Toe
  • Content: Threads
  • Order by date
  1. Toe

    write_raw and blobs

    am using http_util routines to call a web service, and in particularly UTL_HTTP.WRITE_RAW the value i am wanting to write is in a table as a BLOB, but obviously the write_raw wants it as a 'raw' how do i convert the blob to a raw thanks, andy
  2. Toe

    putting lob column into raw

    I am using http_util routines to call a web service, and in particularly UTL_HTTP.WRITE_RAW the value i am wanting to write is in a table as a BLOB, but obviously the write_raw wants it as a 'raw' how do i convert the blob to a raw thanks, andy
  3. Toe

    gettign rid of parameter form

    hi, is there a way to supress the parameter form? i aim to populate the paramters in the before report triggers, but i found it still popped up a default parameter form. is there something i can do to stop this?
  4. Toe

    oracle reports - stopping parameter form being displayed

    hi, how can i stop reports from trying to produce a parameter form. i intend to populate the parameters from a before form trigger , but it still pops up a default parameter form with the values populated. is there anyway i can say 'don't produce a paramter form'?
  5. Toe

    how to write query to concatonate multiple entries

    hi, I have the following sceaio I want to write a query for, but can't think how to do it (assuming it is possible) (well, i've simplified here to get to the point I want) Imagin I have a 'rules' and a 'rule instruction' table as follows: rules ----- rule_code rule_description...
  6. Toe

    File upload mime types

    hi, i have a web page (generated from oracles application server) with a 'file' input box (ie. tag of '<input type="file">') The DAD is set up to put this in a table and call the procedure to process it. All this worked merrily until we started getting the latest office documents , of type...
  7. Toe

    JDBC connection problems

    hi, i am tying to establish a connection to an oracle database with the following code: Class.forName("oracle.jdbc.driver.OracleDriver"); System.out.println ("Registered Oracle Driver"); con1 = DriverManager.getConnection ("jdbc:oracle:thin:@//"+connectionString,userName,password)...
  8. Toe

    after query trigger

    hi, i want to trigger something to happen in a multirow block *after* it has finished querying back *all* the records. now a post-query fires after *each* row - i want something to fire after *all* rows have been queried. anybody any thoughts? thanks, andy
  9. Toe

    trigger after querying

    hi, i want to trigger something to happen in a multirow block *after* it has finished querying back all the records. now a post-query fires after *each* row - i want soemthing to fire after *all* rows have been queried. anybody any thoughts? thanks, andy
  10. Toe

    writing content of CLOB to local file

    hi, i'm trying to copy the content of a clob to a *local* file. I can do the getting the text out of the clob and writing to the screen (then using a spool file to write to a file).........providing the clob is small enough. of course, if the clob is too large then it blows the buffer. I...
  11. Toe

    using com bojects

    is it possible to use a com object from java?
  12. Toe

    JFileChooser details/list

    hi, i am creatign a JFileChooser dialog to alow the user to select a file, but the details/list buttons at the top right seem to be greyed out and it only seems to display in the 'list' mode. How can i get it to enable/respond to the 'details' button such that it desplays the fiel details...
  13. Toe

    writing to a clob

    hi, i'm wanting to construct a clob (from various pieces of information) and save to a database. now, i have managed to write a clob value to the database using the 'setClob' in an 'prepared statement' update statment. however, i am struggeling to create a clob in the first case to write out...
  14. Toe

    using plug in and version

    I have a web page that runs an applet usinght <OBJECT> tag. I'm trying to make it use a specific version of of the plug in so am using the 'classid' of : "clsid:CAFEEFAC-0014-0002-0015-ABCDEFFEDCBA" which i unserstood to force it use specifically 1.4.2_15 plug in. however, it seems to just...
  15. Toe

    bean area accessing form procedures

    is it possible to to get java code running in a bean area to call procedures in a form? i have created a bean area in a form that calls soem java i have written that does the processing. problem is, i currently have to create an external JDBC connection to the database to get/save informateion...
  16. Toe

    bean area calling procedures

    Is it possible to get java running in a bean area to call procedures in the form. Basically, i have got a bean area with java associated with it and i can sucessfully call the java - but i want to call a procedure in the form to get information from the database. I am currently doing this by...
  17. Toe

    who does a package run as

    am i correct in assuming a package runs as the user that it is compiled (ie. owned) by? ie. it is the owner of the package that needs the rights on the tables and not the user running it?
  18. Toe

    who is package executed as

    if i have a pl/sql packege owned by 'user1' is it *always* executed as that user ('user1')? can it be the case that the packegeis executed as the user who called the package thanks
  19. Toe

    using bean area

    i've just managed to get a 'bean area' working with a form. however, i can't see how to place items on the actual area ofthe form that is te bean area - i can creat , for example, a new jframe and put stuff on, but i'd like to put itmes in the area that is the bean area on the form (ie. as it...
  20. Toe

    servlet running but no form?

    have just set up and application serverwith a forms server on it. Created a form (test.fmx) and placed this in a directory. added this directory to the forms_90 path. when i go to the url http://xxxxxxx:8888/forms90/l90servlet?form=test I get a screen coem up with "Oracle Application Server...

Part and Inventory Search

Back
Top