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: *

  1. pedrosolorzano

    Some function/stored procedure tips

    Thankx so much to everybody. \df+ works perfect, and seems to be an alias to select prosrc, pronargs, prorettype, proargtypes from pg_proc where proname = 'yourfunction_name'; Thanks again ceco. Pedro Andrés Solorzano Pontificia Universidad Javeriana Bogotá, Colombia, SurAmérica. Let me...
  2. pedrosolorzano

    Unable to run one pl/pgSQL function

    Hi: This is a typo?: INSERT INTO PEOPLES VALUES(SEQUENCE_Id.NEXTVAL),PeopleName); because my internal processor says at first sight that there are more ) than ( in the query, what do you think? Pedro Andrés Solorzano Pontificia Universidad Javeriana Bogotá, Colombia, SurAmérica. Let me...
  3. pedrosolorzano

    Some function/stored procedure tips

    Hi there: thanx for your post, very useful. I have a question, Do you know how to see the code of a function once it has been created. something like \d but with functions? thanks in advance...
  4. pedrosolorzano

    running java applications

    Hi kaht: As you say, " It seems kinda silly that if a user wants to run your program they must first download the sdk package, especially if they never have an intention on developing any software with it"... well, that is why people at sun created the JRE (Java Runtime Environment)...
  5. pedrosolorzano

    Is there any way to import a class with no package?

    the cincunflex (^) in the error points to the ; HELP!!
  6. pedrosolorzano

    Is there any way to import a class with no package?

    Hi hologram: Thanks for the answer. Look at this: -------------------------------- bash-2.05$ cat X.java public class X{ } bash-2.05$ cat Y.java package ypkg; import X; public class Y{ } bash-2.05$ javac Y.java Y.java:3: '.' expected import X; ^ 1 error bash-2.05$ java -version...
  7. pedrosolorzano

    Is there any way to import a class with no package?

    Hi all: assuming that the directory (or jar) where the X class is located is already in the CLASSPATH, X.java: public class X{ } Y.java: package ypkg; import X; public class Y{} Is there any way that Y imports the X class without receive the: Y.java:3: '.' expected import X; error...
  8. pedrosolorzano

    SQL newbbie question

    Thanks again ceco. Pedro Andrés Solorzano Pontificia Universidad Javeriana Bogotá, Colombia, SurAmérica. Let me know if this post have actually helped you, by clicking the purple star.
  9. pedrosolorzano

    SQL newbbie question

    Thanks dsanchez2, I quote ceco: "another one is availavle SELECT number FROM b EXCEPT SELECT number FROM a" Anyway, do you have a link to the documentation page where you find the explanation? Thanks again.
  10. pedrosolorzano

    SQL newbbie question

    Thank you very much WaltK and ceco. Star for you both!
  11. pedrosolorzano

    SQL newbbie question

    Hi All: I don't know which forum is the right one to post this question, in fact, I post it here because I usually work with PostgreSQL, but it is a really newbbie question about SQL: Say I have a table (or view) "A" with one column which content are numbers from 1 to 5: A = number...
  12. pedrosolorzano

    JVM

    It must be: java -cp . hello Check the spaces. Here you can find more information: http://java.sun.com/docs/books/tutorial/getStarted/cupojava/index.html Hope it helps. Pedro Andrés Solorzano Pontificia Universidad Javeriana Bogotá, Colombia, SurAmérica. Let me know if this post have...
  13. pedrosolorzano

    what is a[ i ] = a[ j ].times(a[k]);

    Hi prosper: Let me say that you are a very observant person. Well, you are right, those lines in the tutorial has an error and can confuse the user. First, the line: a = a[j].times(a[k]); would compile depending on the "a" array declaration, where the type of the elements of the...
  14. pedrosolorzano

    Query of a Query and Query Cache

    Hi Bygbobbo: The answer to your question should be the ResultSet class. It let you manage a cursor over a query from a datasource. It also has methods that allows the updating of the underlying database. The constants list gives you an idea about the parametrization and capabilities of this...
  15. pedrosolorzano

    Simultaneous Animations

    Hi owls: "I've tried using multiple threads but that seems to have only one thread run at a time" In fact, it have only one thread running at a time, at least you have more than one processor. But, if the Thread priorities are well managed, you shouldn't note the difference. But...
  16. pedrosolorzano

    File download from servlet

    Hi Verbetex: Do you want to save files from the server in the client machine? You say it is a list of files (1->n), so, if there are more than one, you want as many save dialogs as files to download? Could it be an html page with a link for each file? Please be more specific. Pedro Andrés...
  17. pedrosolorzano

    Can anyone tell me how i could refe

    Hi blues77: It also depends on what type of bean are you trying to instantiate. For example, if you want to instantiate a session bean, you shouldn't create one every time, only if it hasn't been created, depending on the scope. Here is an example: YourSessionBean yourSessionBean = null...
  18. pedrosolorzano

    Unreported excep. IOException must be caught or declared to be thrown

    Hi garishnikov: I copy pasted it too and it worked. This is my Java version: java version "1.3.1_02" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_02-b02) Java HotSpot(TM) Client VM (build 1.3.1_02-b02, mixed mode) I think that your jvm version could be the reason...
  19. pedrosolorzano

    Urgent ---- "not a valid month" Error

    Hi fungling: Did you tried the PreparedStatement? Pedro Andrés Solorzano Pontificia Universidad Javeriana Bogotá, Colombia, SurAmérica.
  20. pedrosolorzano

    Urgent ---- "not a valid month" Error

    Hi thekobbler: I'm agree with you. But, think about it for one minute. What if somebody else have the same problem, and he types in google like you for a solution. Probably he or she will find the page that you are reading which you helped to build. So, this is a way to solve problems to many...

Part and Inventory Search

Back
Top