Gauri Horane

Greenhorn
+ Follow
since Dec 25, 2003
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 Gauri Horane

thanks for replying,
here is my code stat=con.prepareStatement("Select uid from Table1 where qualification=? and location=? and experience=? and salary_range=? and ( skill1=? or skill2=? or skill3=? or skill4=?)");
stat.setString(1,quali2);
stat.setString(2,loc2);
stat.setString(3,exp2);
stat.setString(4,salr2);
stat.setString(5,skill21);
stat.setString(6,skill22);
stat.setString(7,skill23);
stat.setString(8,skill24);

result=stat.executeQuery();


while(result.next())
{
System.out.println("uid="+result.getString(1));
}
----it does'nt give any result means it can'nt find any record satisfying these criateria, but many records satisfying these conditions are there in database.
when i use 'and' once it works, it shows records, but when i use 'and' even twice(also when i use multiple 'and's &'or's) it does'nt give any records,
thanks for replying,
my query is
("select * from table1 where field1=? and field2=? and field3=? and(field4=? or field5=?")
when i use only 'and' once it is working but when i use multiple 'and's & 'or's it is not working ,it does'nt give any exception.
when the doGet() & doPost() methods get invoked?
20 years ago
To display array of integers u first convert each integer into String & insert it i html
for e.g 's'(for e.g. s="11") is string containing integer value then u have to write
out.print("<html><body>"+s+"</body></html> ;
20 years ago
hello friends,
i have to do jdbc connectivity using applets & run it in browser.
i am using MS Access.
i have updated java.policy file.
when i run it by appletviewer it get executed without problem .
but when i run it in browser it gives
class not found :jdbc dbc:JdbcOdbcDriver.
i am using IE browser. i have also changed the java plug-in
in controle panel to jdk1.3 which i am using.
the problem is due to MS access?
Thanks
-Gauri
hello Joe,
i have set java plug-in to my jdk1.3 but still it gives Exception
class not found:jdbc dbc:jdbcodbcDriver.
i am using Ms Access. can it be problematic?
coz access is used for only desktop applications.
-Gauri
20 years ago
hello friends,
i have 2 main problems .

1.to open applet from another applets when running applets in IE browsers.
2.i made database connectivity through applets by updating java.policy file. When i run program using appletviewer ,it get executed successfully without security Exception. but when i run it in IE browser it does'nt work it gives security Exception
if anybody has solution pls tell me.
-Gauri
20 years ago