0
獲取語法錯誤,而我試圖檢索使用JSTL和Derby數據庫在Netbeans的,請幫我從數據庫中的數據獲取語法錯誤..而從數據庫獲取數據的使用JSTL
<body>
<sql:setDataSource
var="myDS"
driver="org.apache.derby.jdbc.ClientDriver"
url="jdbc:derby://localhost:1527/nit"
user="root" password=" "
/>
<sql:query var="listUsers" dataSource="${myDS}">
SELECT * FROM NITIN;
</sql:query>
<div align="center">
<table border="1" cellpadding="5">
<caption><h2>List of users</h2></caption>
<tr>
<th>Name</th>
<th>Mobile</th>
</tr>
<c:forEach var="user" items="${listUsers.rows}">
<tr>
<td><c:out value="${user.name}" /></td>
<td><c:out value="${user.mobile}" /></td>
</tr>
</c:forEach>
</table>
</div>
在此先感謝... 。請...
'Syntax Error' Nitin的內容是什麼?你能發佈JSP文件的完整源代碼嗎? –
javax.servlet.ServletException: SELECT * FROM NITIN; :語法錯誤:遇到「;」在第1行第20列。 –