Can give answer to the folloing questionQuestion 2You are in charge of implementing a Grand Prix Car Racing Results system for a sports magazine, to be used for entering and processing data concerning each Formula 1 Grand Prix that has been run in the season.As you know, each driver is part of the team, and has a number. At the end of each race, the driver who arrived first is assigned 9 points, and the following five drivers receive 6,4,3,2 and 1 point each. Drivers who come in after the sixth
RandomAccessFile is used for reading a few parts of data that are at known positions near the end of a large file.
Skill/Topic: AWT & AppletsA) TrueB) False
I get the following error while running a servlet that connects with database.Required:java.sql.Connectionfound:ConnectionThe line is Connection con = DriverManager.getConnection("here the oracle datasource ","user",password");//Note:before installing Tomcat the code gave no error:Pls give me suggestion
In java,i can importing java.sql.package and i get resultset from database.but here i don,t implement the Result Set interface but i am using it.my question is where the interface definition are stored?
Hi,I'm doing a project using jsp, java script, HTML as front end and sql server as backend.i want to create my database inn runtime. while doing so ,1. how do i check for an already existing class2. if there is an already existing class then i need to update the table .how do i do this. can any one guide through this.vidhya
Hi,Please give me the code to convert a string recieved from html page to convert it into sql date format so that i can insert in to database.
I have a file whose contents are written in french. I want to read that file and edit the file and then write the contents back to the same file. How do I do that?I am reading file content is instanceof ByteBlock only. Then I am using byte[] blk = ((ByteBlock) content).bytes();FileOutputStream fs = new FileOutputStream("a.txt");fs.write (blk, 0, blk.length);fs.close();During writing a file I want use encoding like ISO-8859-1. I can't use Writer because my contents are byte stream.
How we can connect to a database in Java without creating DSN and by using JNDI in J2EE Server. Plz give me the technique. Thank U.
How do I connect to database using JDBC drivers without using ODBC?example:presently I am trying to access MySQL databse withjdbc:odbc:......is it possible for me to directly connect to databse without using ODBCI mean JDBS:......