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: luciddream
  • Content: Threads
  • Order by date
  1. luciddream

    problem with decimal field being rounded

    Hi, I'm having a very frustrating problem. I am trying to update a decimal field, scale 9, precision 18 , with an update statement. something along the lines of: update table set field = 4.5 where id = 12 anyways, the decimal is being rounded, for some ungodly reason. I really don't think...
  2. luciddream

    string concatenation problem.

    i've been having a problem that doesn't make any sense to me. i've been trying to put a variable in a string, but, the string always cuts off at the end of the variable.. i hope someone has had this problem before and can help me out. the variable i'm trying to put in the string is a substring...
  3. luciddream

    copy a record

    there has got to be a way to copy a record so that i don't have to insert a thousand values from an existing record. please, someone has to know how to do this. luciddream@subdimension.com
  4. luciddream

    Thought you guys might enjoy this

    http://www.bbspot.com/News/2001/01/perl_god.html ^very amusing^ adam@aauser.com
  5. luciddream

    sleep() function

    if anyone has every been upset that javascript doesn't have a sleep function, i just wrote one. it doesn't wait the exact amount of time.... but, it's really close. so: function sleep(num) { var f = new Date(); f = new Number(f); f = f + num; while(true) { var n = new Date() n = new...
  6. luciddream

    HttpURLConnection

    can someone show me how to use this class? i try to make a new HttpURLConnection, which, atleast in my mind seems like a logical thing to do. on the other havd, javac doesn't seem to think it's as good of an idea as i do. it's telling me that it's an abstract class and can't be instantiated...
  7. luciddream

    robot needs to except cookies

    hello. i need to have my robot except cookies from sites its searching... if anyone can think of a way to do this, i'd be greatly appreciative for any info. as of the moment i'm using HTTP::Request, but, i'm willing to use anything to accomplish this.
  8. luciddream

    ack! load class clientApplet not found

    here is my problem: i write an applet, include it om an html page, but when the page loads it says: load: class ClientApplet not found the problem is that i do have clientApplet.class in the same directory as the page and this is how i put the applet on the page: <applet...
  9. luciddream

    need help with applet

    i have the following code: import java.net.*; import java.io.*; import java.applet.*; import java.awt.*; public class IOStreamap extends Applet{ String inputLine; public void Init(String[] args) throws Exception { URL streamer = new URL(&quot;http://www.aavex.com/cgi-bin/pushtest.pl&quot;)...
  10. luciddream

    Server Push w/ IE?

    does anyone know how i would go about implementing server push with ie. apparently only netscape(yuck) supports this, and i am interested in any alternatives that leave the http stream open. any information will be appreciated. thanks, adam
  11. luciddream

    Win32::Mutex

    if anyone knows of any source of decent documentation on Mutexes, i'd greatly appreciate it.

Part and Inventory Search

Back
Top