doraprojects.net

Using:extend pseudo-class with one parameter in LESS file

LESS preprocessor delivers you extend that extend rules in CSS classes. Look at the HTML file: Let’s see less file: .mainPro ... ins. Which of them use? If you have to use any parameter, the good choice is  mixins, otherwise the better choice is :extend.

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.    

How use the value from second variable which the value is stored in other variable?

Sometime you would like get value from one variable, which name is stored in other variable. How do it? Look at the example ... My favorite animals Pets Dogs Hamsters And others animals It returns the website:

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.

How install DBDesigner on Windows OS?

Go to  http://fabforce.eu/dbdesigner4/  download open source tool for modelling and design databases. Download DBDesigner4.0. ... n to start installation process. Click the Finish button to end this process. It is how lokks like the icon this application:

Collation of database and names of tables in SQL Server 2012 in diffrent statement

This post show how work creating and inserting, selecting data from tables with the same name of table but with diffrent size ... data using T name of table: select id from T; So only creating table name with lower or upper letter is treat as the same.

Installation of Python 3.6.4 and Pyzo IDE

Installation files you find for latest version of Python from the website:https://www.python.org/downloads/windows/ There ar ... reter for Python. Click the Done button. After click refresh link in Shells section in Pyzo IDE you see shell ready to work:

Training Java – part 3 – conversion byte, short, int and long types

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:

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.

Scanner and PrintWriter in Java

First create in Netbeans IDE project of ScannerAppFile name. In last post I describe how create project in Java. In next ste ... r: and for_write.txt fle will be empty. In this situation only need to delete empty lines in this file and application go on.

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.  

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.

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.

Substring function in SQL Server 2012

T-SQL provides functions which operate on strings. One of this functions is SUBSTRING. This function returns new substring, g ... dabra' as stringname, SUBSTRING('abracadabra',0,0) as substringname ; The function don’t returned char from string.

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.

Add connection in Netbeans 8 to the SQL Server 2012 database.

If you have added driver for SQL Server 2012, You may set connection to test database. So go to Services window and right cl ... y public and sysadmin: In User Mapping tab for test database it is choose only db_owner and public role. It is Status tab:  

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:

How create table in pgAdmin tool for PostgreSQL 9.6?

In this topic I show how in pgAdmin create simple table. Begin with open pgAdmin. Expand on the left Database node with your ... other column in table. Click the Save button. You can see in your database department table with two fields: id and name.  

How install Zend Framework 1.12.3 in Xampp server 1.8.3?

In my last post I write about xampp installation. Here You try install Zend Framework 1.12.3. So go to http://framework.zend ... ibrary; C:\xampp\php\Zend1\bin; Click OK in all open windows. In another posts I configure and test xampp and Zend Framework.

First project in JSF in Netbeans

In Netbeans you may create in simple way your Java Server Faces project. First create project. Choose form menu File->New ... displays by browser: If you find out to write simple JavaServer Faces application in Netbeans IDE is very simple and easy.