Alex Sanchez

Greenhorn
+ Follow
since Mar 21, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Alex Sanchez

That's right, and a stored procedure is , as written in the MySQL manual:

A stored procedure is a set of SQL commands that can be compiled and stored in the server. Once this has been done, clients don't need to keep re-issuing the entire query but can refer to the stored procedure. This provides better performance because the query has to be parsed only once, and less information needs to be sent between the server and the client. You can also raise the conceptual level by having libraries of functions in the server.

You know, from what I know you can only access a column from a ResultSet once. Can anybody confirm this? When I tryd to access the same column 2 times I get an exception the second time, even though the Resultset is still alive. I don't know if this is fixed with JDBC 3.0 (sdk 1.4.0).
Thanks Manfred!
It worked perfect!
By the way, does this only work with GridBagLayout? Because right now i'm adding the two panels to a panel that has a BorderLayout(the upper to "North", and the lower to "Center")..
Thanx again.
22 years ago
Hello
I got two Jpanels on top of each other, the upper panel has a TitledBorder(EtchedBorder) and the lower one has simply an EtchedBorder. The thing is that because the upper has a title the margins are wider than the lower one. I want them to have the same margins. the same size, not as in the picture below

Has this something to do with Insets? any good solution?
[ March 21, 2002: Message edited by: Alex Sanchez ]
22 years ago