category

Create the Data Source in the Report Builder

Let’s start to run Report Builder in Start on Windows OS. You see Report Builder window. Close Getting Started window, Rig ... Connection Result window and then in main window. On the left side in the Report Builder window you see your Data Source.  

Integrate WildFly 13 server and Netbeans

In the post I wrote how install WildFly , today I desribe how integrate it with Netbeans IDE. After download and unzipped Wi ... et during adding server) and see wildfly website.After clicking Administration Console you see content similar to this below.

How install Report Builder 3 for Reporting Services?

In this article I will explain you how install Report Builder 3 for Reporting Services. First step is download installation ... r 2017? Click the Next button. Click the Install button. After installation process, you see Report Builder window as below.

How create Dataset in the Report Builder?

In the last post I show you how create Data Source in Report Builder. In this article I discuss hoow create Dataset, if you ... ose Dataset Properties.   You see old SQL query:   List all names of columns in the table: Now the columns are visible.  

How work with Oracle Express XE 11g after installation on Windows

The last topic disscus how install Oracle XE 11g. Today I expalin you how work with it. After installation, you have on the ... for Java, for instance: C:\Program Files\Java\jdk1.8.0_102 After first run SQL Developer: The application is ready to work.  

SQL*Plus for Oracle

SQL*Plus may display data from tables of database in default language set in system OS. So sometimes you can see in your lang ... E8PC858 861  IS8PC861 862  IW8PC1507 865  N8PC865 866  RU8PC866 You fin all information about it on Oracle website.

How to install SDK Android on Windows 7?

It is first part about creating Android applications. In this post step by step is decribe how install SDK Android. First Yo ... he installation process will be start. After complete the process click the Next button. At the end click the Finish button.

Maven Project in Netbeans 8 with JPA 2.1, Hibernate 5 and SQL Server 2012 database

This work begin with connect SQL Server 2012 database in Netbeans. I show how it do in Add connection in Netbeans 8 to the S ... Tables node in database: After run application:If you view data set, you see data in table which you insert into main class:

Use SQL*Plus tool to connect to a database in Oracle 11g XE

It is not news that the SQL Developer tool is a visual, graphical tool to connect to a database in Oracle. About SQL Develope ... abase.Documentation about SQL*Plus you find under this link:https://docs.oracle.com/cd/B14117_01/server.101/b12170/qstart.htm

Training Java

It is topic given execises in Java about conversion integer. In this example you can see work conversion of short datatype i ... s begin from -128 to 127 and this cycle is repeated, in this example it is go on to 7 units. It is present in diagram below:

Insert data into the existing table of PostgreSQL 9 with Hibernate 5, JPA in Maven Project in Netbeans 8

You have table people created in mydb in PostgreSQL(id as serial and primary key and name columns). We create it in post:Cre ... = GenerationType.IDENTITY) private Long id; private String name; ... And run application and get data from database:

Training Java – part 7 – how work shift bits?

In this post you find out how work shift bits in number. Begin with this example: public class Test { public static void mai ... ers this first places are zero, so they are  count  for >>> operator but are zero so value for  these bits are zero.

How add and configure WildFly 10 server in Spring Tool Suite

Open Spring Tool Suite and look at the Servers node into it. There are not WildFly on the list of servers. In the following ... p WildFly Server if is running. In standalone.xml file change line with port 8080 to 8180 or other. Save file and run server.

How install Oracle Express(XE) 11g on Windows 64-bit?

The first step is go to website: Http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html And down ... process installation start. Click the Finish button. On the Desktop you see this icon: In the Start->Programs you see:  

Maven Project in Netbeans 8 with JPA 2, Hibernate 5 and PostgreSQL 9.6 database

This work begin with connect PostgreSQL database in Netbeans. I show how it do in How set connection to PostgreSQL 9.6 datab ... result in data view in database. Right click the department table and choose View Data. It is all record in department table.

Desktop Java 8 – part 5– How in the simple way to colour JTable component in frame?

Another topic about Java desktop application. In it You find answer how make colour table component in Java JFrame. Our last ... kground(new Color(3,123,225)); f.setLayout(new FlowLayout(FlowLayout.LEFT)); f.add(scroll); ... Effect launching application:

Installation of Spring Tool Suite(STS) 3.9.0 on Windows

First you must install JDK. How I wrote in my post in Java category. Second step is install Eclipse IDE for JEE. Download in ... ts folder. The unzip STS has sts-bundle name. Look at the screen. In the sts-3.9.0.RELEASE catalog you find files as below.

How to install Android Studio?

The first step is install JDK for Java and SDK Android. In last post I describe SDK Andrid installation. In this part I show ... ed components will be downloading. After downloading, click the Finish button. The Andrid Studio start window will be show.

Training Java

How result give you divided two numbers? I explain it on basic example: public class Test { public static void main(String[] ... ersion from double to float Why? Because double divided by int give you double, not float. Float must be sign will f letter.

Installation and configuration Eclipse Oxygen.2 for Java 9

If you would like use Java 9 and look for instruction how install JDK Java 9 on Windows I desribed it in my post “How instal ... install. At the end you have to restart Eclipse. The next article will explain how write in Java 9 application using module.