doraprojects.net

How add SQL Server 2012 driver to Netbeans 8?

Go to Services window in Netbeans. List Drivers node. If on the list it isn’t SQL JDBC driver you must download it. Go to h ... on. In Name field write Microsoft SQL Server 2012 and click the OK button. On the list of drivers you see SQL Server driver.

How install on windows PostgreSQL 9.6 with pgAdmin tool?

Below you can follow step by step installation process of PostgreSQL with pgAdmin tool. First you go to the https://www.post ... like to create new dataabse. In Database field write name of database. The diagram below show you nodes this new database.

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:  

How install SQL Server 2012 Express with Advanced Services on Windows 7?

I write step by step how install on Windows 7 Sql server 2012 Express. I download SQLEXPRADV_x86_ENU.exe file for my 32 bit ... In next window you may close it. In Start->All programms in Windows 7 You see tree of your SQL Server 2012 installation.

How create database and switch database in SQL Shell of PostgreSQL 9.6?

In last post I show how install and create first database of PostgreSQL in pgAdmin. In this section I show how connect to Pos ... can write command:\c or \connect with name of new database. Look at screen below. Click the Enter. You are in new database.  

Exception The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml in Tomcat and Netbeans

Today I move my Netbeans JEE Project from one computer to another. In Netbeans I run Clear and Build tool and then run appli ... rary button. On the list I see added library. I click the OK button. In last I Clear and Build project and run application.  

How set connection to PostgreSQL 9.6 database in Netbeans 8?

In Services tab right click the PostgreSQL node and choose Connect Using. You see New Connection Wizard. Change name of data ... shed. Expand this node. You see tables in mydb database. To close connection, right click on this node and choose Disconnect.

How install and configure Tomcat 8 on windows?

First You may go to http://tomcat.apache.org website. Click on Tomcat 8.0 link in Download section on the left the website. ... In browser write address: Http://localhost:9090 If you see this website: Stopping tomcat in console write shutdown.      

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.

How center vertically and horizontally element in CSS?

In Internet is a lot of information about centering  in CSS. But it is difficult find something about simple centering eleme ... n the middle website. Of course, you must know width and height your element and this element must have absolute position.  

Creating XML file in Java from array

In this post I describe you how creating XML file. XML will be contain data from array. Data will be present information abo ... rue);        Element rootElement = doc.createElement("employees");        doc.appendChild(rootElement);        for(int i=0; i

How add another tomcat server to Netbeans?

While installing Netbeans IDE it is install GlassFish server and Tomcat server if you customize it. But if you have only Gla ... n Server window You see in Connection tab your configuration data. Click the Close button and work with new  Tomcat 8 server.

How create HTML project in Netbeans having a connection to the LESS compilator for CSS file?

In this topic we create HTML project in Netbeans 8.2. This project will be use LESS compilator for CSS file. First select fr ... @mainColor ; } p { color: @pColor ; } Now in browser you see: The existing CSS file was changed after changed in LESS file.  

Configuration SQL Server 2012 for Netbeans

SQL Server 2012 has SQL Server Configuration Manager tool.  Choose from OS Start-> All programms->Microsoft SQL Server ... d choose Properties(Właściwości). In Protocol tab you must set Default Port as 1433 and Enabled as Yes. Click the OK button.

Partial view in Netbeans 7.4 application project in Zend 1.12

In this post I describe how create application project using partial view. Partial view is view to which  link  several anot ... l animals selected from animal table from database. And if You click on second link, You see groups with list of its animals.

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:

Database application in Zend Framework 1.12.3 in Netbeans 7.4 get data from several relational tables.

Let’s beginn Your work from create database magazine. In it create 3 tables: article,news, author.Author table contains colu ... ton.Choose Zend PHP Web Framework from list of frameworks and click on Finish button.You see Zend project in tree structure.

Create new database in SQL Server 2012

Right click the Database node and choose New Database. You see New Database window: In Database name field write test. Cl ... Write several names in name field. Id field will be added automatic. When you select data you all data from mytest table.  

Two ways for move war file from Netbeans to Tomcat 8.

In last post we create in Netbeans WebApp application(jsp website). But if you want to run this application in tomcat withou ... ager App in tomcat and deploy this application, in webapps folder in tomcat will be unpacked war archive as webapp catalogue.

Pagination in Zend Framework 1.12

One day, when I was creating application in Zend I came accross problem with display a lot of records from database. All the ... and so on. Some of them You send to the view. You may change either index.phtml view file. Paste its code for it: Trees