If you write a lot of PL/SQL code, you must have thought of it at least once. It is probably when your teammate accidentally overwrote the same package that you saved seconds ago. Yes, I am talking about Team Coding. If you are using SQL Navigator or TOAD for Oracle, you are just couple of [...]
Archive for July, 2010
JavaScript DecimalFormat
We needed to implement a number formatter in JavaScript for Formspider, our Web 2.0 framework for PL/SQL developers. The applications developed with the framework can run on both Java and JavaScript from the same code base. Since we used the DecimalFormat on Java side, we needed the same functionality for the Javascript environment as well. [...]
Creating Oracle to SQL Server Database Link Programmatically(32-Bit Win)
This article describes how to create a heterogeneos connection between Oracle to SQLServer programmatically using Java. Please read the Article Creating Oracle to SQL Server Database Link to create this connection manually. You can download the source code for this tutorial from here Step 1: Create Windows Script (vbs) File to Create Data Source (ODBC) [...]
Creating Oracle to SQLServer Database Link (32-Bit Win)
Oracle Heterogeneous Services let you create a database link from Oracle to SQL Server. This method may be preferred over using a JDBC connection because it is significantly faster. Below is the list of steps you need to follow to establish a link from Oracle Database to an SQL Server so that you can query [...]
Applet initialization problem
DOM manipulations in a web application may cause the applets in the application to reinitialize. Sometimes this can be annoying because the reinitialization causes the applet to lose its state. I ran into this problem recently in a project when we incorporated a JavaFX widget into our DHTML/JavaScript application. I have not been able to [...]
