Ramu Prasad has Published 73 Articles

Interfacing database to external parties in SAP system

Ramu Prasad

Ramu Prasad

Updated on 30-Jul-2019 22:30:20

110 Views

Interacting directly with SAP databases is not considered a good programming practice. As SAP database is nothing but a normal database, it can interact in any way like any ODBC technique - ADO.NET or other.Remote Function Calls can be used to make calls to databases. ERP Connect supports RFC and ... Read More

List of Best JavaScript libraries?

Ramu Prasad

Ramu Prasad

Updated on 30-Jul-2019 22:30:20

198 Views

The following are some of the best JavaScript Libraries:jQueryjQuery is a fast and concise JavaScript Library created by John Resig in 2006 with a nice motto – “Write less, do more”. jQuery simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.MooToolsMooTools is an object-oriented, lightweight ... Read More

How to convert BLOB to Byte Array in java?

Ramu Prasad

Ramu Prasad

Updated on 30-Jul-2019 22:30:20

6K+ Views

You can contents of a blob into a byte array using the getBytes() method.Exampleimport java.awt.Image; import java.awt.image.BufferedImage; import java.sql.Blob; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; import java.util.Arrays; public class BlobToByteArray { public static void main(String[] args) throws Exception { ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements