Dorj Galaa

Ranch Hand
+ Follow
since May 29, 2001
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 Dorj Galaa

Hi every body.

I have developing server application using java and start.sh and stop.sh. When stop server i kill process.
echo `ps -aefwww|grep java|grep -v grep|grep test.Server`|cut -d ' ' -f 2|xargs kill -KILL > /dev/null 2>&1


Do you have a good idea to stop this server?
18 years ago
Session id is stored in the cookie. after reset connection, you must send that cookie to the server
it works for me. Thank you
Stan James
Thanks a lot. i will try it.
Hi every body
I'm developing FTP client application. Client machine has two ethernet intefaces(eth0, eth1). When create socket connection i want to choose ethernet interface. How do i choose ethernet from Java?
[ September 06, 2005: Message edited by: Michael Ernest ]
try to use addBatch() and executeBatch()
stmt.setString(1,"3");
stmt.setString(2,"3");
stmt.addBatch();
stmt.setString(1,"5");
stmt.setString(2,"5");
stmt.addBatch();
stmt.executeBatch();
Hi all
What kind of java will run on Alpha Server?
19 years ago
I have a SELECT statement that looks like the following:
SELECT *
FROM products LEFT OUTER JOIN grouping
ON (products.itemNum = grouping.itemNum)
LEFT OUTER JOIN english
ON (products.itemNum = english.itemNum)
WHERE products.category = pictures
AND products.subCategory = framed
GROUP BY grouping.groupingWith
ORDER BY products.displaySequence;
Can ayone tell me how I can incorporate a aggregate function into this
select so as to be able to get the rowcount of just the GROUP BY ?
Thanx
i have a new task working with Comm Port.
Platform IS IBM OS2.
Where am i can download Java for OS2 and Comm API for IBM OS2?
20 years ago
I trying use JBuilder 8 develop Enterprise application and i have SUN J2EE server. But the server not in the JBuilder servers list.
how can i add SUN J2EE server to the JBuilder servers list?
Hello All
i have one problem
I want run java program in swap memory
how to make this?
Thans advance
21 years ago