answersLogoWhite

0

What is context in jsp used in jdbc?

Updated: 8/19/2019
User Avatar

Wiki User

13y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is context in jsp used in jdbc?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Are you have project java have jsp plus jdbc plus swing?

No. JSP and Swings are two contrasting Technologies and cannot be used in the same application. And - JDBC can be used with both types of applications that use either JSP or Swings


What is the relationship between JSP and JDBC?

There is no other relation apart from having Java in their names. JSP is a technology that is used to create powerful User Interface components whereas JDBC is a technology that is used to connect to Relational Databases like Oracle or Sybase


How validate and retrieve data from database in jsp?

We can do validation by using JavaScript. Here we are using function Validate(). Iam creating one JSP name index.jsp & give a link to another JSP name basic.jsp. In that Jsp iam using Type 1 Jdbc Driver & giving a database connection


What does the programming term JSP mean?

JavaServer Pages (JSP) is a server-side programming technology that enables the creation of dynamic, platform-independent method for building Web-based applications. JSP have access to the entire family of Java APIs, including the JDBC API to access enterprise databases.


Can you create a database with only a form?

Yes , you can create a database using a form . But you have to do two things First make a form in html or jsp whatever you like. Then Connect the form to database using java database connectivity.Yes, we can create database with a form. First create a form using html or jsp then we can connect it to database using JDBC.


Describe about JDBC architectural overview?

General JDBC Architecture consist of two layers: JDBC API - this provides the application to JDBC manager connection. JDBC driver API - this supports the JDBC manager to driver connection.


What is type 4 jdbc driver?

JDBC is short for java database connectivity. There are 4 type of JDBC drivers : 1) JDBC-ODBC 2) Native-API 3) JDBC-Net 4) Native-Protocol.


What is session in jsp?

Session in the JSP and Servlet context refers to an instance of the HttpSession object that contains all the information about the current user session with the web application. This can be used as a cache or temporary storage area to store values that might be required across the application.


What is JSP?

In the context of Computer Programming, JSP stands for Java Server Page. A JSP is basically an HTML file with Java code inserted to make a dynamic page.AnswerJacketed soft point in the context of bullets. AnswerJSP, Java Server Pages, is a language for mixing HTML/XML and Java in the same page. Basic JSP can look like this:...Welcome, ...where tells the server to execute the contents of the tag as Java and print the result to the page.See related link.


What is the Expansion for JSP?

JSP stands for Java Server Pages. They are used in Java Enterprise applications that are created to be used on web pages. The JSP page acts as the user interface for the enterprise application.


What are the JSP atrributes?

java server pages (jsp) are used for scripting on java side with the help a server .


What is the difference between JNDI and JDBC?

JDBC is java database API, while JNDI is java native directory API. The main thing in here is that in a JNDI directory you're actually storing a JDBC DataSource, so, you're simply using JDBC and obtain a Connection via JNDI lookup. In short words: JDBC is Database realm, JNDI lets you store Objects in a virtual context (the Directory) that can be local, remote (Implementation details usually don't matters). You access this context via names, obtaining stored objects, is good to share things among different modules. Application Servers usually have a JNDI Context for sharing global objects amon different application, Connection Poolers happen to be one of the most clear example of why sharing via JNDI is good. (Define 1 connection pooler, share between several webapps)