7 of 8 people found the following review helpful:
3.0 out of 5 stars
vendor specific and repetitive, November 27, 2005
This review is from: JDBC Recipes: A Problem-Solution Approach (Hardcover)
The 600 page "JDBC Recipes" might make a decent 100 page book. Some problem/solutions are repeated verbatim and others are repeated with minimal changes. For example, there are at least 8 distinct sections on closing a database resource. The BLOB/CLOB and Statement/PreparedStatement chapters are at least 50% identical.
Despite all this repetition, coverage manages to be spotty on other topics. For example, CallableStatements are barely mentioned. Many ways are presented of doing a task, but the tradeoffs aren't covered. Except for connection pooling, there weren't many comments about JDBC in practice.
The stated audience is developers knowing the basics of Java, JDBC and databases. Examples span 1-4 pages of code with only minimal, high-level comments afterwards. Experienced developers know most of this stuff and shouldn't have to plow thru so much code to discern the important points.
The examples are tailored to Oracle and mySql. If you want to write code without vendor lock-in, this book doesn't help. The cover says "Java EE 5 compliant." While true, this is misleading. Most references are to the 1.4 JavaDoc. The 5.0 references don't use the new features.
The book serves a very narrow audience. If you want to copy/paste Oracle/mySql code verbatim, the book's website is very useful. If you have a database framework, want cross-database compatibility, best practices or are simply reading for understanding, I recommend a different book.
Help other customers find the most helpful reviews
Was this review helpful to you? Yes
No
4 of 5 people found the following review helpful:
4.0 out of 5 stars
JDBC Recipes full of flavor., November 12, 2006
This review is from: JDBC Recipes: A Problem-Solution Approach (Hardcover)
Do you like to read about programming? or Do you like to see the code with your own
eyes? I like to see it with my own eyes. Mahmoud Parsain has compiled a see it for yourself
book on the JDBC (Java Database Connectivity). If you like Java and you do any work with Databases
then you should read this book. It provides many many examples (Recipes) you can see and learn from to
create the Database solutions you need.
Here are some of the items covered and coded in the book: Making Connections, Drivers, Connection pools,
Using DataSource class, ResultSet class, Scrollable and updatable ResultSets, working with BLOBs and CLOBs,
Handeling Date, Time and Timestamps, JDBC Exceptions, PreparedStatements, working with Parameters and
PreparedStatements. The book has all you need to simply add, update, delete records in your databases or
to create tables, perform transactions, and roll back transactions if necessary.
The book focuses on Oracle and MySQL type databases but this is not a draw back. All the examples can
be applied to various other types such as Derby, SqlServer, Teradata, DB2, SqlLite, Sysbase ect. I am a ETL
developer (Extract, Translate, and Load) for warehouse databases and I was able to easily apply this code
to create my own simple Sql ETL application to move data from one RDBMS to another.
There were two items in the book that I did not find. One was the setMaxRows statment which can be
handy to limit the number of rows being returned from the database. The other was the getTypeInfo call that is
part of the DatabaseMetadata class. You can use the getTypeInfo call to get a list of the data types the
database you are connecting to supports. However, even with these missing the book hits just about every
other property and method commonly used in the JDBC api.
Mahmoud Parsian has done a great job in providing such a comprehensive set of JDBC code examples
that are simple to follow. Apress has produced another great reference for the Java programmer to have
on the shelf.
Help other customers find the most helpful reviews
Was this review helpful to you? Yes
No