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!

Recent content by pedrosolorzano

  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...

Part and Inventory Search

Back
Top