While doing jdbc programming, following API interface would be very useful to program generic manner for all jdbc supported databases. Interface DatabaseMetaData exposes many methods which we’ll use for jdbc programming. For more info on this, you can refer toContinue reading… JDBC programming inputs
Tag: database
Introduction to basic ODBC programming
Sample program to write basic odbc program to connect/ query/ disconnect with unicode data. //— BEGIN PROGRAM SOURCE #include <stdio.h> #include <stdlib.h> #include <windows.h> #include <sqlext.h> int DBP_SQLSERVER = 1; int DBP_DB2 = 0; int DBP_POSTGRES = 0; #define ENVContinue reading… Introduction to basic ODBC programming
Introduction to PHP’s PEAR classes : Comparing normal Database connections with PEAR classes.
PHP Database Abstraction: Abstraction is a technique which simplifies something complex. It does this by removing non-essential parts of the object, allowing us to concentrate on the important parts. PEAR’s DB classes are one such database abstraction layer, and inContinue reading… Introduction to PHP’s PEAR classes : Comparing normal Database connections with PEAR classes.