Background [wp_ad_camp_1] Sometimes you may need to limit the size of a particular MySQL specially for demo applications. Limiting the size of a database requires determining its current size before any insert operation. This article demonstrates how to use SQL
How to configure Maven to use proxy to connect to the network
Background This article demonstrates how configure Apache Maven to use proxy to connect to the network. [wp_ad_camp_1] Software Environment Windows 7 Professional SP1 Apache Maven 3.1.1 Java 1.7 (1.7.0_67 – Windows x86) Modify conf/settings.xml [wp_ad_camp_2] Download the Apache Maven from http://maven.apache.org/
How to programmatically create users in SAP NetWeaver Portal
This article demonstrates how to programmatically change user passwords in SAP NetWeaver Portal using available API. For applications with very high number of users, they may be better off keeping some references to portal users in their databases. For instance, an application can cache user ids in its database when new users are created. In that that way, it has readily available list of users at its disposal. Certain non-critical queries can be delegated to the RDBMS to reduce hits to the portal.
How to programmatically change passwords in SAP NetWeaver Portal
This article demonstrates how to programmatically change user passwords in SAP NetWeaver Portal using available API.
How to use the Iterator interface in PHP
This article demonstrates how to use the Iterator interface in PHP. Objects implementing this interface works like an array when used in foreach constructs.
How to use the PHP Countable Interface
Background This article demonstrates how to implement and use the Countable interface in PHP. The Countable interface is normally used in conjunction with other interfaces (i.e., Iterator, ArrayAccess, etc.) to create data structures like PHP SPL Library’s SplDoublyLinkedList and SplStack.
iReport 2.0.0 Page Numbers and Page Count
This post shows how to create a jasper report using iReport that displays page numbers and page count, e.g., 1/10. Moreover, the iReport will show the page numbers and page count on top of the pages. iReport 2.0.0 and other
Java – Generate PDF in Specific Version using JasperReports
Some devices can only process specific versions of PDFs. This post shows how to generate specific PDF versions in Java and JasperReports. If our devices are considerably old, chances are they can only process older versions of PDF documents. Java,
How to Run UNIX SFTP in Java To FTP File
This post shows how to run the native Unix sftp command in Java to upload files. We basically want to run the following command in Java. The Unix command is not directly translational to Java. However, we want to execute
How to Delete Files in Java without using third-party libraries
This post shows how to delete files in Java. Our codes will not use any third-party library to accomplish the task. Java Requirements We used the following items for this post. Note that the Java codes will still work on