doraprojects.net

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.

Creating form in Zend Framework in Netbeans IDE

My another work in Zend Framework is forms. In this post I show You how creating form with several form elements. Begin with ... this file code: My form If You call only form variable for current object You see all form. Run application and see result:

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

In last post You create Zend project: magazine. Lets open in Your project application.ini file( application/configs folder). ... s action index controller. It’s name is authors. In layout.phtml file add code with links for authors and articles websites.

Connection to MySQL database from Zend framework 1.12.3 in Netbeans

First create in MySQL server country_db database with only one table country. I do it by means of phpMyAdmin. You write in e ... try continent                                                                                   Here You run Your project.

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.

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.    

Zend Framework 1.12.3, part 4 – more actions for controller

Today I decide to add several actions to my animals controller. I have describe action, so I add else two: sepia and whitebl ... its content. And paste into sepia.phtml and whiteblack.phtml. In sepia.phtml change content for it: My dog in sepia picture

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.

Configuration Netbeans 7.4 for Zend Framework 1.12.3

My favorite editor for programming is Netbeans.  I would like to create Zend framework projects. So after installing Netbean ... iguration for Zend, clicking on Zend tab. In this window You may change Your configuration for xampp, php or Zend framework.

Zend Framework 1.12.3, part 3 – adding layout to project

In last post You build application with your controller animals and actiondescribe. In this part we rebuild our application, ...      } And this new structure of application:In layout.phtml add new line after meta tag:Lets see result running application.

How resolve problem with don’t copy database files from server to paste them in the another folder

Recently I meet problem with copy database files from data folder in sql server and paste them in another folder in my PC. I ... er this action, You may start Your SQL Server. You right click the SQL Server MSSQLSERVER and from pop-up menu select Start.

IDENTITY – autoincrement of column in SQL Server

In SQL Server autoincrement of column You may achieve by IDENTITY. Frequently it is column with primary key. Through SQL Ser ... constraint 'PK__tab__3213E83F13A189C3'. Cannot insert duplicate key in object 'dbo.tab'. The duplicate key value is (12).  

Steps for install Enterprise SQL Server 2012

In this post I show how install Enterprise SQL Server 2012. Run exe file. Write your product key. Check box I accept if You ... our any controller name. Click Next button. Click Next button. Click Next button. Click Install button. Click Close button.

How create MySQL database contains 2 relational tables in phpMyAdmin?

First create in MySQL server database with animals name. We do it in phpMyAdmin. Click on Databases tab in phpMyAdmin. In Cr ... constraint name as fk_animal_classes and select cascade for on delete and for update. Save settings clicking on Save button.

Date and time datatypes in SQL Server 2012

SQL Server 2012  provides following date and time datatypes:date, time, datetime, datetime2, datetimeoffset, smalldatetime. ... it will be to enough another date and time datatype of less byte size. In this way the database will be take less disk size.

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.

Zend Framework 1.12.3, part 1 – First application

Today I do my first Zend application in PHP in Netbans IDE. I describe this how You may do it step by step. First open Netbe ... add public folder on the end path.You may click run icon in Netbeans. In this time You see website with Zend Project string.

CRUD Zend Framework application in Netbeans.

If You would like to create CRUD application first You must create database with tables. CRUD means: create read update dele ... urces.router.routes.create.defaultAction = "createform" And in index view add on the end of file link for adding new animal:

JNDI DataSource SQL Server used in Web Application created in Netbeans and GlassFish server

In this post I describe you how configuring JEE application to connect to SQL Server database through DataSource. In my last ... People It is new content index.jsp file: Run application.      

How create in SQL Server empty table based on existing table filled data?

In this topic I show You how create table of the same structure as table in your database but empty. It is very simple. You ... [Person].[Person]; If You use SELECT query You see empty new table.  SELECT * FROM [AdventureWorks2012].[Person].[NewPerson]