doraprojects.net

Copy object or clone object?

How is difference between copy and clone object? First we check what is copy. Copy Create CloneObject project. In projects w ... ect has old data. If you change Hobby field in orginal object change is only for orginal object, clone object has old data.  

Export data from SQL Server to CSV file.

In this topic I describe You how export data from SQL Server to text file or CSV. First launch SQL Server Management Studio. ... ase. Click the Next button. Click the Next button. Click the Finisht button. Open your CSV file and see your data from table.

Console application in Java 7 in netbeans 7.4 – Scanner object

In this post I describe how create console application in Java with Scanner object. First create project ScannerApp. Choose ... println(first_number+" + "+second_number+" = "+(first_number+second_number)); It will be your result after run application:

Getting all properties from system in Java

In this section you create console application displays all properties from your OS. Begin with create MyProperties project. ... extElement method. Run your application. You see all properties: key and its value. It is part of result this application:  

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:  

Installation, configuration and testing Java 7

Java is my favorite language. Why? Because it is universal, objective, multithreaded, portable programming language, which w ... n You see information looks like it: On www.oracle.com website in Documentation tab You find either documentation for Java.

UNIQUE clause and NULL in SQL Server 2012

In this topic You find out how work UNIQUE constraint for column with or without NOT NULL constraint. Begin with  creating i ... one NULL value. If You would like to constraints this field for NOT NULL, You may add NOT NULL to column with UNIQUE clause.

Delimiter in Scanner object

Create in Netbeans IDE project and name it Scanner1. In main method your class paste this code: package scanner1;import jav ... delimiter is space, but useDelimiter method change it for this in  parameter this method. If You run application, You see:

The simple way to install LESS preprocessor through node.js and compile LESS file to CSS file

Lately I started my adventure with LESS. It is first post about the LESS for you. If you don’t know what is the LESS, I expla ... again LESS compiler. The style.css was changed. Look at its content. After run HTML file you see website like that below.

Why implement your own toString method?

In this post I show You why it is worth to implement own toString method. Create in Netbeans IDE project of MyStringObject n ... getFirstname()+" "+getSurname()+", "+getAge();    } If you run application, You see information about data of objects.      

Installation and configuration EGit in Eclipse or Spring Tool Suite

How to install GIT I describe in my post “How install GIT on Windows 7?”. After installation of GIT, on my computer files ar ... write name and in Value value for it. In the same way add email with value. Click the Apply and Close button to save settigs.

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

On the Desktop you see icon like this: It is shortcut for this file: C:\oraclexe\app\oracle\product\11.2.0\server\Get_Starte ... for Java, for instance: C:\Program Files\Java\jdk1.8.0_102 After first run SQL Developer: The application is ready to work.  

In Zend Framework 1.12 Application error: No adapter found for Application Model DbTable

I met last time situation in that I run my application with error: No adapter found for Application_Model_DbTable. What’s wr ... tion.ini file and paste it before [staging : production] section: Running application You see list of animals from database.

Configuration and testing Xampp and Zend Framework

First You test xampp server. Open Xampp Control Panel. Click Start button places on the right from Apache label.  The same Y ... end very well: Apache is working, PHP is working and MySQL have root user with password, Zend Framework is working, too.    

Dora's programming blog

This work begin with connect PostgreSQL database in Netbeans. I show how it do in How set connection to PostgreSQL 9.6 datab ... n Project in Netbeans 8 with JPA 2, Hibernate 5 and PostgreSQL 9.6 database appeared first on Dora's programming blog. ]]>

How generate SQL script in SQL Server Management Studio to create database from SQL Server?

In SQL Server Management Studio is opportunity to generate script with SQL query creating all objects from any database. Fir ... file per object. Click the Next button. Click the Next button. Click the Finish button. The content of script file is ready.

Desktop Java 8 – part 3- how fit table and sort its data in JFrame?

How fit table  in frame in desktop Java application and sort data in it? I describe in this post step by step how do it. In ... ter clicked the Name column second time:You may either owing to call this method, drag and drop columns changing its places:

Using ROW NUMBER() function of Transact-SQL

ROW_NUMBER() in Transact-SQL returns sequential number of row in set of data from database, it returns bigint datatype as num ... ssEntityID JOIN [AdventureWorks2012].[Person].[Address] a ON bea.AddressID = a.AddressID You may show it in this screen.

Why use variables in LESS preprocessor?

LESS has very useful the feature: varaibles. Imagine that  you have the CSS file and would like to change values of properti ... the property for selector, you set name of the variable, defined above. Each definition of variable is separated by ‘;’ sign.

How work mixins with arguments in LESS?

Mixins allow to inherit of a group of properties  from one into another rule-set. You can use class for mixins or identifact ... roperty is use with new value. Notice, that you for rgb color can use expression adding new rgd color. Look at the result: