Search
Stack Connect
Click Fall
- 5,913 hits
Me!
Vineet Verma
Developer/Blogger/Gamer/Lazy Couch Potato...:P Need PDF Books: Knowledge Base
Tags
- ADF
- ADF Utils
- AF:Drag
- Algorithms
- Ant
- application
- Calendar
- Certification
- Classes
- Code
- Code Eval Solution
- Composer
- css
- csv
- Date Overlap
- DOM
- Drag and Drop
- Dumps
- EMAIL VALIDATION
- Error Handling
- Exam
- GIT
- HTTPS
- In Clause
- Installation
- Interview
- Java
- JavaScript
- JAXB
- JBO Logger
- jQuery
- js
- JSF
- LDAP
- Logging
- Managed Bean
- MongoDB
- number padding
- OpenCart
- Open Source
- Oracle
- Oracle ADF
- Oracle Service Bus
- Oracle SQL
- Oracle WebCenter Portal
- Oracle WebLogic Server
- OSB
- PHP
- PHPMailer
- PL/SQL
- Popup
- Portal
- Portal Builder
- Programmatic
- Programmatic View Object
- Puzzles
- Python
- repository
- Scopes
- Search
- Server
- sorting
- SQL
- Strings
- submodule
- Util
- Utils
- View Criteria
- Web Center
- WebCenter
- Weblogic
- Weblogic Server
- Web Service
- WebServices
Topic Cloud
AJAX Best Practices Clear Case Client Side Programming CSS Design Pattern Hibernate HTML Interview Puzzles J2EE Java JavaScript JDBC jQuery JSP Oracle Oracle ADF Oracle PL/SQL Oracle SQL PHP Server Side Programming Spring Struts Struts 2 Uncategorized VB script WebCenter Portal Weblogic Web Services WSDLFB Page
Category Archives: JDBC
java.sql.SQLException: ORA-03115: unsupported network datatype or representation
java.sql.SQLException: ORA-03115: unsupported network datatype or representation I was getting the above exception when I was trying to set a CLOB data in the database using java. More understanding about this exception can be get from http://www.coderanch.com/t/302117/JDBC/java/java-sql-SQLException-ORA-unsupported The mistake I … Continue reading
Posted in JDBC, Oracle
Leave a comment
Common pitfalls in JDBC Prepared Statement
DO NOT USE single quotes when using setString method. Usually we tend to forget this when using like statement as in select projectId from t_project where projectName like ?// Setting the value// The following is incorrect and will not workpstmt.setString(1,”‘%abc%'”);// … Continue reading
Posted in JDBC
Leave a comment
Best practices in JDBC Connection
JDBC Connection Scope How should your application manage the life cycle of JDBC connections? Asked another way, this question really asks – what is the scope of the JDBC connection object within your application? Let’s consider a servlet that performs … Continue reading
Posted in JDBC
Leave a comment