|
The
following are the main Web Development programming languages:
JScript :-
JScript is a computer programming language created by Microsoft and is a
superset of the ECMAScript programming language, which is known most
commonly as "JavaScript."
JScript is implemented as a Windows Script engine. This means that it
can be "plugged in" to any application that supports Windows Script,
such as Internet Explorer, Active Server Pages, and Windows Script Host.
It also means that any application supporting Windows Script can use
multiple languages — JScript, VBScript, Perl, and others. JScript was
first supported in Internet Explorer browser 3.0 released in August
1996. As with any other Active Scripting engine, it is available through
Internet Explorer, Windows Script Host, and Active Server Pages. The
typical file extension of JScript source code files is .js.
The most recent version of JScript is JScript .NET, which is based on
the yet-unfinished version 4 of the ECMAScript standard, and can be
compiled for the Microsoft .NET platform. JScript adds several new
features to ECMAScript, such as optional static type annotations.
In addition to other internal implementation differences, JScript uses
non-generational mark-and-sweep garbage collection[1] whereas JavaScript
(the original implementation of which is the SpiderMonkey engine) uses a
generational mark-and-sweep system.
JScript can be used for both simple tasks (such as mouseovers on Web
pages) and for more complex tasks (such as updating a database with ASP
or running logon scripts for Windows NT ). Windows Script relies on
external "object models" to carry out much of its work. For example,
Internet Explorer's DOM provides objects such as 'document' and methods
such as 'write()' to enable the scripting of Web pages.
Asp
:-
Active Server Pages (ASP) is Microsoft's server-side script engine for
dynamically-generated web pages. It is marketed as an add-on to Internet
Information Services (IIS). Programming ASP websites is made easier by
various built-in objects. Each object corresponds to a group of
frequently-used functionality useful for creating dynamic web pages. In
ASP 2.0 there are six such built-in objects: Application, ASPError,
Request, Response, Server, and Session. Session, for example, is a
cookie-based session object that maintains variables from page to page.
Most ASP pages are written in VBScript, but any other Active Scripting
engine can be selected instead by using the @Language directive or the
<script language="language" runat="server"> syntax. JScript (Microsoft's
implementation of ECMAScript) is the other language that is usually
available. PerlScript (a derivative of Perl) and others are available as
third-party installable Active Scripting engines.
InstantASP and ChiliASP are technologies that run ASP without Windows
Operating System. There are large open source communities on the WWW,
such as ASPNuke, which produce ASP scripts, components and applications
to be used for free under certain license terms.
Php
:-
PHP is a reflective
programming language originally designed for producing dynamic web
pages.[1] PHP is used mainly in server-side scripting, but can be used
from a command line interface or in standalone graphical applications.
Textual User Interfaces can also be created using ncurses.
The main implementation is produced by The PHP Group and released under
the PHP License. It is considered to be free software by the Free
Software Foundation[2]. This implementation serves to define a de facto
standard for PHP, as there is no formal specification.
Currently, two major versions of PHP are being actively developed: 5.x
and 4.4.x
XML
:-
The Extensible Markup Language (XML) is a general-purpose markup
language.[1] It is classified as an extensible language because it
allows its users to define their own tags. Its primary purpose is to
facilitate the sharing of data across different information systems,
particularly via the Internet.[2]
It is a simplified subset of the Standard Generalized Markup Language
(SGML), and is designed to be relatively human-legible. By adding
semantic constraints, application languages can be implemented in XML.
These include XHTML,[3] RSS, MathML, GraphML, Scalable Vector Graphics,
MusicXML, and thousands of others. Moreover, XML is sometimes used as
the specification language for such application languages.
XML is recommended by the World Wide Web Consortium. It is a fee-free
open standard. The W3C recommendation specifies both the lexical
grammar, and the requirements for parsing.
JSP
:-
JavaServer Pages (JSP) is a Java technology that allows software
developers to dynamically generate HTML, XML or other types of documents
in response to a Web client request. The technology allows Java code and
certain pre-defined actions to be embedded into static content.
The JSP syntax adds additional XML-like tags, called JSP actions, to be
used to invoke built-in functionality. Additionally, the technology
allows for the creation of JSP tag libraries that act as extensions to
the standard HTML or XML tags. Tag libraries provide a platform
independent way of extending the capabilities of a Web server.
JSPs are compiled into Java Servlets by a JSP compiler. A JSP compiler
may generate a servlet in Java code that is then compiled by the Java
compiler, or it may generate byte code for the servlet directly.
Servlet
:-
The
Java Servlet API allows a software developer to add dynamic content to a
Web server using the Java platform. The generated content is commonly
HTML, but may be other data such as XML. Servlets are the Java
counterpart to non-Java dynamic Web content technologies such as PHP,
CGI and ASP.NET. Servlets can maintain state across many server
transactions by using HTTP cookies, session variables or URL rewriting.
The Servlet
API, contained in the Java package hierarchy javax.servlet, defines the
expected interactions of a Web container and a servlet. A Web container
is essentially the component of a Web server that interacts with the
servlets. The Web container is responsible for managing the lifecycle of
servlets, mapping a URL to a particular servlet and ensuring that the
URL requester has the correct access rights.
A Servlet is an object that receives a request and generates a response
based on that request. The basic servlet package defines Java objects to
represent servlet requests and responses, as well as objects to reflect
the servlet's configuration parameters and execution environment. The
package javax.servlet.http defines HTTP-specific subclasses of the
generic servlet elements, including session management objects that
track multiple requests and responses between the Web server and a
client. Servlets may be packaged in a WAR file as a Web application.
Servlets can be generated automatically by JavaServer Pages (JSP), or
alternately by template engines such as WebMacro. Often servlets are
used in conjunction with JSPs in a pattern called "Model 2", which is a
flavor of the model-view-controller pattern.
Software
Development :-
The
following are the main software programming languages used at KolWeb for
software development. Software development is also known as 'Desktop
Programming Languages', thereby distinguishing the it from 'Web
Development Languages.
C
:-
C is a
general-purpose, block structured, procedural, imperative computer
programming language developed in 1972 by Dennis Ritchie at the Bell
Telephone Laboratories for use with the Unix operating system. It has
since spread to many other platforms. Although predominantly used for
system software, C is also widely used for applications. C has also
greatly influenced many other popular languages, especially C++, which
was designed as an enhancement to C.
C++
:-
C++
(pronounced "see plus plus") is a general-purpose programming language
with high-level and low-level capabilities. It is a statically typed,
free-form, multi-paradigm, usually compiled language supporting
procedural programming, data abstraction, object-oriented programming,
and generic programming. Since the 1990s, C++ has been one of the most
popular commercial programming languages.[citation needed]
C++ is regarded as a mid-level language. This indicates that C++
comprises a combination of both high-level and low-level language
features.[1]
Bjarne Stroustrup developed C++ in 1979 at Bell Labs as an enhancement
to the C programming language and named it "C with Classes". In 1983 it
was renamed to C++. Enhancements started with the addition of classes,
followed by, among other features, virtual functions, operator
overloading, multiple inheritance, templates, and exception handling.
The C++ programming language standard was ratified in 1998 as ISO/IEC
14882:1998, the current version of which is the 2003 version, ISO/IEC
14882:2003. A new version of the standard (known informally as C++0x) is
being developed.
Java
Swing :-
Java Swing is a GUI toolkit for Java. It is one part of the Java
Foundation Classes (JFC). Swing includes graphical user interface (GUI)
widgets such as text boxes, buttons, split-panes, and tables.
Swing widgets provide more sophisticated GUI components than the earlier
Abstract Window Toolkit. Since they are written in pure Java, they run
the same on all platforms, unlike the AWT which is tied to the
underlying platform's windowing system. Swing supports pluggable look
and feel – not by using the native platform's facilities, but by roughly
emulating them. This means you can get any supported look and feel on
any platform. The disadvantage of lightweight components is slower
execution. The advantage is uniform behavior on all platforms.
VB.Net :-
Visual Basic .NET (VB.NET) is an object-oriented computer language that
can be viewed as an evolution of Microsoft's Visual Basic (VB)
implemented on the Microsoft .NET framework. Its introduction has been
controversial, as significant changes were made that broke backward
compatibility with VB and caused a rift within the developer community.
The great majority of VB.NET developers use Visual Studio .NET as their
integrated development environment (IDE). SharpDevelop provides an
open-source alternative IDE. Like all .NET languages, programs written
in VB.NET require the .NET framework to execute.
Title Description
Free Books on Microsoft Dot Net, Windsor, Ontario Links: - to free books on C sharp , ASP.NET , VB.NET and other dot net stuff. also contains books on topics like ADO.NET , Dot NET Framework and Visual Studio.
Cisco Networking and Certifications, London, Ontario
:Cisco is a company recognized around the world for its network equipment and training / certification programs. Cisco networking technology includes routers, switches and VPN systems.
Using Java DB in Web & Desktop Applications, Southwestern, Ontario:- Sun Microsystems recently announced that it is distributing and supporting Java DB based on the 100 percent Java technology, open-source Apache Derby database for affordable website and desktop application designing
Updated Access 2003 templates, Tecumseh, Ontario Make the process of entering data easier by using data-entry forms, switchboards, and dialog boxes.
An Overview of Visual Basic 2005,Essex County Get on overview of the new features in Visual Basic 2005 including, My Visual Basic, IntelliSense, Edit and Continue, AutoCorrect, Just My Code, Windows Forms enhancements, and more.
Overview of CORBA, London, Ontario The Common Object Request Broker Architecture (CORBA) [OMG:95a] is an emerging open distributed object computing infrastructure for affordable website designs being standardized by the Object Management Group (OMG).
MSDN Library Table of Contents, Sarnia, Ontario The Search box is found in the upper left corner of the table of contents TOC navigation pane. Enter a search term here, select from the search scoping options all of MSDN Online
Web Development and J2EE, Delhi, India Java EE includes several API specifications, such as JDBC, RMI, e-mail, JMS, web services for affordable website design, XML, etc, and defines how to coordinate them
Free J2EE Tutorials, Madras, India The J2EE 1.4 Tutorial is a web site development and wesite designs guide to develop affordable enterprise applications for the Java 2 Platform. You can easily design website using J2EE 1.4
Java technical library view, Chatham, Ontario This tutorial,describes how to create a touchpoint that maps instrumented notifications into their touchpoint equivalent.
EJB Tutorials, Windsor, Ontario EJB message beans are used to process message received through JMS. The message-driven bean server processes messages as they become available.
Building a Simple EJB Application A Tutorial ,India In this tutorial we will create a simple session EJB and a client web application using eclipse IDE along with Lomboz plug in and XDoclet
CORBA BASICS, Tecumseh, Ontario CORBA is the acronym for Common Object Request Broker Architecture, OMG's open, vendor-independent architecture and infrastructure that computer applications use to work together over networks
RMI Tutorial, Calcutta This tutorial attempts to show the essence of RMI, without discussing any extraneous features
Introduction to Java RMI, southwestern, Ontario Java RMI provides a very easy solution! Since RMI can dynamically load new classes, Developer B can let RMI handle updates automatically for him.
Implementing the Intercepting Filter Pattern in Your Enterprise Java Applications, Kolkata, India Discover how this presentation tier pattern can simplify affordable Web application development, maintenance, and reusability, as well as promote logic separation.
Java Beans and Web Site Design, India The Java Developer ConnectionSM (JDC) presents a Short Course on the JavaBeansTM API written by JavaTM Software licensee, the MageLang Institute.
Affordable Website Development Using Java Beans, Kolkat, India Enterprise Java Beans are vaguely similar to Java Beans. They are intended to be reusable components which are used within a larger application.
Swing A Quick Tutorial for AWT Programmers , Essex County Swing" refers to the new library of GUI controls buttons, sliders, checkboxes, etc. that replaces the somewhat weak and inflexible AWT controls
An Introduction to Oracle: Tutorial Series, Windsor, Ontario SQL*Plus schemata data types DML & DDL examples editing commands using external files the dual pseudo table introduction to transactions optional exercise references
Java Tutorials and Online Training for Designing Web Site , Bombay Learn the various Java technologies from the fundamentals of the Java programming language to web services and the J2EE platform through a variety of online tutorials and training classes.
Inside the Java Virtual Machine, Miami Inside the Java Virtual Machine describes the Java virtual machine, the abstract computer on which all Java programs run, and several Java APIs closely related to the virtual machine.
JVM Tutorial, Chatham, Ontario JVM Java Virtual Machine is a piece of software, a virtual processor, by which Java programs are run.
Visual Basic .NET , Sarnia, Ontario Visual Basic .NET, the next generation of Visual Basic, is designed to be the easiest and most productive tool for creating .NET applications, including Windows applications, Web Services, and Web applications.
Adobe Illustrator, Southwestern, Ontario Adobe Illustrator CS2 software gives you new creative freedom that lets you realize your ideas quickly and powerfully. Instantly convert bitmaps to vector artwork and paint more intuitively.
Oracle/PLSQL Topics, London, Ontario PLSQL stands for Procedural Language extensions to SQL, and can be used in Oracle databases. PLSQL is closely integrated into the SQL language, yet it adds programming constructs that are not native to SQL.
PL/SQL, Montreal This is of limited use for writing programs, where you must create a body of code that is going to vary its behavior according to the data and to user or other input.
Java Script, Tecumseh, Ontario JavaScript 1.5 Beta released, see the JavaScript 1.5 announcement for more information.
Java Script Tutorial, Kolkata, Kolkatta JavaScript is the scripting language of the Web.JavaScript is used in millions of Web pages to improve the design, validate forms, detect browsers, create cookies, and much more.
VBScript Tutorial, Windsor, Ontario In our VBScript tutorial you will learn how to write VBScript, and how to insert these scripts into your HTML files to make your web pages more dynamic and interactive.
VB Script, Essex County VBScript is an interpreted script language from Microsoft that is a subset of its Visual Basic programming language designed for interpretation by Web browsers.
Visual Interdev, Beluchistan The context for Visual InterDev will be set, and you'll be introduce to some of the latest developments concerning the Internet and the WWW. You will learn about the importance of the Internet
Web Site Development Process, India Like the traditional software development, the process of web site development can also be divided into different life cycle steps.The steps may vary from application to application.
Website Outsourcing India, London BPO - Business process Outsourcing or Offshore Outsourcing Job is the practice of contracting with individuals or companies in foreign countries to perform work that might reasonably be conducted domestically at affordable rate (e.g. Website outsourcing, SEO outsourcing)
Offshore outsourcing - Web, London Offshore outsourcing is the practice of contracting with individuals or companies in foreign countries to perform work that might reasonably be conducted domestically
PHP MySQL Tutorial, Chatham, Ontario Soon you will know just how easy it is to build dynamic web pages using PHP and MySQL. Really, PHP and MySQL is easy to learn, and I hope this tutorial will help you realise that.
PHP MySQL Tutorial, Houston Soon you will know just how easy it is to build dynamic web pages using PHP and MySQL. Really, PHP and MySQL is easy to learn, and I hope this tutorial will help you realise that.
What is Java Software, New York Java Software allows you to play online games,chat with people around the world, calculate your mortgage interest, and view images in 3D.
What is Java Software?, New York Java Software allows you to play online games,chat with people around the world, calculate your mortgage interest, and view images in 3D.
MSDN library , Windsor, Ontario Microsoft has created an amazingly well designed MSDN in includes a full class library containing information and examples on every class, function, method, and property accessible through ASP.NET.
MSDN library, London, Ontario Microsoft has created an amazingly well designed MSDN, it includes a full class library containing information and examples on every class, function, method, and property accessible through ASP.NET.
Importance of web development in India for Accessibility, India Proper website development must be done by your web development company in India for accessibility for disabled people of all kinds. What follows is an explanation of various types of disabilities.
Importance of web development in India for Accessibility, India Proper web development must be done by your web development company in India for accessibility for disabled people of all kinds. What follows is an explanation of various types of disabilities
Key to Achieve Best Web Development, Sarnia, Ontario From early days of affordable website, the Internet sites that are added day by day are increasing tremendously.
Key to Achieve Best Web Development, Southwestern, Ontario From early days of www, the Internet sites that are added day by day are increasing tremendously.
The Principles of Design, Tecumseh, Ontario This column is about Website design really, it is though it may at times seem a bit distant and distracted. In my opinion, any good discussion about design begins with the fundamentals
MySQL Tutorial, Chicago This chapter provides a tutorial introduction to MySQL by showing how to use the mysql website client program to create and use a simple database
MySQL Tutorial, Chicago This chapter provides a tutorial introduction to MySQL by showing how to use the mysql client program to create and use a simple database
Visual InterDev 6.0 Tutorial, Essex County This guided tour will provide you with step-by-step instructions for website designing and reviewing three of the primary new features of Visual InterDev 6.0 development system
Illustrator Tutorials, USA Adobe Illustrator is the industry standard drawing program. A firm grasp of Illustrator is a prerequisite for most any job in graphic arts.
VB Index, Sri Lanka Here you will find all the source code including the vbAccelerator controls and libraries, longer articles etc in VB, short VB code tips, VB Utilities, useful type libraries and information on installing and using the VB code on the site.
Visual Basic 2005 Programmer's Reference For Software Developers, Windsor, Ontario Visual Basic 2005 adds new features to Visual Basic (VB) that make it a more powerful programming language than ever before.
Oracle Technology Overview, Calcutta Enterprises in every industry are gathering and managing more information than ever. Oracle technology helps your organization consolidate, manage, use, share, and protect that business information with reliability and security at a low cost.
Download Oracle Application Express 2.2, Sarnia, Ontario Oracle Application Express 2.2 (formerly HTML DB) contains several new features including a new Item Finder, the ability to create packaged applications, and component-level export. Download it today.
Oracle Database, London, Ontario Oracle Database 10g runs on all industry-standard platforms and moves from a single instance to Grid Computing without changing a single line of code.
|
Affordable Java Development Tools for Software Developer
company, Chennai, India
The JDT project
for affordable Software developers and programmers to the
software development company on provides the tool plug-ins that
implement a Java IDE supporting the development of any Java
programming application. It adds a Java project nature and Java
perspective to the Eclipse Workbench or several companies for
programming. |
|
Java (affordable software programming language, Kolkatta,Salt
Lake
Java
is an affordable object-oriented software development
programming language for a company. Unlike conventional software
development languages which are generally either designed to be
compiled to machine code, Java is intended to be compiled to a
bytecode which is then run by a Java virtual machine which helps
the affordable software developers a lot of companies |
|
About Java
software programming, Kolkata, India
Java Platform,
Enterprise Edition is the Most effective affordable Software
Development company(Java EE, formerly known as J2EE)for software
developers, is a standard architecture to Development of
software and define and support a multitiered programming model
where thin-client applications invoke business logic that
executes on an software development application server and
companies for programmers.
|
|
Affordable Java Technology software
development Company for programmers, Kolkatta, India
Using Java EE
platform tools and technologies to build affordable software
development company and development applications gives your
application access to the entire Java EE platform stack,
including new companies and updated affordable Software
development companies services and database access technologies
for the software developers and Programmers. |
|
Welcome to affordable JavaWorld.com
for software programming, Kolkata, India
Full-screen
exclusive mode offers high-performance graphics for development
companies of the software devolopers, Software
development,programmers ,screensavers, and other application
types of programming that render their output to the entire
screen to the company. |
|
Know about affordable Java software
development company for programmers, Kolkata
Focus on the
user, and all else will follow the development Companies."That's
one of the principles behind every product Google developers and
programmers, and we're looking for a UI designer to help us do
just that with our new products and features of the Company for
programming. |
|
Java Technology for software
programming and for programmers, Kolkata, India
Using Java EE
platform tools our company and technologies to build
Ajax-enabled applications gives your application access to the
entire Java EE platform including new and development of java
and updated software services and database access technologies
for several companies and programmers.
|
|
Welcome to JavaWorld.com for
affordable websites Development Companies, Delhi, India
This Java Fun
and Games installment reveals Java's support to our company for
full-screen exclusive mode by presenting an application that
animates underwater sea life over the whole screen for our
companies and an animation engine that handles animation and
full-screen exclusive-mode details on behalf of the affordable
application and development of the companies. |
Java:
|
Affordable Java Development
Tools for Software Developer company, Chennai, India
The JDT project for
affordable Software developers and programmers to the
software development company on provides the tool
plug-ins that implement a Java IDE supporting the
development of any Java programming application. It adds
a Java project nature and Java perspective to the
Eclipse Workbench or several companies for programming. |
|
Java (affordable software
programming language, Kolkatta,Salt Lake
Java is
an affordable object-oriented software development
programming language for a company. Unlike conventional
software development languages which are generally
either designed to be compiled to machine code, Java is
intended to be compiled to a bytecode which is then run
by a Java virtual machine which helps the affordable
software developers a lot of companies.
|
|
About Java software
programming, Kolkata, India
Java Platform, Enterprise
Edition is the Most effective affordable Software
Development company(Java EE, formerly known as J2EE)for
software developers, is a standard architecture to
Development of software and define and support a
multitiered programming model where thin-client
applications invoke business logic that executes on an
software development application server and companies
for programmers.
|
|
Affordable Java Technology
software development Company for programmers, Kolkatta,
India
Using
Java EE platform tools and technologies to build
affordable software development company and development
applications gives your application access to the entire
Java EE platform stack, including new companies and
updated affordable Software development companies
services and database access technologies for the
software developers and Programmers |
|
Welcome to affordable
JavaWorld.com for software programming, Kolkata, India
Full-screen exclusive mode offers high-performance
graphics for development companies of the software
devolopers, Software development,programmers
,screensavers, and other application types of
programming that render their output to the entire
screen to the company. |
|
Know about affordable Java
software development company for programmers, Kolkata
"Focus
on the user, and all else will follow the development
Companies."That's one of the principles behind every
product Google developers and programmers, and we're
looking for a UI designer to help us do just that with
our new products and features of the Company for
programming. |
|
Java Technology for
software programming and for programmers, Kolkata, India
Using
Java EE platform tools our company and technologies to
build Ajax-enabled applications gives your application
access to the entire Java EE platform including new and
development of java and updated software services and
database access technologies for several companies and
programmers. |
|
Welcome to JavaWorld.com
for affordable websites Development Companies, Delhi,
India
This
Java Fun and Games installment reveals Java's support to
our company for full-screen exclusive mode by presenting
an application that animates underwater sea life over
the whole screen for our companies and an animation
engine that handles animation and full-screen
exclusive-mode details on behalf of the affordable
application and development of the companies.
|
|
User Interface Designer and
development, Kolkata, India
Focus on the user
development kit, and all else will follow." That's one
of the principles behind every product Google
developers, and we're looking for a UI designer to help
us do just that with our new products and features.
|
|
Java (programming
language), Ahmedabad, India
Portability is a technically difficult goal to achieve,
and Java's success at that goal ... One idea behind
Java's automatic memory management model is java's
development |
|
J2EE:
|
Online Affordable J2EE the
Software Programming Tutorials for Software Companies ,
India , Calcutta
Excellent tutorials on creating software applications
using J2EE. Affordable J2EE Tutorials for the software
programmers for a company. Great J2EE resources page
from the authority companies websites Java.Sun.com |
|
Affordable J2EE Learning
Guide for software development for the companies,
Hydrabad, India
This
guide presents affordable J2EE articles, tutorials,
examples, tips, tools, white papers. J2EE Articles J2EE
Tutorials J2EE White Papers and Book Excerpts for the
software company |
|
Affordable J2EE Tutorial
for a software company- Introduction, Bangalore, India
Affordable J2EE Tutorial -
Introduction. This tutorial is a conceptual presentation
of what & why of J2EE is usefull for the software
companies. It is better for aspiring Affordable software
Java professionals to be Very Professionals in J2EE.
|
|
Affordable J2EE Tutorial |
J2EE vs .NET software Application Development for the
companies, Calcutta, India
Leverage your existing development knowledge to ease the
way to open-standards-based programming. This high-level
guide for affordable software developers of the company
can help you migrate e-business applications to J2EE or
build J2EE applications from the ground up, so you can
see the differences of J2EE vs .NET application
development in the several companies.
|
|
Affordable J2EE Tutorial
for the software company, West Bengal, India
This
Affordable tutorial will demonstrate how to deploy Kodo-based
J2EE applications in the companies. Prerequisites for
the Kodo J2EE Tutorial. This tutorial assumes that you
have a affordable software programmers for a software
company. |
|
Affordable Computer Books
and Ebooks - J2EE software programming for software
companies, Calcutta, India
ffordable Books and Tutorials on .Net for several
software companies- This site contains links to several
Free books .from Building J2EE software Applications
with the Rational Unified Process for a company . |
|
The J2EE Tutorial, Second Edition: Books: Help for the
software company , Salt Lake, Kolkata
Join
Amazon Prime and ship Two-Day for free and Overnight for
$3.99. The J2EE Tutorial is the companies guide for
software developers, from Sun Microsystems, to using
J2EE . |
|
Best Study Guides For company, SUN Java J2EE
Certification Exams, Hyderabad
SUN
Java J2EE Certification, Exam , SUN Java J2EE
Certification.SUN Java J2EE Certification free tutorial,
SUN Java J2EE Certification free tutorials for the
companies employee.
|
|
Java software Programming
FAQs and Tutorials: Learning Java, USA
Free
on-line Java course from IBM. Learning Java on-line.
J2EE Tutorial from Sun. Covers many different
J2EE-related technologies.
|
|
J2EE Guides 1.0 - Free
Download J2EE Guides , United Kingdom
Download J2EE Guides 1.0 for free - Learn how to use
J2EE with Tomcat, Eclipse, Home / Software Developer /
Reference and Tutorial / Free Download: J2EE
|
|
History of MySql, India
C# Corner- C-Sharp C#.NET
CSharp VB.NET ASP.NET Visual Studio .NET, Kolkata, Salt
Lake, India
C# is
called Java on steroids, and everyone agrees that it is
based on some long-time Java ideas and concepts. But,
there are differences, and some of them make C# very
powerful compared to Java |
|
Visual C# software
Developer Center, Bangalore, India
Microsoft's official
product homepagefor C#. Includes product information and
resources for developers.Community Convergence provides
C# software developers and managers with updates on
events in the C# community. |
|
C Sharp - Wikipedia, the
free encyclopedia , Hydrabad, India
C Sharp
- Wikipedia, the free encyclopedia |
|
C# / C Sharp examples
(example source code) Organized by topic , USA
C# / C
Sharp examples (example source code) Organized by topic.
C Sharp is Microsoft Product. |
|
Microsoft Visual C# and
Visual C Sharp training in the UK, London
Visual
C#, C Sharp, C, C++ training, UK. ... You can see a list
of all the Visual C# C Sharp training courses that we
offer by scrolling down the page |
|
C# Tutorials, .NET
Tutorials, C-Sharp, C Sharp tutorials , UK
C#
(C-Sharp) Tutorials. Welcome to Tutorials section of C#
Corner. In this section, you will find various source
code samples, articles, tutorials |
|
C Sharp Tutorials,
Calcutta, India
C Sharp
Tutorials, Free, Online, Help, Books, C++ Programming
Tutorials and Examples of the C, C# (Sharp) C++ and
Programming Language, Beginner |
|
C# C Sharp and Tutorials on
C# Friends.com, Hydrabad, India
Tutorial Resource - Be sure to browse through the list
of tutorials at c-sharpcorner. C# Team's C# FAQ - The C#
team posts answers to common questions |
|
C# Help, C# Tutorials, C#
Programming, C# Tips, C# Tricks, C# Methods, Delhi,
India
C#
Help, C# Tutorials, C# Programming, C# Tips, C# Tricks,
C# Methods. ... arrow C Sharp. ASP Free, ASP Free
Forums, Search Network. |
|
Free C-Sharp (C#) -
freeprogrammingresources.com, Bangalore, India
Free
C-Sharp (C#). Technology Point This site offers free
online C# tutorials as well as other .net information
and examples. Dr.Bob's C# Visions |
|
C/C++ Tutorials & C#
Tutorials - justPhukit.com, India , Calcutta
an
introduction to C# and the benefits it has to offer
developers. In this article Vitali takes the standard
C++ list control and modifies it to extend its
functionality.In this article we will understand some of
the concepts of object-oriented programming in C# like
objects and classes. To read this article you must have
C# programming basics. |
|
C# (C sharp) Training
Classes and Programs, Bangalore, India
Need to
develop C# applications for the Microsoft .NET Platform.
The course focuses on C# program structure, language
syntax, and implementation details. C# was created to be
the programming language best suited for writing
enterprise applications for .NET. C# combines the high
productivity of Microsoft Visual Basic with the raw
power of C++. |
|
DevASP.Net
C-Sharp Knowledge Base Articles, Samples and Tutorials ,
Hydrabad, India
NET,
C#, XML and SQL resources, articles, samples, tutorials,
scripts, applications and sample chapters . Listings for
About C-Sharp About C-Sharp (2) |
|
C Sharp - Hello C
Tutorials, Dehli, India
C Sharp
Hello C Tutorials, Free, Online, Help, Books, C++
Programming Tutorials and Examples of the C, C# (Sharp)
C++ and Programming Language, Beginner
|
|
C # (C Sharp)- Results By
Free Computer Training Search , Calcutta, India
C#
Tutorials, .NET Tutorials, C-Sharp, C Sharp tutorials
Welcome Guest C# . NET Windows Longhorn SQL Server Yukon
C# (C-Sharp) Tutorials |
Resource Center:
|
Tutorials DB2
Online, Salt Lake, India
DB2 9 for Linux, UNIX, and Windows includes
a new dictionary-based row compression
feature. When you compress data, you achieve
disk storage space savings by representing
the same data using fewer database pages.
|
|
DB2 Online
Tutorials, USA
It is an interesting part to discuss how to
save request results to a DB2 database, plus
take some of the load off of those external
services and improve performance
dramatically.
|
|
Online DB2
Tutorials, Canada
All SDSC Compute Resources (DataStar,
BlueGene, and the IA-64 TeraGrid cluster)
are part of the TeraGrid. The Common
TeraGrid Software Stack (CTSS) now includes
DB2 client software to allow users to access
DB2 databases. |
|
Tutorials
Online DB2, UK
The main
reasons to use a database interactively is
to quickly retrieve small pieces of
information from it, or to test/prototype
SQL queries to be included in a program or
web interface. It is necessary to have an
account on a machine that has a DB2
instance. At SDSC, the ds003 login-node on
DataStar maintains the DB2 instance.
|
|
Online Learning
DB2, Kolkata, Calcutta
FOREIGN KEY refers to the primary key of
another table. Through this key we can
establish a relation between two tables. If
table B foreign key refers table A's primary
key, DB2 / ORACLE wont allow to enter the
records into table B if the foreign key
value in the input data is not present in
the table A's primary key list of values |
|
|
Java Programmers India, Delhi, India
Java is an object-oriented programming
language produced initially by James Gosling
and colleagues at Sun Microsystems. The
language, initially called Oak (named after
the oak trees outside Gosling's office), was
intended to replace C++, although the
feature set better resembles that of
Objective C. |
|
C Programmers India, Salt Lake, Kolkata,
India
The C programming language is a standardized
programming language developed in the early
1970s by Ken Thompson and Dennis Ritchie for
use on the UNIX operating system. It has
since spread to many other operating
systems, and is one of the most widely used
programming languages. C is prized for its
efficiency.
|
|
India Visual Basic Programming, Noida, India
The My namespace in Visual Basic 2005
provides a quick and easy method for
accessing some of the deeper areas of
functionality in the .NET Framework without
preventing you from using the Framework
directly in any way you choose. |
|
My SQL Database Programmers India, Gurgaon,
India
MySQL is most commonly used for Web
applications and for embedded applications
and has become a popular alternative to
proprietary database systems because of its
speed and reliability. MySQL can run on
UNIX, Windows and Mac OS. |
|
C++ Programming India, New Jersey, USA
A high-level programming language created by
Bjarne Stroustrup at Bell Labs. C++ adds
object-oriented features to its predecessor,
C. C++ is one of the most popular
programming language for graphical
applications, such as those that run in
Windows and Macintosh environments |
|
VB.net Programming India, Kolkata, India
Defining and storing the MySQL Connection
String properly is an important application
setting task for developers today. MySQL
Connection String is setup and secured for
Windows application using VB.NET 2005.
|
|
Visual Basic Programmers India,Michigan, USA
Visual Basic (VB) is an event driven
programming language and associated working
environment from Microsoft for its COM
programming model. VB has been replaced by
Visual Basic .NET.
|
|
India C# Programmers , Bangalore, India
C# (see section on naming, pronunciation) is
an object-oriented programming language
created by Microsoft as part of their .NET
initiative, and later approved as a standard
by ECMA and ISO
|
|
J2EE Programming India , Los Angeles, USA
Java Platform, Enterprise Edition or Java EE
(formerly known as Java 2 Platform,
Enterprise Edition or J2EE until the name
was changed to Java EE in version 1.5), is a
programming platform—part of the Java
Platform—for running distributed multitier
architecture Java applications, based
largely on modular components running on an
application server
|
|
Oracle (in ancient Greece, someone in touch
with the deities; from Latin, oraculum or
divine announcement) says it is the world's
leading supplier of system for information
management but it is best known for its
sophisticated relational database products.
|
|
Resource Center:
|
India Oracle Programming, Delhi, India
Oracle introduced the first Relational
Database Management system based on the IBM
System/R model and the first DBMS using
IBM’s Structured Query Language (SQL)
technology. In addition to its well-known
10g database, Oracle offers software for
managing, sharing and protecting data and
information. |
|
ASP.net Programmers India, Salt Lake,
Kolkata, India
Microsoft ASP.NET is a free technology that
allows programmers to create dynamic web
applications. ASP.NET can be used to create
anything from small, personal websites
through to large, enterprise-class web
applications.
|
|
India Active Server Pages, Noida, India
Programmers of Active Server Pages often
reinvent the wheel. Their background in web
design, with its separate HTML page for each
viewable web page on a site, leads many ASP
developers to create a distinct ASP page
each |
|
Java Script India, Gurgaon, India
cript is the scripting language of the Web.
It is used in millions of Web pages to
improve the design, validate forms, detect
browsers, create cookies, and much more.
JavaScript is the most popular scripting
language on the internet. |
|
ASP Programmers India, New Jersey, USA
Answer Set Programming (ASP) is a novel
programming paradigm, which allows to solve
problems in a simple and highly declarative
way. The language of ASP, function-free
disjunctive logic programming, is very
expressive, and allows to represent even
problems of high complexity |
|
India PHP Programming, Kolkata, India
PHP continues to grow in popularity,
becoming more of a powerhouse in 2007. Two
new recent releases of PHP drive home the
point that there is constant care and
feeding of this platform by the open source
community as usage continues to grow.
|
|
Java Server Pages India, Michigan, USA
JavaServer Pages (JSP) technology provides a
simplified, fast way to create dynamic web
content. JSP technology enables rapid
changes of web-based applications that are
server- and platform-independent. |
|
JSP Programmers India, Bangalore, India
The focus of Java Programming has been ease
of modification by making use of Java
language annotations that were introduced by
J2SE 5.0. JSP 2.1 supports this goal by
defining annotations for dependency
injection on JSP tag handlers and context
listeners. |
|
India Java Scripting, Los Angeles, USA
JavaScripting is the process which is used
in millions of Web pages to improve the
design, validate forms, detect browsers,
create cookies, and much more. JavaScripting
is the most popular in scripting language on
the internet, and works in all major
browsers, such as Internet Explorer, Mozilla,
Firefox, Netscape, and Opera. |
|
MS Sql Programming India, Manchester, UK
MS SQL Server has several Knowledge Base
articles about disaster recovery. Refer to
the appropriate version of SQL Server to see
what disaster recovery articles are
available for that version. |
|
|
|
Preventing Email Injection in Your PHP Form to Mail Scripts
Many
websites do not post their webmasters' email addresses, like
they used to before, preferring instead to put up a contact
or feedback form. Without the huge list of email addresses
to harvest from websites, spammers are now using such
feedback form scripts to send spam instead. If you are
writing your own feedback form script, it is crucial that
you write your script in such a way so as to prevent
spammers from hijacking the script to spam others.
Email
Form Hijacking
A PHP
script that sends email, as mentioned in my PHP tutorial,
calls on the mail() function to send the email. The sender's
address is set to the information in the $email variable,
which is usually obtained from the web form.
If the
script takes no effort to sanitize the $email variable
before calling mail(),a spammer will be able to inject
additional headers into the email messages by placing lines
into the $email variable.
The PHP
mail() function will just insert those lines into the header
of the email message, and pass it along to the mail
transport agent, which again delivers the mail to everyone
on that list. Your script has hence been hijacked to do the
spammer's bidding.
Avoiding Email Injection and Mail Form Script Hijacking
To prevent
email injection of the form given above, you should
definitely check the information you receive from the $email
variable.
There are
several ways you can look out for attempts to insert email
headers into your scripts. The PHP script generated by
thesitewizard.com's Feedback Form Script Wizard does it in
this manner:
$name has
the visitor's name, and $email contains the visitor's email
address. A function called preg_match() is used to find out
if the contents of those two variables include the new line
characters. New line characters, like the carriage return
("\r" in PHP) and line feed ("\n" in PHP), create a new line
in the email headers, which enables the formation of a new
"cc:" line. If the code above spots new line characters, the
user is directed to an error page.
Conclusion
Avoid this
security lacuna in your PHP scripts that send mail by
ensuring that everything that goes into the email headers
generated by your script is checked for potentially
problematic characters like the above. Or else, your script
might just be abused to send spam to others without your
knowledge.
Best
Method to Use the PHP Text Database API
Perhaps the
most powerful aspect of PHP is the ease with which a
programmer can connect to a database and manipulate its
contents. With just a few lines of code the developer can
run a SQL query on the database and send back the
information to a the PHP application user.
However, a
database may not always be easily available. For example the
cost of web hosting may increase with a database (such as
MySQL) in a package. The PHP programmer will then need to
look at an alternative way of storing information, one such
solution being the PHP Text Database API.
The PHP
Text Database API enables the developer to use text files as
if they were tables in a database, and the programmer can
run SQL queries on these tables just as in any other
database. There are some limitations (such as only three
data types) but the PHP Text Database API can be an
efficient and easy answer for any developers that do not
have access to the more popular databases.
How
to Install the PHP Text Database API
The PHP
Text Database API (or PHP-TextDB API) can be downloaded from
http://www.c-worker.ch/txtdbapi/index_eng.php and then
stored in a zip file. When the file is decompressed a new
directory will be created (something like
php-txt-db-api-0.3.1-Beta-01).
This folder
contains all of the files needed for the PHP Text Database
API, including an extensive help file. It can be renamed,
too (for example to php-txt-db-api) and can be moved
anywhere that is accessible to PHP - it does not necessarily
have to be in the htdocs area of the web server.
Once the
files have been downloaded then configuration is very simple
indeed.
Configuration of the PHP Text Database API
The PHP
Text Database API folder contains an important file called
txt-db-api.php. This is the API's master include file
containing two vital variables that should be set:
$API_HOME_DIR
- this should be set to the directory that contains the PHP
Text Database API files
$DB_DIR -
this is the folder that will contain any databases that are
created
For example
these may look something like:
$API_HOME_DIR="C:\\php-txt-db-api\\";
$DB_DIR="C:\\database\\";
Hence, the
developer can either have one global txt-db-api.php or an
individual one for each PHP application that they develop.
Creating a
New Database Table
Each table
is created by using the SQL create table statement, however
it must be noted that the PHP Text Database API only accepts
3 data types
inc - an
auto-incremental field int - an integer field
str - a
text field
Working with Database Tables
The files
are just text files but SQL can still be applied on them.
Thus, although the PHP Text Database API cannot be a
replacement for databases such as MySQL, it is a good
substitute when they are not available. |
|
Active
Server Pages (Classic ASP)
Active
Server Pages or Classic ASP is a technology with help of
which you can make dynamic and interactive web pages.
Using
server-side scripting, ASP dynamically creates web pages
that are not affected by the kind of browser the web site
visitor is using.
The default
scripting language for writing ASP is VBScript, though you
can use different scripting languages too like JScript
(Microsoft's version of JavaScript).
ASP pages
have the extension .asp and not .htm. When a page with the
extension .asp is asked by a browser the web server
interprets any ASP within the web page before transporting
the
HTML produced to the browser. So all the ASP is run on
the web server and no ASP is ever passed to the web browser.
Any web
pages having ASP cannot be run by just opening the page in a
web browser. This is because the page must be requested
through a web server that supports ASP. That is why ASP
means Active Server Pages, no server, no active pages.
ASP was
first introduced by Microsoft on it's web server, and so,
Internet Information Services (IIS), that runs on all the
versions of Windows from NT4, including Windows 7, Vista, XP
Pro, and Windows Server OS's like Windows 2000, 2003, 2008,
it is this web server that ASP pages generally run best on.
If you wish
to play around with ASP you will have to install Microsoft's
Internet Information Services (IIS) and IIS or its micro
version Personal Web Server (PWS) is available free with
Windows.
For Windows
users you can find Internet Information Services (IIS) or
Personal Web Server (PWS) in the following : -
Windows XP
Pro/2003/2000 - IIS is available in 'Add/Remove Programs' in
the 'Control Panel'.
Windows 98
- PWS can be seen under 'add-ons' on the Windows 98 CD.
Windows
NT4/95 - You can avail of IIS by downloading the NT4 Option
Pack from Microsoft.
Windows ME
- IIS and PWS are not supported on this operating system.
Windows XP
Home Edition - IIS and PWS are also not supported on this
operating system.
Java Server Pages:
|
Affordable JavaServer Pages(JSP)
Technology, Kolkata, India
Affordable JavaServer Pages (JSP) for
websites developers provides a
simplified, fast way to create dynamic
websites development content. JSP
technology enables rapid development of
web-based applications that are server-
and platform-independent |
|
JSP Syntax , New Delhi, India
The JSP syntax adds additional XML tags,
called JSP actions, to be used to invoke
built-in functionality of the websites.
Additionally, the technology allows for
the creation of JSP tag libraries that
act as extensions to the standard HTML
or XML tags |
|
Affordable JSP with XML, Kolkatta
SP technology has access to all websites
developers since it can use the full
power of the Java platform to access
programming language objects to parse
and transform XML documents. JSP has
been designed with XML in mind; websites
developers can write a JSP page as an
XML document! |
|
Affordable JavaServer Pages Technology,
Kolkata
JSP Technology in the Java EE 5 Platform
The focus of Java EE 5 has been ease of
websites development by making use of
Java language annotations that were
introduced by J2SE 5.0. JSP 2.1 supports
this goal by defining annotations for
dependency injection on JSP tag handlers
and context listeners as well as
websites developers., |
|
Affordable JavaServer Pages Technology,
Kolkata
"JSP Technology in the Java EE 5
Platform The focus of Java EE 5 has been
ease of websites development by making
use of Java language annotations that
were introduced by J2SE 5.0. JSP 2.1
supports this goal by defining
annotations for dependency injection on
JSP tag handlers and context listeners
as well as websites developers.
|
|
A Tutorial on Java Servlets , Lucknow
If you've ever used a Websites search
engine, visited an on-line bookstore,
tracked stocks on-line, or asked a
Web-based site for quotes on plane
tickets, you've probably seen funny
looking ... |
|
Building Java Server Pages, Hydrabad,
India
It consists of HTML or XML markup into
which special tags and code blocks are
inserted. The code is executed on the
server and the result is a dynamic page
that is returned to the client browser
of the websites |
|
Affordable JavaServer Pages Technology,
Kolkatta, Salt Lake
Affordable JSP Technology in the Java EE
5 Platform: The focus of Java EE 5 has
been ease of development by making use
of Java language annotations that were
introduced by J2SE 5.0. JSP 2.1 supports
this goal by defining annotations for
dependency injection on JSP tag handlers
and context listeners and Websites
developers. |
|
A Tutorial on Java Servlets and Java
Server Pages, Salt Lake, India
If you've ever used a Web search
engine,you've probably seen URLs like
http://host/path?user=Marty+Hall&origin=bwi&dest=lax.
The part after the question mark is
known as form data. |
|
Building Affordable Java Server Pages,
Kolkatta, India
JSP consists of HTML or XML markup into
which special tags and code blocks are
inserted. The code is executed on the
server and the result is a dynamic page
that is returned to the client browser.
Although JSPs are simple to build web
development pages created by web
developer they have at their disposal
the full power of object-oriented Java
and the Java Server API |
|
Understanding Affordable JavaServer
Pages, Kolkata, India
By development a familiar Web-based
shopping cart using JSP, you'll learn
how to utilize the Model-View-Controller
(MVC) design pattern and truly separate
presentation for the web development |
|
Advanced Java Server Pages, Agartala,
India
A portable tag extension mechanism is
being considered for the JSP 1.1
specification. This mechanism permits
the description of tags that can be used
from any JSP page. With custom tags you
could encapsulate Java code, which would
essentially allow you to create custom
components, in the form of tags, that
could be used in conjunction with HTML. |
|
Affordable JSP Tutorial, Kolkata, India
tarts from simple examples and
progresses to complex examples. Requires
JSP and HTML knowledge for the web
development and the web developers. |
|
Active Server Pages:
|
Use of ASP to a Web Developer, Delhi,
India
Affordable Websites developers can learn
how to use Active Server Pages (ASP) to
customize the display of the current
date and time on your Web page. Active
Server Pages (ASPs) are Websites pages
that contain server-side scripts in
addition to the usual mixture of text
and HTML tags. |
|
More About ASP for Web Site Developer,
Mumbai / Bombay, India
Affordable Active Server Pages or ASP,
is a technology that enables websites
developers to make dynamic and
interactive web pages. ASP uses
server-side scripting to dynamically
produce websites pages that are not
affected by the type of browser the
websites visitor is using. |
|
Application Object of ASP, United
Kingdom
An application on the Websites may be a
group of ASP files designed by an
affordable websites developer. The ASP
files work together to perform some
purpose. The Application object in ASP
is used to tie these files together.
|
|
ASP tutorial, Maharashtra
Affordable Active Server Pages (ASPs)
are Websites pages that contain
server-side scripts in addition to the
usual mixture of text and HTML
(Hypertext Markup Language) tags. |
|
What is Active Server Page? - a
definition , Andhra Pradesh
"An Active Server Page (ASP) is an HTML
page that includes one or more scripts
(small embedded programs) that are
processed on a Microsoft Websites server
before the page is sent to the user.
|
|
What is Active Server Pages? - A Word
Definition, Uttar Pradesh
Abbreviated as ASP, a specification for
a dynamically created affordable
Websites page with a .ASP extension that
utilizes ActiveX scripting -- usually VB
Script or Jscript code. |
|
So What's an affordable Active Server
Page?, USA
ASP is not a software package like
FrontPage. ASP is a technology in
itself. It's a feature built into a
different piece of software. Windows NT
server comes bundled with it's own copy
of the IIS Web Server, this is a full
power Web Server that will handle almost
anything you can throw at it.
|
|
ASP tutorial for beginners and free
scripts, Kolkata
Active Server Pages (ASPs) are
affordable Web pages that contain
server-side scripts in addition to the
usual mixture of text and HTML
(Hypertext Markup Language) tags.
|
|
What is Active Server Page? , Delhi,
India
An Active Server Page (ASP) is an HTML
page that includes one or more scripts
(small embedded programs) that are
processed on a Microsoft Web server
before the page is sent to the user.
|
|
What is Active Server Pages? - A Word
Definition , Mumbai, India
Abbreviated as ASP, a specification for
a dynamically created Web page with a
.ASP extension that utilizes ActiveX
scripting -- usually VB Script or
Jscript code. When a browser requests an
ASP, the Web server generates a page
with HTML code and sends it back to the
browser
|
|
So What's an affordable Active Server
Page?, Chennai, India
ASP is not a software package like
FrontPage. ASP is a technology in
itself. It's a feature built into a
different piece of software. For ASP you
need either Microsoft Internet
Information Server or a Personal Web
Server. |
|
ASP Tutorial, Gurgaon, India
Free HTML XHTML CSS JavaScript DHTML XML
DOM XSL XSLT RSS AJAX ASP ADO PHP SQL
tutorials, references, examples for web
building. |
|
All about Active Server Pages , Ranchi,
India
ASP, PowerASP Active Server Pages
articles links tutorials |
|
Active Server Pages Resource, Jamshedpur,
India
Active Server Pages Resource. Building
dynamic Web sites with the power of ASP
.About Us, The purpose of the Active
Server Pages Resource is to provide .
|
|
Microsoft: Active Server Pages (ASP)
Forum, Jamshedpur, India
Technical support forums of ASP and
mutual help system for computer
professionals |
|
Active Server Pages and ASP.NET
Training, Bangalore
Courses on Active Server Pages (ASP) and
Active Server Pages+ (ASP+) in San
Francisco, Seattle and San Jose, taught
by best-selling author Stephen Walther. |
|
Active Server Pages Articles & Tutorials
, India
Affordable Active Server Pages Articles
& Tutorials, Sample Code, Sample
Chapters, Events, Books, Jobs, Blogs,
Products and Web Sites developer
resources. |
|
Active Server Pages interview questions,
West Bengal, Kolkatta
Affordable Active Server Pages interview
questions . Windows Server 2003 Active
Directory and Security questions ·
Windows Server 2003 interview and
certification |
|
How to Access Sql Server in ASP, India ,
West Bengal
Describes how to access Microsoft SQL
Server in Active Server Pages. Provides
an example to demonstrate the method.
|
|
Introduction to Active Server Pages,
India, Kolkata,Saltlake
Rather cling to good ol' Visual Basic
and forget you ever heard of Perl? Let
ASP welcome you into its loving arms
|
|
PHP:
|
|
|
Usage of PHP,Kolkatta
PHP generally runs on a websites server,
taking PHP code as its input and
creating Web pages as output for
affordable websites development, but
command-line scripting and client-side
GUI applications are part of the three
primary uses of PHP as well.
|
|
Courses on PHP for affordable Websites
Developer, Pune, India
This hands on PHP Programming course
provides the knowledge necessary to
websites design and websites develop
dynamic, database-driven web pages using
PHP version 5. PHP is a language written
for the websites.
|
|
Courses on PHP for affordable Websites
Developer, Pune, India
This hands on PHP Programming course
provides the knowledge necessary to
websites design and websites develop
dynamic, database-driven web pages using
PHP version 5. PHP is a language written
for the websites.
|
|
PHP Developer Center, Switzerland
From simple scripts to enterprise-class
websites applications, PHP is one of the
most popular programming languages in
the world for the affordable websites
developers. Our site is the source for
information about using PHP with Yahoo!
Web Services APIs. |
|
PHP/MySQL Tutorial, Chennai, India
Open source has brought a lot more than
Linux to the computing world. It has
also given us PHP and MySQL. According
to Graeme, PHP and MySQL are the world's
best combination for creating
data-driven websites. " |
|
Install PHP5 Apache MySQL on Windows,
Kolkatta, India
"This new release of WAMP5 now includes
the possibility to limit acces to your
server from outside users. A new link in
the WAMP5 menu allows you to switch from
offline to online websites. " |
|
PHP Help: Incremental MySQL Backups,
Denmark
"Backing up a database is something that
should be done regularly on a dynamic
driven website. You simply never know
when the server is going to crash, or
your database becomes corrupted for the
affordable websites. Therefore, it is a
wise decision to take precautions and
backup your database as often as
possible |
|
a couple of articles on php, UK
"In PHP, unlike many other languages,
you can choose between using an object
oriented (OO) or a procedural approach.
Most PHP programmers use a procedural
approach by default, since web pages
themselves operate in a very procedural
way (this tag, then this tag, then this
tag). |
|
PHP Articles, Hydrabad, India
"Deploy PHP Pages and JSP Pages Within
the Same Web Context August 7, 2006You
need to integrate PHP content and JSP
content in a single Web application.
Should you convert the PHP to JSP, or
vice versa? A better question is why
choose. You can deploy both in the
affordable Web application context.
|
|
phpRiot() :: Home :: PHP articles, PHP
tutorials, Kolkata,Salt Lake
Welcome to phpRiot(), a site dedicated
to development of web and non-web
software in PHP. This site contains a
wide range of original articles relating
to server-side technologies such as PHP,
MySQL, PostgreSQL and Apache, and
client-side technologies such as XHTML,
CSS and JavaScript." |
|
PHP Tutorial, Bangalore, India
"PHP is a powerful server-side
affordable scripting language for
creating dynamic and interactive
websites. PHP is the widely-used, free,
and efficient alternative to competitors
such as Microsoft's ASP. PHP is
perfectly suited for affordable Web
development and can be embedded directly
into the HTML code. |
|
PHP Tutorial - Introduction, USA
"It is also helpful to think of PHP in
terms of what it can do for you. PHP
will allow you to: Reduce the time to
create large and affordable websites.
Create a customized user experience for
visitors based on information that you
have gathered from them. |
|
PHP MySQL Tutorial, Germany
"PHP and MySQL are usually associated
with LAMP (Linux, Apache, MySQL, PHP).
However, most PHP developer ( including
me ) are actually using Windows when
developing the PHP application. So this
page will only cover the WAMP ( Windows,
Apache, MySQL, PHP ). You will learn how
to install Apache, PHP, and MySQL under
Windows platform. |
|
PHP: A simple affordable tutorial -
Manual, Kolkata, Salt Lake
In this tutorial we assume that your
server has activated support for PHP and
that all files ending in .php are
handled by PHP. On most servers, this is
the default extension for PHP files, but
ask your server administrator to be
sure. |
|
PHP Downloads, Holland
"Please choose the mirror closest to you
from which to download the file. The
current mirror is highlighted in yellow,
mirror sites detected to be out of date
or disfunctional are not listed for your
convenience. " |
|
PHP-GTK : Downloads, UK
GTK+ version: PHP-GTK 2 currently
supports GTK+ 2.6.9 or greater. You can
obtain the latest stable release of GTK+
2.x from..." |
|
PHP Editor Review - PHP IDE, Canada
MyEclipse provides an integrated XML
editor for standalone XML development as
well as as for use with the Struts
Modeler and the Java Server Faces (JSF)
Outline editor Main features include:
|
|
PHP Editor - The original by DzSoft ,
Digha, West Bengal, India
"DzSoft PHP Editor is a handy and
powerful tool for writing and testing
PHP and HTML pages. With its deceptive
simplicity, the interface of DzSoft PHP
Editor is comfortable both for beginners
and experienced programmers, making PHP
development easy and productive." |
|
PHP Editor - Download Leading PHP
Editor(IDE) , UK
"PHP Editor by EngInSite - create, edit,
debug, and run PHP 4 and PHP 5 scripts
with this powerful Editor. EngInSite PHP
Editor allows you to create, edit, run,
and debug PHP 4 and PHP 5 scripts from
an integrated development environment
(IDE). |
|
Rapid PHP Editor 2006 - fully featured
PHP editor, Kerala
"Rapid PHP editor is powerful, quick and
sophisticated PHP editor that extends
far beyond the essentials of regular PHP
editing environments. |
|
PHP Expert Editor ,
"PHP Expert Editor is an easy-to-use IDE
for Windows with UTF-8 support. This
editor supports Perl, Python, Java
Script and other languages too. This
Editor specially designed for PHP-masters
and has a nice features for beginners
and professional programmers. |
|
PHP Help: PHP Freaks,New Zealand
"Welcome to PHP Freaks.com: Your PHP
Help Center! This website exists to
provide you with information to use
while learning or developing PHP and
MySQL. If you need PHP Help or you would
like to provide PHP Help to other
developers, you are in the right place.
|
|
PHP Help, PHP Programming, PHP Code, PHP
Tutorials, Australia
Having a formalized unit testing
infrastructure for your projects will
save you time in the long run,
especially when looking for bugs in
code. This article introduces you to
setting up a unit testing framework. It
is excerpted from chapter 6 of the book
Advanced PHP Programming, written by
George Schlossnagle |
|
PHP: Getting Help, West Indies
A good place to start is by skimming
through the ever-growing list of
frequently asked questions (with
answers, of course). Then have a look at
the rest of the online manual and other
resources |
|
PHP Tutorial - Introduction,
India,Bangalor
An affordable PHP tutorial that covers
all the basics of PHP. It is geared
towards web developers with little or no
PHP experience |
|
PHP MySQL Tutorial , Kolkata
Simple PHP and MySQL tutorial with
examples like creating a guestbook,
uploading image to database and creating
simple content management system (CMS). |
|
PHP: Hypertext Preprocessor, US
The "PHP Code Camp @ Nite" with PHP Core
Devs Marcus Börger and Sara Golemon.
They go through from PHP basics to PHP
OOP and implementing your own PHP
|
|
ASP.net:
|
Welcome to the ASP.NET Resource Center
for websites programming, Salt Lake,
India
ASP.NET is one of the most popular
Internet websites programming language
for the programmers . Our ASP.NET
Resource Center focuses on the ASP.NET
content available online. ASP.NET-based
applications. Keep track of ASP.NET
developments. open-source ASP.NET
projects. Check out our ASP.NET
terminology list— ASP.NET-related terms
from the ASP.NET Resource for websites.
|
|
ASP.NET, Visual Basic, Visual Studio -
The Microsoft .NET programming, India,
Bangalore
This .NET site contains valuable tips,
programmers websites requirments,
articles, news, discussion forums
relating to Microsoft .NET technology
with topics including ASP.NET, Visual
Basic, .NET framework, web
developmentand programming, C#,
components and much more about the
websites of the programmers.
|
|
J2EE Introduction | ASP.NET vs J2EE vs
ASP.NET Tutorial and programming
sourcecode, Hydrabad, India
This high-level guide is for ASP and
ASP.NET developers who want to migrate
their e-business applications to J2EE
for programmers or build J2EE
applications from the ground up, or just
want to see the differences of J2EE vs
ASP.NET programming in this tutorial for
programmers.
|
|
ASP.NET Security: 8 Ways to Avoid Attack
form crack programmers, USA
Building ASP.NET Websites applications
has never been easier for programmers to
develop a websites. Visual Studio.NET
hides so many technical details behind
the scenes that websites developers need
only concentrate on the core business
logic for programming. If you don't,
you'll quickly find your ASP.NET apps
vulnerable to attack on websites
programming |
|
ASP.NET Sample programmers, Kolkata,
Salt Lake, India
This is a sample ASP.NET control using
the Amazon E-Commerce Service for
programming. The control performs a
blended search on the Amazon catalog and
returns the results in a data grid for
programmers
|
|
Working with Web Resources in ASP.NET
2.0, Canada
In Microsoft ASP.NET 1.1, if you wanted
to deploy static files such as .html
files, .css files, image files, and
script files by using a COM control for
programming , you had to create an
installer and bundle these files
together with the COM control for
programmers.
|
|
ASP.NET 2.0 Training Center: Cross
Training for Web Developers and
programmers, Canada
In ASP.NET 2.0 development is an
Integrated websites Development
Environment (IDE): the more specialized
(and free) ASP.NET-specific Visual Web
Developer (VWD). write ASP.NET code
using a simple text editor ASP.NET 2.0
includes an integrated websites server .
The code examples will commonly used
ASP.NET language, Visual Basic (VB). If
working in ASP.NET programming
environment for a websites.
|
|
ASP.NET QuickStart Tutorial, India ,
Calcutta
The ASP.NET Developer Center is the key
MSDN resource for ASP.NET. .NET
Framework Documentation The .NET
Framework 2.0 comes with reference and
conceptual
|
|
ASP.Net Developers Sites, Kolkata, Salt
Lake, India
ASP.Net Tutorial for Beginners - What is
this all about? ... The ASP.NET
Developer Center is the key MSDN
resource for ASP.NET. Ypu will find new
to ASP. |
|
ASP.NET Tutorial, India ,Kolkata
ASP.NET is the latest version of
Microsoft's Active Server Pages
technology (ASP). ASP.NET is a part of
the Microsoft .NET framework, and a
powerful tool for creating dynamic and
interactive web pages. |
|
ASP.Net Portal Tutorials and DotNetNuke
Resources,
Tutorials and Resouces for the ASP.Net
Portal Developer. We focus on ASP.Net
portals like DotNetNuke. Your complete
source for ASP.Net portal tutorials
Bangalore, India |
|
ASP.Net Application, India, Kolkata,Salt
Lake
ASP.NET improves on the type of
application that developers could use in
classic . The ASP.NET Web Application is
the type of application most developers. |
|
ASP.NET Application Life Cycle Overview,
India, Salt Lake
Within ASP.NET, several processing steps
must occur for an ASP.NET application to
be initialized and process requests.
Additionally, ASP.NET is only one piece
of the Web server architecture that
services requests made by browsers |
|
Simple Chat Application in ASP.NET - The
Code Project - ASP.NET , India, Kolkata,
Salt Lake
A single ASP.NET worker process will
host both of the ASP.NET applications.
On Windows XP and Windows 2000 this
process is named aspnet_wp.exe, and the
process runs under the security context
of the local ASPNET account. On Windows
2003 the worker process has the name
w3wp.exe and runs under the NETWORK
SERVICE account by default. |
|
What is ASP.net?, Hydrabad, India
You've probably heard the word ASP.net
fairly often these days, especially on
developer sites and news.ASP.NET is not
just the next version of ASP; it is the
next era of web development. ASP.NET
allows you to use a full featured
programming language such as C#
(pronounced C-Sharp) or VB.NET to build
web applications easily |
|
ASP .Net Programming and Coding, Dehli,
India
ASP.NET makes it easy to perform common
tasks, from simple form submission and
client authentication to deployment and
site configuration. For example, the
ASP.NET Page Framework allows you to
build user interfaces that cleanly
separate application logic from
presentation code, and handle events in
a simple, VB-like forms processing
model.
|
|
ASP.NET Training , India , Kolkata
This ASP.NET training course teaches
students to use Visual Studio 2005 and
Visual C# 2005 to build ASP.NET 2.0 Web
pages and XML Web services. Students
learn to understand the new architecture
behind ASP.NET 2.0 and deploy ASP.NET
applications. |
|
Programming Languages in ASP.NET, United
Kingdom
An ASP.NET page is restricted to code
written in a single programming
language. Currently, ASP.NET supports
Visual Basic, C#, and J#. The default
language is Visual Basic, but any other
language can be declared as the default
language for the page by placing a
directive at the top of the page. |
|
Learn ASP.NET, Kolkata, Salt Lake, India
ASP.NET is a technology for creating
dynamic Web applications. you can author
ASP.NET applications in most .NET
compatible languages, including Visual
Basic, C#, and J#. ASP.NET pages (Web
Forms) are compiled, providing better
performance than with scripting
languages.When building these pages, you
can use ASP.NET server controls. |
|
Java Script:
|
Test JavaScript, Test JavaScript
avaScript is the scripting language of
the Web! JavaScript is used in millions
of Web pages to improve the design,
validate forms, detect browsers, create
cookies, and much more. JavaScript is
the most popular scripting language on
the internet. JavaScript is easy to
learn! You will enjoy it! |
|
Java script tutorial for the total
non-programmer, Bangalore, India
Everyone that wants to program
JavaScript should at least try reading
the following section. If you have
trouble understanding JavaScript, don't
worry. The best way to learn JavaScript
is from the examples presented in this
tutorial. After you have been through
the lessons, come back to this page and
read JavaScript again |
|
JavaScript Source: Free JavaScripts,
Tutorials, Example Code , Hydrabad,
India
The JavaScript Source is an excellent
JavaScript resource with tons of "cut
and paste" JavaScript examples for your
Web pages. All for free! |
|
JavaScript Tutorials for
Developers,Bangalore, India
In this article we're going to focus on
a programming concept--writing your own
functions. Knowing how to write your own
functions will improve almost any
JavaScript you create. In fact, you'll
see how custom-made functions can
enhance several of the JavaScript tricks
you've already learned.
|
|
Javascript Tutorial - Intro, Dehli,
India
JavaScript has been around for several
years now, in many different flavors.
The main benefit of Javascript is to add
additional interaction between the web
site and its visitors at the cost of a
little extra work by the web developer.
Javascript allows industrious web
masters to get more out of their website
than HTML and CSS can provide.
|
|
Javascript Tutorial / WebDeveloper.com ,
Calcutta, India
This tutorial introduces JavaScript, a
language you can use to embed commands
... This tutorial supplements Netscape's
official JavaScript Authoring Guide
|
|
Javascripts by Java-Scripts.net: Free
javascripts, tutorials , Hydrabad, India
Java-scripts.net offers free cut and
paste javascripts. The site has free
java scripts for your website.
Javascripts include rotating images and
banners |
|
JavaScript - Table of Contents, Kolkata,
India
Javascript tutorials table of contents.
a standard JavaScript template; where is
JavaScript placed; 'hello world'
example; alert, prompt&confirm windows
|
|
Tutorials JavaScript , Salt Lake, India
Before we get started I would like to
just inform you a bit on the background
of JavaScript. In 1995, JavaScript was
developed by Netscape Communications
Corp (The same company who build the
Netscape Navigator). At first, was
referred to as LiveScript. Netscape
decided to change its name to JavaScript
because of its relationship with Java.
|
|
Free JavaScript Source Code :freeprogrammingresources.com,
Hydrabad, India
Index of JavaScripts with different
categories . Free cut and paste
JavaScript examples for your web pages.
JavaScript Scripts, Code Snippets and
Code Samples. Lots of free JavaScripts
at Code Beach |
|
|
My SQL:
|
History of MySql, India
MySQL is a multithreaded, multi-user,
SQL Database Management System (DBMS)of
a company. MySQL is available as free
software under the GNU General Public
License (GPL), MySQL is owned and
sponsored by the companies. |
|
Attention MySQL Users, London
MySQL users of the several companies
find all you need around MySQL here
including applications, tools, add-ons,
training,and more. Trusted and
recommended by company of MySQL
developer. |
|
Using MySql from PHP, Calcutta, India
One of PHP's prime benefits of the
company is its close integration with
databases, especially MySQL. Having
explained the basics of MySQL, John
Coggeshall turns his attention to
demonstrating to the companies how to
use MySQL from PHP.
|
|
MySQL AB :: Articles about MySQL,
Kolkata, India
This article of the company explains how
to tune a MySQL database for use with eZ
publish. MySQL is a database engine used
by several companies eZ publish to store
content. While other databases are
supported by eZ publish (such as
PostgreSQL and Oracle).
|
|
MySQL Articles, Kolkata, India
The MySQL distribution provides several
tools for database developers and
administrators of a company, but they
don't always work everywhere.
Fortunately, the companies of worldwide
MySQL community has produced plenty of
useful tools. |
|
MySQL Articles, New Alipore, India
This chapter provides an overview of the
naming conventions and other syntax
necessary to work in MySQL ofthe
company. Going through this chapter will
also help you to get started in SQL by
teaching you and your companies
employee's in various commands and
shortcuts that will help the SQL
beginner. |
|
MySQL Help, MySQL Tutorials, Kolkata,
India
MySQL is related to a company an open
source relational database management
system (RDBMS). It uses Structured Query
Language (SQL)and companies members are
accepts it. |
|
Beginning MySQL Tutorial , Alipore
he database has become an integral part
of almost all companies . Without it,
many things of the company ,we do would
become very tedious, perhaps impossible
tasks. |
|
MySQL 5.0 Reference Manual :: 3
Tutorial, Gurgaon, India
"This chapter provides to a company,the
tutorial introduction to MySQL by
showing how to use the mysql client
program to create and use a simple
companies database. " |
|
MySQL Tutorial - Introduction, Haryana,
India
"MySQL is the most popular open source
database server for the company. On top
of that, it is very commonly used in
conjunction with PHP scripts to create
dynamic and powerful server applications
of companies. " |
|
MySQL 4.0.27 download - MySQL, Mumbai,
India
"The MySQL database server is the
world's most popular open source
database. Its architecture makes it
extremely fast and easy to customize. " |
|
Download MySQL (Windows) Server 5.1,
Salt Lake, Kolkata
"MySQL 5.1 is the latest version of the
world's most popular open source
database. It gives corporate developers,
DBAs and ISVs an array of new enterprise
features to make them more productive
developing, deploying, and managing
industrial strength applications."
|
|
Download MySQL 4.1.18 - MySQL, Howrah,
India
"MySQL is a very fast, multi-user,
multi-threaded and robust SQL
(Structured Query Language) database
server. The world's most popular open
source database. " |
|
Installing mysql on windows , Sweden
Once you have successfully downloaded
the Windows version, installing it is a
breeze... trust me! (The installation
steps below have be tested on Win95 and
Win98 using
mysql-shareware-3_22_34-win.zip
|
|
MySQL Help [Archive] - PHP-Editors,
France
"I have a problem, when I run this
script the browser has a problem with
the ""{"" at the bottom of this page. I
have changed its color to red. What am I
doing wrong? " |
|
MySQL Help, UK
"Hey Guys, I downloaded a tutorial on
joining MySQL tables in a query from
DMXZone however what I am trying to do
goes slightly past the scope of that
tutorial. I have tried playing around
with the SQL query I want but cannot get
it to work. If someone has some insight
into this it would be much appreciated.
" |
|
MYSQL Query Help Please - MySQL,
Bangalore, India
Bearfoot Software AS major product is a
database engine with extremely small
footprint. It has been developed since
2001 by the founder of Birdstep
Technology ASA, Olaf Vethe. |
|
MySQL AB :: MySQL Introduces New
Easy-to-Use, Lucknow, India
"MySQL AB, developer of the world's most
popular open source database, today
announced MySQL Administrator, a new
open source tool with a graphical user
interface (GUI) designed to provide easy
management and monitoring of MySQL®
database servers. " |
|
phpMyAdmin | MySQL Database
Administration Tool , Bangalore, India
phpMyAdmin is a tool written in PHP
intended to handle the administration of
MySQL over the Web. |
|
MySQL Administration, USA
MySQL Administration correctly
administering the MySQL server,
including the manipulation the privilege
system, and making intelligent decisions
about the capabilities (permissions)
given to users.So you've finally
correctly installed the MySQL server.
|
|
Basic MySQL Administration, Guwahati,
India
This article covers the basics of MySQL
administration. You will learn how to
stop and restart MySQL safely and how to
configure and administer your database
server. |
|
MySQL AB :: MySQLGUI downloads,
Jharkhand
"Development of MySQLGUI has been
suspended. Our current development
efforts are directed towards the
development of MySQL Administrator and
MySQL Query Browser. " |
|
Oracle
|
Oracle server, Bangalore, India
Know about SOA-based applications,
Oracle Company Database 10g, Oracle
server Fusion Middleware, and know about
it more contact with oracle companies.
|
|
Oracle database, New Dehli, India
An Oracle companies database consists of
a collection of data managed by an
Oracle database management system. One
company can refer to the Oracle DBMS
unambiguously as Oracle DBMS or as
Oracle RDBMS.
|
|
Oracle Books, Canada
The companies updated to cover Oracle
10g, this edition of the highly regarded
Mastering Oracle SQL has a stronger
focus on practical and on
Oracle-specific SQL technique. Who want
to harness the untapped power of Oracle
SQL, this guide will help the company. |
|
Oracle Books for Application Program
Developer, Canada
Updated to cover Oracle 10g, Company
release this edition of the highly
regarded Mastering Oracle SQL has a
stronger focus on practical and on
Oracle-specific SQL technique. Several
companies want to harness the untapped
power of Oracle SQL, this guide will
help them.
|
|
Oracle Corporation, United Kingdom
In addition to the famous database,
Oracle supply a range of software
company to manage, share and protect
data and information of Companies.
|
|
Oracle Technology Network, Canada
Download Documentation from Company,
tips and community help for all Oracle
products of Companies.
|
|
Oracle Technology Network Solution,
India,Kolkata
ownload Documentation of the Company,
tips and community help for all Oracle
products.
Welcome to The Oracle FAQ, Kolkata, Salt
Lake
|
|
Welcome to The Oracle FAQ, Kolkata, Salt
Lake
An independent source of answers of
company covering Oracle - the software
giant and its products for the
companies. |
|
Oracle Partner Network - Public,India
Full list of outsourcing of several
Companies services including Remote DBA
from Oracle corp.
|
|
Oracle DBA and development articles,
scripts, Saltlake,Sec V
Scripts, articles, example code,
utilities and a user forum for the
company. Covers Oracle 8i, 9i and 10G
|
|
Oracle Corporation - Wikipedia, dehli
1989: Oracle the database company moves
world headquarters to Redwood Shores,
California.companies of Oracle
Corporation has dubbed the super
Enterprise Manager used to manage a
grid. |
|
Oracle Corporation - Wikipedia, Dehli
1989: Oracle moves world headquarters of
the company to Redwood Shores,
California. ... Oracle Corporation has
dubbed the super Enterprise Manager used
to manage a grid for companies. |
|
Oracle Underground Frequently Asked
Questions,Hyderabad
Home page of The Underground Oracle
Frequently Asked Questions (FAQ) List. A
valuable resource for all Oracle
professionals!!! You may not get the
Oracle ...
|
|
Oracle/SQL Tutorial ,Kolkata
Oracle SQL and PL/SQL tutorials from the
UC Davis Database and Information
Systems Group (DBIS)
|
|
Oracle/SQL Tutorial,Kolkata
Oracle SQL and PL/SQL tutorials from the
UC Davis Database and Information
Systems Group (DBIS)
|
|
Community for the Oracle DBA,Kolkata
Study notes and forums for Oracle DBA
certification exams. |
|
Installing Oracle 9i on Red Hat Linux,
Bangalor
The only problem I experienced with
Oracle 9iR2 (9.2.0) on Red Hat 8.0 was:
... Running Oracle Installation on Red
Hat Enterprise Linux Advanced Server 3
...
|
|
Oracle Tutorial, India
Free Oracle Tutorials. A series of
Oracle database tutorials featuring an
introduction to the Oracle DBMS, Oracle
SQL and SQL*Plus--PL/SQL--Oracle data .
|
|
Oracle guide to Development and
Configuration, India, Salt Lake
Information on developing and
configuring an Oracle Database based on
Oracle Certified Professional Test
Information; even if not pursuing the
OCP certification, they serve as a good
guide on some difficult Oracle subjects
because they illustrate some obscure
points which a DBA should understand
|
|
Oracle Help, Oracle Tutorials,
Kolkata,Salt Lake
Oracle introduced the first Relational
Database Management system based on the
IBM System/R model and the first DBMS
using IBM’s Structured Query Language
(SQL) technology. In addition to its
well-known 10g database, Oracle offers
software for managing, sharing and
protecting data and information.
|
|
SkillBuilders: Free Oracle Tutorials ,Dehli
These completely free Oracle9i and
Oracle 10g tutorials are in-depth and
comprehensive lessons that will help you
learn about the Oracle Database.
|
|
Free Oracle Resources , Salt Lake, Sec V
Free Oracle Resources, Tutorials,
Articles, FAQs, Forums and examples of
... Free Oracle Tutorials and Free
Oracle Training Lessons are available
here ...
|
|
Oracle8i DBA Training Certification
Course, India
This Oracle8i DBA certification maps to
5 vendor exams. ... Oracle8i Network
Administration Training: Net8 Additional
Configuration and Troubleshooting ... |
|
Database Oracle Analytic Functions in
Oracle , Kolkata
View Tutorial: Database Oracle Analytic
Functions in Oracle 8i and 9i Tutorial
... components in Java, with life cycle
management and remote configuration. ...
|
|
Oracle 8i Application Programming,
India,Kolkata
The emphasis is on server-side
programming, with all features supported
in Oracle, ... Designer, Oracle 8i, and
JDeveloper); SQLJ and JavaServer Pages (JSP)
...
|
|
Oracle 9i JDBC Programming: Books: Jason
Price, Bangalor
Oracle 9i JDBC Programming (Paperback)
by Jason Price (Conductor) "Java has ...
Senior Vice President, Oracle Server
Technologies, Oracle Corporation ...
|
|
Oracle Sample Code and HowTo's,Kolkata
o illustrate how to use Oracle products
and technologies, OTN provides source
code and installation instructions for
complete, working sample applications. …
|
|
My Sql:
|
Know More About SQL / MSSQL / MS SQL,
Miami
The Company release MS SQL(MS SQL)
Server is a RDBMS produced by
Microsoft.Companies Developers use for
small- to medium-sized databases. The
code base for MS SQL Server originated
in Sybase SQL Server |
|
MS-SQL Server, Mumbai, India
When a company planning a secure MS
SQL-based computer system you have to
focus on several key elements of MS SQL.
the companies create appropriate
installation with proper access rights,
well-set rules for MS SQL users and a
mechanism. |
|
MSSQL Server 2000, Delhi, India
MSSQL Server 2000 communicates with
several companies heterogeneous
databases. The use of a linked server
facilitates the company 'sexecution of
queries on heterogeneous databases from
MS SQL Server. |
|
MS SQL Server Home, Jaipur, India
Visit to the portal of our company for
all the latest news and articles to help
you evaluate Microsoft SQL (MS SQL)
Server 2005 for your data management and
analysis needs |
|
MS SQL Server: Downloads, Delhi, India
Try Microsoft SQL Server 2005 of the
companies software on your servers to
see how its advanced technologies help
to reduce the company the total cost of
ownership (TCO) and drive of the MS SQL
Server.
|
|
MS SQL Server, Chennai, India
MS SQL Server and Sybase/ASE bothare
reliable for companies and communicate
over networks using an application-level
protocol called Tabular Data Stream (TDS).
The company , TDS protocol has also
effective protocol of MS SQL Server. |
|
Microsoft SQL Server 2005 E-Learning,
Kolkata, India
To Get Ready of your company for MS SQL
Server 2005 with Microsoft E-Learning is
essential. Experienced on MS SQL Server
2000? Try a free upgrade course today
for only companies developers.
|
|
MySQL AB and MS SQL, Ahmdabad, India
Next companies will look at the tools
and methods for migrating your actual
data from Access/MS SQL, followed by
some general guidelines for modifying
your companies database. |
|
Database Journal for MS SQL, Lucknow,
India
Microsoft company handled MS SQL Server
administration news, articles, scripts,
tutorials, forums, and resources for the
MS SQL Server 2000 / 7 / 6.5 database
professional |
|
MS SQL Server, Gurgaon, India
The TDS protocol has also been
implemented by the company ,FreeTDS
project [2] in order to allow more kinds
of companies applications to communicate
with MS SQL Server . |
|
MS SQL Server, Agartala, India
his company describes the MS SQL Server
module developed by Dave Cole. It
provides a Python interface to the MS
SQL Server relational database system of
several companies.
|
|
CERT Advisory CA-2003-04, Bhubaneswar,
India
CERT® Advisory CA-2003-04 MS-SQL Server
Worm. Original release date: January 25,
2003 Last revised: January 27, 2003
Source: CERT/CC ...
|
|
Microsoft SQL Server 2000, kerala, India
FIX: You receive an error message when
MS DTC for SQL Server 2000 reuses a
server process identifier (SPID) to
enlist in a distributed transaction ...
|
|
MS SQL Server module, Maharashtra, India
This page describes the MS SQL Server
module developed by Dave Cole. It
provides a Python interface to the MS
SQL Server relational database system.
...
|
|
MSSQL and Security, Bhopal, India
When planning a secure MS SQL-based
computer system you have to focus on
several key elements: an appropriate
installation with proper access rights,
... |
|
MSSQL and Security, Guwahati, India
When planning a secure MS SQL-based
computer system you have to focus on
several key elements: an appropriate
installation with proper access rights,
... |
|
Interactive SQL for MSSQL , Gurgaon,
India
Interactive SQL for MSSQL is a handy
tool for working with Microsoft SQL ...
Interactive SQL for MSSQL supports all
MS SQL versions starting from MS SQL ...
|
|
MS SQL Server Help, Orrisa, India
Microsoft SQL Server is a relational
database management system. It supports
Structured Query Language (SQL), which
is the most common database language in
use today. While it is most popular for
use with small to medium sized
databases, it has been catching on for
use with large enterprise databases in
recent years. |
|
MSSQL Hosting, Bangalore, India
The Microsoft SQL Server 2005
database-only hosting package is ideal
for ecommerce and business web sites
which require a high-performance
database storage solution. MSSQL Server
is fast, reliable, secure and easy to
use |
|
SQL Tutorial - FunctionX, Kolkata, India
As somebody suggested, we opted to use
Microsoft SQL Server Database Engine (MSDE).
It is a very wonderful, powerful, and
free database ... MS SQL Server ...
|
|
Database Journal Forums , Patna, India
This is a discussion forum for
discussing all aspects of the world of
databases
|
|
Microsoft SQL Server Advisor, Ahmedabad,
India
Affordable website development India
MySql learn Source Code Control
Solutions for SQL Server -- Learn how to
keep track of the code you.
|
|
Ms Sql Source Control, Lucknow, India
Affordable website development India
MySql ms Sql Source Control -
SQLSourceSafe - SQL version control Tool
Source Control ... offers great
functionality to manage the source code
of SQL scripts, ... |
|
LIMIT clause for MS-SQL, Gugaon, India
Affordable website development India
MySql all source code in SQL · Ask a SQL
Pro Discussion Forum Categories ...
Oracle for MS SQL Server without the
headaches of stored procedures or temp
tables. ... |
|
Affordable website development India
MySql
Affordable website development India
MySql - MySql Development India, MySQL
Database Driven Application Development
in India. |
|
U2:
|
Test for u2 of WebSite, Test for u2 of
WebSite
Test for u2 of WebSite |
|
U2 PDO Drive, Kolkata, Salt Lake, India
U2 PDO Driver, Part 2: Write PHP
applications to access U2 data ...
PHPfest Tutorial: Oracle Database 10g
Express Edition and Zend Core for Oracle
|
|
Tutorials. U2 PDO Driver, Calcutta,
India
Tutorials. U2 PDO Driver, Part 2: Write
PHP applications to access U2 data . U2
· Reusing an existing database
connection with MDB2 · AJAX Chat
Tutorial
|
|
OpenInsight for U2 FAQ, Bangalore, India
If I use the U2 database, will I need to
make any changes to my system? No.
OpenInsight’s U2 connector is so
seamless, that once the connection is
made,
|
|
IBM developerWorks for U2, Hydrabad,
India
U2 PDO Driver, Part 2: Write PHP
applications to access U2 data . This
tutorial -- the second in this series on
Apache Derby database use -- offers an
|
|
U2 Database application, United Kingdom
U2 PDO Driver, Part 2: Write PHP
applications to access U2 data . DB2
Database Tuning Tutorial | Platform
2015: Intel's Platfor
|
|
PHPDeveloper.org: PHP News, Views, and
Community, Kolkata, India
The question was if you can reuse an
exisitng database connection you've
already established and ... IBM
developerWorks: U2 PDO Driver Tutorial,
Parts 1 & 2 |
|
DeveloperWorks : Information Management
: Technical library view for U2,
Calcutta, India
This tutorial -- the second in this
series on Apache Derby database use . In
this article, you'll learn how to write
a PDO driver for U2 using U2 native
|
|
U2 Database server, USA
Tutorials. U2 PDO Driver, Part 2: Write
PHP applications to access U2 data .
Objects driver for U2 · Reusing an
existing database connection with MDB2 |
|
Schematic Design Tutorials for U2,
Kolkata, Salt Lake, India
Workspace Size frame change as P-CAD
Schematic’s 32-bit database converts all
.Connect U4 pin 15 with U2:A pin 1. Draw
the connection as shown in the Document.
|
|
PHPDeveloper.org: IBM developerWorks: U2
PDO Driver Tutorial , Dehli, India
IBM developerWorks: U2 PDO Driver
Tutorial, Parts 1 & 2 . series from the
IBM developerWorks pages that covers the
creation and use of a U2-PDO driver
|
|
MS Access:
|
MSAccess and VBA, England
Microsoft Access(MSAccess) is a
development environment each company
used to create computer databases.
companies are provides lessons,
examples, and links on how to use and
explore MS Access. We also provide some
guidance on VBA that ships with
Microsoft Access(MSAccess). |
|
MSAccess Database Help, India
Database Solutions of a company for
Microsoft Access(MSAccess) has been
designed to help & assist Microsoft
Access(MSAccess) 97, 2000, 2002 (XP) and
2003 database users and developers.
Companies will also find MSAccess
database examples and samples here.
|
|
About Microsoft Access (MSAccess,
Calcutta / Kolkata, India
The company of Microsoft Access(MSAccess)
provides users with one of the simplest
DBMS solutions.each companies, Before
purchasing MSAccess, be sure that your
system meets Microsoft’s system
requirements. Three of the major
components of MSAccess are tables,
queries, forms. |
|
Microsoft Office Online: Access 2003
Home Page, Kolkata, India
The Companies are working with IP
addresses in Access can be more complex
than working with text or Issues of the
companies that are fixed in Access 2003
by Office 2003 Service Pack 2 …
|
|
Microsoft Access, Chennai, India
Introductory-level the Company can use
MS Access tutorial which covers topics
ranging from creating databases to
beginning VBA development. Exercises are
included for the companies.
|
|
Access 2000 Tutorial ,Mumbai, India
The Microsoft Company, an innovator in
providing distance learning degrees.
Courses can be taken online for the
companies, and through video tape,
telecourses, ...
|
|
Microsoft Access Tutorial, Delhi, India
This tutorial will help your company get
started with Microsoft Access and may
companies. First of all you need to
understand how Microsoft Access breaks
down a database. |
|
Microsoft Access Tutorial - Prof.
Holowczak,Gurgaon, India
In this tutorial the four basic
modulesof the Company to Access are
demonstrated: tables, forms, reports and
queries from the Zicklin School of
Business of companies.
|
|
Microsoft Access, Dehradun, India
The Company ,ADP files (supported in MS
Access 2000 and later), the
database-related features are entirely
different, because this type of file
connects to a MSDE or Companies
facility. |
|
Microsoft Access Fundamentals, Mumbai,
India
Resources For MS Access, MS Access
How-to Articles, MS Access Support, MS
Access Knowledge Base Articles.
|
|
Trevors MS Access FAQ,Faridabad, India
Answers to commonly asked questions for
all levels of users, code examples,
sample databases, add-ins. |
|
MS Access, Excel Database Design
Tutorials, Agartala, India
Well written and thorough explanations
on creating and maintaining database
through MS Access and Excel
|
|
Microsoft Access help, Ahmedabad, India
Free help and tutorials for Microsoft
Access. Tips for beginners and database
developers. Downloadable examples and
utilities. Flaws, bugs, traps, code, ...
|
|
MS Access tools from Peter's Software,
Hyderabad, India
MS Access shareware, freeware, tools,
help and tips. |
|
Ms Access tips, Aurangabad, India
MS Access tips. Below are a collection
of postings to Internet newsgroups and
discussion lists. Simulating a control
array on a form in Access97 ...
|
|
MS Access Programming, Kolkata, India
Microsoft Access is a database
management system (DBMS). It lets you
create relational databases, which means
that Access databases can link to tables
that have similar fields. Access
databases are the workhorses of many
offices, often used for mailing lists,
phone lists, and as address books.
|
|
Online MS Access Test, Faridabad
ExpertRating offers an online MS Access
test. Candidates who pass the MS Access
test receive a hard copy MS Access
certificate of accomplishment. |
|
What are the limitations of MS Access,
Delhi, India
What are the limitations of MS Access?
It's no secret: I do not trust Access. I
don't think it should be used in a
production environment for anything more
... |
|
Microsoft Access Security And Passwords,
Ahmedabad, India
vb123.com Garry Robinson's Popular MS
Access, Office and VB Resource Site ...
MS Access features three independent
types of passwords:. * Database
Passwords .. |
|
Microsoft Access Tutorials, Secunderabad,
India
Provides links to Microsoft Access
tutorials, information, and resources
that are rated by you.
|
|
Microsoft Access Consultants, Jaipur,
India
Custom software consultants for business
productivity. Improve your efficiency
with our specialized software including;
inventory control, ... |
|
DB2:
|
About DB2, Bangalore, India
The Company give the name DB2 was first
given to the DBMS in 1982 when IBM
released SQL/DS and DB2 on its mainframe
platform. DB2 can be considered for
Companies to be an object-SQL DBMS.For
many years DB2 was exclusively available
on IBM mainframes. |
|
IBM DB2 Content Manager V8.3
installation examples, Calcutta, India
The company walk through step-by-step
examples presented as viewlets, showing
how to install IBM DB2 Content Manager
V8.3.Companies newly updated to include
Linux. |
|
DB2 Product Family, Gurgaon, India
DB2 Universal companies Database is the
DBMS that delivers a flexible and
cost-effective database platform. The
companies DB2 UDB further leverages your
resources with broad support for open
standards. DB2 UDB has a solution for
companies built and priced to meet your
unique needs |
|
IBM Software - DB2 Product Family,India
The DB2 Product of the company provides
what businesses need for data management
and business intelligence. DB2 Universal
Database (DB2 UDB) software runs on most
of the companies.
|
|
IBM DB 2 Software, Kolkata
IBM Information Management software for
DB2 for Company on demand business
extends functionality to provide
database servers, business intelligence,
content management, on several
Companies.
|
|
DB2 Universal Database,, India, Salt
Lake
The Company for DB2 UDB is compliant
with the FIPS 140-2 (Use of certified
Cryptographic Module) government . Large
companies page support in buffer pools
on DB2 UDB for Linux .
|
|
IBM DB2 - Wikipedia, the free
encyclopedia, Delhi
For many years the company of DB2 was
exclusively available on IBM mainframes.
IBM claims to others companies that the
new DB2 will be the first relational
database to "natively" store data of a
company. |
|
DB2 Universal Database V8.1 Arrives,
Kolkatta,Salt Lake
DB2 UDB V8.1 company marks the next
stage in the evolution of relational
database providing for new levels of
information integration within your
e-infrastructure of the companies.
|
|
Microsoft PowerPoint - SAP DB 2 years
V2.ppt, India, Salt Lake
File Format of the company project:
PDF/Adobe Acrobat - View as HTML Jörg
Hoffmeister. SAP AG. SAP DB. A review on
2 years. of Open Source for companies,
needs higher I/O rate (factor 2) in
comparison to SAP DB (same workload) .
|
|
DB2 Magazine ,Kolkata
DB2 Magazine is devoted to DB2 and
targeted at database administrators,
analysts, programmers, designers,
consultants, and MIS/DP managers.
|
|
DB/2 Database Directory, Links,India
DB/2 Database. PostgreSQL. Sybase.
Progress Database. MiniSQL. Borland
Interbase. Informix Database. EasyBase.
Unidata. IMS DB/DC ... |
|
Sybase PowerDesigner IBM DB/2,
Kolkata,Salt Lake
PowerDesigner provides IBM DB/2
analysts, developers and administrators
with ... PowerDesigner supports many
unique capabilities of IBM DB/2 and also
...
|
|
DB 2... StartingIndia, Salt Lake
Problem ,
DB 2... Starting Problem. Get answers to
your questions in our Database
Developer's Lounge forum
|
|
Database Journal: The Knowledge Center ,
Kolkata, India
IBM DB2 news, tutorials, forums, and
resources. From DatabaseJournal.com, the
Knowledge Center for Database
Professionals. |
|
DB2 Basics, Chennai, India
As an instance owner on the host running
db2, issue the following command. $
db2start ... db2->import from testfile
of del insert into workemployee ... |
|
Data Adapter for DB2 Database, Mumbai,
India
iWay Software's adapter for the DB2
database enables you to access DB2 data
from XML, JDBC, ODBC, and SOAP-based Web
services and integrate DB2 data with ... |
|
DB2 Universal Database Version 8.2,
Bangalore, India
Updated user setup instructions for
non-DB2 created users. Revision 1.1.4,
2005-07-13 ... Installing DB2 Version
8.2 on Red Hat Enterprise Linux (RHEL) 3
... |
|
DB2 , Kolkata, India
What is IBM DB2? Find out here! ...
Definition: DB2 is a relational database
system developed by IBM Corporation,
originally for use on large mainframe
...
|
|
PHP Database Programming with DB2 ,
Bhubaneswar, India
Having made the leap from MySQL to IBM's
proprietary DB2 universal database, Ian
explains how easy it is to get set up
and start using DB2 - and why you'd ...
|
|
DB2 for Windows for Dummies, Hydrabad,
India
mazon.com: DB2 for Windows for Dummies:
Books: Paul C Zikopoulos,Lily
Lugomirski,Roman B. Melnyk by Paul C
Zikopoulos,Lily Lugomirski,Roman B.
Melnyk. |
|
DB2 Update Journal, Mumbai, India
Xephon's monthly technical journal
covering DB2, predominantly in z/OS, but
also other platforms. Older issues,
including published code, are available
for ... |
|
DB2 Database for Linux, UNIX, Jaipur,
India
Migrating DB2 32-bit servers to 64-bit
systems (Linux and UNIX) ... Migrating
from DB2 UDB Version 7 servers (Linux
and UNIX) ... |
|
An Expert's Guide to DB2 Technology,
Bangalore, India
About: Chris is a DB2 for Linux, UNIX
and Windows lifer having worked at IBM
on DB2 since its inception. Follow along
as Chris shares his experiences and .
|
|
|
Preventing Email Injection in Your PHP Form to
Mail Scripts
Many websites do not post their webmasters'
email addresses, like they used to before,
preferring instead to put up a contact or
feedback form. Without the huge list of email
addresses to harvest from websites, spammers are
now using such feedback form scripts to send
spam instead. If you are writing your own
feedback form script, it is crucial that you
write your script in such a way so as to prevent
spammers from hijacking the script to spam
others.
Email Form Hijacking
A PHP script that sends email, as mentioned in
my PHP tutorial, calls on the mail() function to
send the email. The sender's address is set to
the information in the $email variable, which is
usually obtained from the web form.
If the script takes no effort to sanitize the
$email variable before calling mail(),a spammer
will be able to inject additional headers into
the email messages by placing lines into the
$email variable.
The PHP mail() function will just insert those
lines into the header of the email message, and
pass it along to the mail transport agent, which
again delivers the mail to everyone on that
list. Your script has hence been hijacked to do
the spammer's bidding.
Avoiding Email Injection and Mail Form Script
Hijacking
To prevent email injection of the form given
above, you should definitely check the
information you receive from the $email
variable.
There are several ways you can look out for
attempts to insert email headers into your
scripts. The PHP script generated by
thesitewizard.com's Feedback Form Script Wizard
does it in this manner:
$name has the visitor's name, and $email
contains the visitor's email address. A function
called preg_match() is used to find out if the
contents of those two variables include the new
line characters. New line characters, like the
carriage return ("\r" in PHP) and line feed
("\n" in PHP), create a new line in the email
headers, which enables the formation of a new
"cc:" line. If the code above spots new line
characters, the user is directed to an error
page.
Conclusion
Avoid this security lacuna in your PHP scripts
that send mail by ensuring that everything that
goes into the email headers generated by your
script is checked for potentially problematic
characters like the above. Or else, your script
might just be abused to send spam to others
without your knowledge.
Best Method to Use the PHP Text Database API
Perhaps the most powerful aspect of PHP is the
ease with which a programmer can connect to a
database and manipulate its contents. With just
a few lines of code the developer can run a SQL
query on the database and send back the
information to a the PHP application user.
However, a database may not always be easily
available. For example the cost of web hosting
may increase with a database (such as MySQL) in
a package. The PHP programmer will then need to
look at an alternative way of storing
information, one such solution being the PHP
Text Database API.
The PHP Text Database API enables the developer
to use text files as if they were tables in a
database, and the programmer can run SQL queries
on these tables just as in any other database.
There are some limitations (such as only three
data types) but the PHP Text Database API can be
an efficient and easy answer for any developers
that do not have access to the more popular
databases.
How to Install the PHP Text Database API
The PHP Text Database API (or PHP-TextDB API)
can be downloaded from
http://www.c-worker.ch/txtdbapi/index_eng.php
and then stored in a zip file. When the file is
decompressed a new directory will be created
(something like php-txt-db-api-0.3.1-Beta-01).
This folder contains all of the files needed for
the PHP Text Database API, including an
extensive help file. It can be renamed, too (for
example to php-txt-db-api) and can be moved
anywhere that is accessible to PHP - it does not
necessarily have to be in the htdocs area of the
web server.
Once the files have been downloaded then
configuration is very simple indeed.
Configuration of the PHP Text Database API
The PHP Text Database API folder contains an
important file called txt-db-api.php. This is
the API's master include file containing two
vital variables that should be set:
$API_HOME_DIR - this should be set to the
directory that contains the PHP Text Database
API files
$DB_DIR - this is the folder that will contain
any databases that are created
For example these may look something like:
$API_HOME_DIR="C:\\php-txt-db-api\\";
$DB_DIR="C:\\database\\";
Hence, the developer can either have one global
txt-db-api.php or an individual one for each PHP
application that they develop.
Creating a New Database Table
Each table is created by using the SQL create
table statement, however it must be noted that
the PHP Text Database API only accepts 3 data
types
inc - an auto-incremental field int - an integer
field
str - a text field
Working with Database Tables
The files are just text files but SQL can still
be applied on them. Thus, although the PHP Text
Database API cannot be a replacement for
databases such as MySQL, it is a good substitute
when they are not available. |
|
Active Server Pages (Classic ASP)
Active Server Pages or Classic ASP is a
technology with help of which you can make
dynamic and interactive web pages.
Using server-side scripting, ASP dynamically
creates web pages that are not affected by the
kind of browser the web site visitor is using.
The default scripting language for writing ASP
is VBScript, though you can use different
scripting languages too like JScript
(Microsoft's version of JavaScript).
ASP pages have the extension .asp and not .htm.
When a page with the extension .asp is asked by
a browser the web server interprets any ASP
within the web page before transporting the
HTML produced to the browser. So all the ASP
is run on the web server and no ASP is ever
passed to the web browser.
Any web pages having ASP cannot be run by just
opening the page in a web browser. This is
because the page must be requested through a web
server that supports ASP. That is why ASP means
Active Server Pages, no server, no active pages.
ASP was first introduced by Microsoft on it's
web server, and so, Internet Information
Services (IIS), that runs on all the versions of
Windows from NT4, including Windows 7, Vista, XP
Pro, and Windows Server OS's like Windows 2000,
2003, 2008, it is this web server that ASP pages
generally run best on.
If you wish to play around with ASP you will
have to install Microsoft's Internet Information
Services (IIS) and IIS or its micro version
Personal Web Server (PWS) is available free with
Windows.
For Windows users you can find Internet
Information Services (IIS) or Personal Web
Server (PWS) in the following : -
Windows XP Pro/2003/2000 - IIS is available in
'Add/Remove Programs' in the 'Control Panel'.
Windows 98 - PWS can be seen under 'add-ons' on
the Windows 98 CD.
Windows NT4/95 - You can avail of IIS by
downloading the NT4 Option Pack from Microsoft.
Windows ME - IIS and PWS are not supported on
this operating system.
Windows XP Home Edition - IIS and PWS are also
not supported on this operating system. |
Resource Center:
Java Server Pages:
|
Affordable JavaServer Pages(JSP)
Technology, Kolkata, India
Affordable JavaServer Pages (JSP) for
websites developers provides a
simplified, fast way to create dynamic
websites development content. JSP
technology enables rapid development of
web-based applications that are server-
and platform-independent |
|
JSP Syntax , New Delhi, India
The JSP syntax adds additional XML tags,
called JSP actions, to be used to invoke
built-in functionality of the websites.
Additionally, the technology allows for
the creation of JSP tag libraries that
act as extensions to the standard HTML
or XML tags |
|
Affordable JSP with XML, Kolkatta
JSP technology has access to all
websites developers since it can use the
full power of the Java platform to
access programming language objects to
parse and transform XML documents. JSP
has been designed with XML in mind;
websites developers can write a JSP page
as an XML document! |
|
Affordable JavaServer Pages Technology,
Kolkata
"JSP Technology in the Java EE 5
Platform The focus of Java EE 5 has been
ease of websites development by making
use of Java language annotations that
were introduced by J2SE 5.0. JSP 2.1
supports this goal by defining
annotations for dependency injection on
JSP tag handlers and context listeners
as well as websites developers.,
|
|
Affordable JavaServer Pages Technology,
Kolkata
"JSP Technology in the Java EE 5
Platform The focus of Java EE 5 has been
ease of websites development by making
use of Java language annotations that
were introduced by J2SE 5.0. JSP 2.1
supports this goal by defining
annotations for dependency injection on
JSP tag handlers and context listeners
as well as websites developers.
|
|
A Tutorial on Java Servlets , Lucknow
If you've ever used a Websites search
engine, visited an on-line bookstore,
tracked stocks on-line, or asked a
Web-based site for quotes on plane
tickets, you've probably seen funny
looking ... |
|
Building Java Server Pages, Hydrabad,
India
It consists of HTML or XML markup into
which special tags and code blocks are
inserted. The code is executed on the
server and the result is a dynamic page
that is returned to the client browser
of the websites. |
|
Affordable JavaServer Pages Technology,
Kolkatta, Salt Lake
Affordable JSP Technology in the Java EE
5 Platform: The focus of Java EE 5 has
been ease of development by making use
of Java language annotations that were
introduced by J2SE 5.0. JSP 2.1 supports
this goal by defining annotations for
dependency injection on JSP tag handlers
and context listeners and Websites
developers. |
|
A Tutorial on Java Servlets and Java
Server Pages, Salt Lake, India
If you've ever used a Web search
engine,you've probably seen URLs like
http://host/path?user=Marty+Hall&origin=bwi&dest=lax.
The part after the question mark is
known as form data. |
|
Building Affordable Java Server Pages,
Kolkatta, India
JSP consists of HTML or XML markup into
which special tags and code blocks are
inserted. The code is executed on the
server and the result is a dynamic page
that is returned to the client browser.
Although JSPs are simple to build web
development pages created by web
developer they have at their disposal
the full power of object-oriented Java
and the Java Server API. |
|
Understanding Affordable JavaServer
Pages, Kolkata, India
By development a familiar Web-based
shopping cart using JSP, you'll learn
how to utilize the Model-View-Controller
(MVC) design pattern and truly separate
presentation for the web development
|
|
Advanced Java Server Pages, Agartala,
India
A portable tag extension mechanism is
being considered for the JSP 1.1
specification. This mechanism permits
the description of tags that can be used
from any JSP page. With custom tags you
could encapsulate Java code, which would
essentially allow you to create custom
components, in the form of tags, that
could be used in conjunction with HTML. |
|
Affordable JSP Tutorial, Kolkata, India
Starts from simple examples and
progresses to complex examples. Requires
JSP and HTML knowledge for the web
development and the web developers. |
|
Active Server Pages:
|
Use of ASP to a Web Developer, Delhi,
India
Affordable Websites developers can learn
how to use Active Server Pages (ASP) to
customize the display of the current
date and time on your Web page. Active
Server Pages (ASPs) are Websites pages
that contain server-side scripts in
addition to the usual mixture of text
and HTML tags. |
|
More About ASP for Web Site Developer,
Mumbai / Bombay, India
ffordable Active Server Pages or ASP, is
a technology that enables websites
developers to make dynamic and
interactive web pages. ASP uses
server-side scripting to dynamically
produce websites pages that are not
affected by the type of browser the
websites visitor is using. |
|
Application Object of ASP, United
Kingdom
An application on the Websites may be a
group of ASP files designed by an
affordable websites developer. The ASP
files work together to perform some
purpose. The Application object in ASP
is used to tie these files together |
|
ASP tutorial, Maharashtra
Affordable Active Server Pages (ASPs)
are Websites pages that contain
server-side scripts in addition to the
usual mixture of text and HTML
(Hypertext Markup Language) tags. |
|
What is Active Server Page? - a
definition , Andhra Pradesh
"An Active Server Page (ASP) is an HTML
page that includes one or more scripts
(small embedded programs) that are
processed on a Microsoft Websites server
before the page is sent to the user. |
|
What is Active Server Pages? - A Word
Definition, Uttar Pradesh
"Abbreviated as ASP, a specification for
a dynamically created affordable
Websites page with a .ASP extension that
utilizes ActiveX scripting -- usually VB
Script or Jscript code. |
|
So What's an affordable Active Server
Page?, USA
ASP is not a software package like
FrontPage. ASP is a technology in
itself. It's a feature built into a
different piece of software. Windows NT
server comes bundled with it's own copy
of the IIS Web Server, this is a full
power Web Server that will handle almost
anything you can throw at it.
|
|
ASP tutorial for beginners and free
scripts, Kolkata
Active Server Pages (ASPs) are
affordable Web pages that contain
server-side scripts in addition to the
usual mixture of text and HTML
(Hypertext Markup Language) tags.
|
|
What is Active Server Page? , Delhi,
India
An Active Server Page (ASP) is an HTML
page that includes one or more scripts
(small embedded programs) that are
processed on a Microsoft Web server
before the page is sent to the user.
|
|
What is Active Server Pages? - A Word
Definition , Mumbai, India
Abbreviated as ASP, a specification for
a dynamically created Web page with a
.ASP extension that utilizes ActiveX
scripting -- usually VB Script or
Jscript code. When a browser requests an
ASP, the Web server generates a page
with HTML code and sends it back to the
browser.
|
|
So What's an affordable Active Server
Page?, Chennai, India
ASP is not a software package like
FrontPage. ASP is a technology in
itself. It's a feature built into a
different piece of software. For ASP you
need either Microsoft Internet
Information Server or a Personal Web
Server. |
|
ASP Tutorial, Gurgaon, India
Free HTML XHTML CSS JavaScript DHTML XML
DOM XSL XSLT RSS AJAX ASP ADO PHP SQL
tutorials, references, examples for web
building. |
|
All about Active Server Pages , Ranchi,
India
ASP, PowerASP Active Server Pages
articles links tutorials |
|
Active Server Pages Resource, Jamshedpur,
India
Active Server Pages Resource. Building
dynamic Web sites with the power of ASP
.About Us, The purpose of the Active
Server Pages Resource is to provide . |
|
Microsoft: Active Server Pages (ASP)
Forum, Jamshedpur, India
Technical support forums of ASP and
mutual help system for computer
professionals |
|
Active Server Pages and ASP.NET
Training, Bangalore
Courses on Active Server Pages (ASP) and
Active Server Pages+ (ASP+) in San
Francisco, Seattle and San Jose, taught
by best-selling author Stephen Walther. |
|
Active Server Pages Articles & Tutorials
, India
Affordable Active Server Pages Articles
& Tutorials, Sample Code, Sample
Chapters, Events, Books, Jobs, Blogs,
Products and Web Sites developer
resources. |
|
Active Server Pages interview questions,
West Bengal, Kolkatta
Affordable Active Server Pages interview
questions . Windows Server 2003 Active
Directory and Security questions ·
Windows Server 2003 interview and
certification .
|
|
How to Access Sql Server in ASP, India ,
West Bengal
Describes how to access Microsoft SQL
Server in Active Server Pages. Provides
an example to demonstrate the method |
|
Introduction to Active Server Pages,
India, Kolkata,Saltlake
Rather cling to good ol' Visual Basic
and forget you ever heard of Perl? Let
ASP welcome you into its loving arms
|
|
PHP:
|
|
|
Usage of PHP,Kolkatta
PHP generally runs on a websites server,
taking PHP code as its input and
creating Web pages as output for
affordable websites development, but
command-line scripting and client-side
GUI applications are part of the three
primary uses of PHP as well.
|
|
Courses on PHP for affordable Websites
Developer, Pune, India
This hands on PHP Programming course
provides the knowledge necessary to
websites design and websites develop
dynamic, database-driven web pages using
PHP version 5. PHP is a language written
for the websites.
|
|
Courses on PHP for affordable Websites
Developer, Pune, India
This hands on PHP Programming course
provides the knowledge necessary to
websites design and websites develop
dynamic, database-driven web pages using
PHP version 5. PHP is a language written
for the websites.
|
|
PHP Developer Center, Switzerland
From simple scripts to enterprise-class
websites applications, PHP is one of the
most popular programming languages in
the world for the affordable websites
developers. Our site is the source for
information about using PHP with Yahoo!
Web Services APIs. |
|
PHP/MySQL Tutorial, Chennai, India
Open source has brought a lot more than
Linux to the computing world. It has
also given us PHP and MySQL. According
to Graeme, PHP and MySQL are the world's
best combination for creating
data-driven websites. " |
|
Install PHP5 Apache MySQL on Windows,
Kolkatta, India
"This new release of WAMP5 now includes
the possibility to limit acces to your
server from outside users. A new link in
the WAMP5 menu allows you to switch from
offline to online websites. " |
|
PHP Help: Incremental MySQL Backups,
Denmark
Backing up a database is something that
should be done regularly on a dynamic
driven website. You simply never know
when the server is going to crash, or
your database becomes corrupted for the
affordable websites. Therefore, it is a
wise decision to take precautions and
backup your database as often as
possible. |
|
a couple of articles on php, UK
In PHP, unlike many other languages, you
can choose between using an object
oriented (OO) or a procedural approach.
Most PHP programmers use a procedural
approach by default, since web pages
themselves operate in a very procedural
way (this tag, then this tag, then this
tag). |
|
PHP Articles, Hydrabad, India
"Deploy PHP Pages and JSP Pages Within
the Same Web Context August 7, 2006You
need to integrate PHP content and JSP
content in a single Web application.
Should you convert the PHP to JSP, or
vice versa? A better question is why
choose. You can deploy both in the
affordable Web application context. "
|
|
phpRiot() :: Home :: PHP articles, PHP
tutorials, Kolkata,Salt Lake
"Welcome to phpRiot(), a site dedicated
to development of web and non-web
software in PHP. This site contains a
wide range of original articles relating
to server-side technologies such as PHP,
MySQL, PostgreSQL and Apache, and
client-side technologies such as XHTML,
CSS and JavaScript." |
|
PHP Tutorial, Bangalore, India
"PHP is a powerful server-side
affordable scripting language for
creating dynamic and interactive
websites. PHP is the widely-used, free,
and efficient alternative to competitors
such as Microsoft's ASP. PHP is
perfectly suited for affordable Web
development and can be embedded directly
into the HTML code. |
|
PHP Tutorial - Introduction, USA
"It is also helpful to think of PHP in
terms of what it can do for you. PHP
will allow you to: Reduce the time to
create large and affordable websites.
Create a customized user experience for
visitors based on information that you
have gathered from them. |
|
PHP MySQL Tutorial, Germany
"PHP and MySQL are usually associated
with LAMP (Linux, Apache, MySQL, PHP).
However, most PHP developer ( including
me ) are actually using Windows when
developing the PHP application. So this
page will only cover the WAMP ( Windows,
Apache, MySQL, PHP ). You will learn how
to install Apache, PHP, and MySQL under
Windows platform. |
|
PHP: A simple affordable tutorial -
Manual, Kolkata, Salt Lake
In this tutorial we assume that your
server has activated support for PHP and
that all files ending in .php are
handled by PHP. On most servers, this is
the default extension for PHP files, but
ask your server administrator to be
sure. |
|
PHP Downloads, Holland
Please choose the mirror closest to you
from which to download the file. The
current mirror is highlighted in yellow,
mirror sites detected to be out of date
or disfunctional are not listed for your
convenience. " |
|
PHP-GTK : Downloads, UK
"GTK+ version: PHP-GTK 2 currently
supports GTK+ 2.6.9 or greater. You can
obtain the latest stable release of GTK+
2.x from..." |
|
PHP Editor Review - PHP IDE, Canada
"MyEclipse provides an integrated XML
editor for standalone XML development as
well as as for use with the Struts
Modeler and the Java Server Faces (JSF)
Outline editor Main features include:
|
|
PHP Editor - The original by DzSoft ,
Digha, West Bengal, India
"DzSoft PHP Editor is a handy and
powerful tool for writing and testing
PHP and HTML pages. With its deceptive
simplicity, the interface of DzSoft PHP
Editor is comfortable both for beginners
and experienced programmers, making PHP
development easy and productive."
|
|
PHP Editor - Download Leading PHP
Editor(IDE) , UK
PHP Editor by EngInSite - create, edit,
debug, and run PHP 4 and PHP 5 scripts
with this powerful Editor. EngInSite PHP
Editor allows you to create, edit, run,
and debug PHP 4 and PHP 5 scripts from
an integrated development environment
(IDE). |
|
Rapid PHP Editor 2006 - fully featured
PHP editor, Kerala
"Rapid PHP editor is powerful, quick and
sophisticated PHP editor that extends
far beyond the essentials of regular PHP
editing environments. |
|
PHP Expert Editor ,
PHP Expert Editor is an easy-to-use IDE
for Windows with UTF-8 support. This
editor supports Perl, Python, Java
Script and other languages too. This
Editor specially designed for PHP-masters
and has a nice features for beginners
and professional programmers |
|
PHP Help: PHP Freaks,New Zealand
Welcome to PHP Freaks.com: Your PHP Help
Center! This website exists to provide
you with information to use while
learning or developing PHP and MySQL. If
you need PHP Help or you would like to
provide PHP Help to other developers,
you are in the right place. |
|
PHP Help, PHP Programming, PHP Code, PHP
Tutorials, Australia
Having a formalized unit testing
infrastructure for your projects will
save you time in the long run,
especially when looking for bugs in
code. This article introduces you to
setting up a unit testing framework. It
is excerpted from chapter 6 of the book
Advanced PHP Programming, written by
George Schlossnagle |
|
PHP: Getting Help, West Indies
A good place to start is by skimming
through the ever-growing list of
frequently asked questions (with
answers, of course). Then have a look at
the rest of the online manual and other
resources |
|
PHP Tutorial - Introduction,
India,Bangalor
An affordable PHP tutorial that covers
all the basics of PHP. It is geared
towards web developers with little or no
PHP experience |
|
PHP MySQL Tutorial , Kolkata
Simple PHP and MySQL tutorial with
examples like creating a guestbook,
uploading image to database and creating
simple content management system (CMS).
|
|
PHP: Hypertext Preprocessor, US
The "PHP Code Camp @ Nite" with PHP Core
Devs Marcus Börger and Sara Golemon.
They go through from PHP basics to PHP
OOP and implementing your own PHP .. |
|
ASP.net:
|
Welcome to the ASP.NET Resource Center
for websites programming, Salt Lake,
India
ASP.NET is one of the most popular
Internet websites programming language
for the programmers . Our ASP.NET
Resource Center focuses on the ASP.NET
content available online. ASP.NET-based
applications. Keep track of ASP.NET
developments. open-source ASP.NET
projects. Check out our ASP.NET
terminology list— ASP.NET-related terms
from the ASP.NET Resource for websites.
|
|
ASP.NET, Visual Basic, Visual Studio -
The Microsoft .NET programming, India,
Bangalore
This .NET site contains valuable tips,
programmers websites requirments,
articles, news, discussion forums
relating to Microsoft .NET technology
with topics including ASP.NET, Visual
Basic, .NET framework, web
developmentand programming, C#,
components and much more about the
websites of the programmers.
|
|
J2EE Introduction | ASP.NET vs J2EE vs
ASP.NET Tutorial and programming
sourcecode, Hydrabad, India
This high-level guide is for ASP and
ASP.NET developers who want to migrate
their e-business applications to J2EE
for programmers or build J2EE
applications from the ground up, or just
want to see the differences of J2EE vs
ASP.NET programming in this tutorial for
programmers.
|
|
ASP.NET Security: 8 Ways to Avoid Attack
form crack programmers, USA
Building ASP.NET Websites applications
has never been easier for programmers to
develop a websites. Visual Studio.NET
hides so many technical details behind
the scenes that websites developers need
only concentrate on the core business
logic for programming. If you don't,
you'll quickly find your ASP.NET apps
vulnerable to attack on websites
programming. |
|
ASP.NET Sample programmers, Kolkata,
Salt Lake, India
This is a sample ASP.NET control using
the Amazon E-Commerce Service for
programming. The control performs a
blended search on the Amazon catalog and
returns the results in a data grid for
programmers
|
|
Working with Web Resources in ASP.NET
2.0, Canada
In Microsoft ASP.NET 1.1, if you wanted
to deploy static files such as .html
files, .css files, image files, and
script files by using a COM control for
programming , you had to create an
installer and bundle these files
together with the COM control for
programmers.
|
|
ASP.NET 2.0 Training Center: Cross
Training for Web Developers and
programmers, Canada
In ASP.NET 2.0 development is an
Integrated websites Development
Environment (IDE): the more specialized
(and free) ASP.NET-specific Visual Web
Developer (VWD). write ASP.NET code
using a simple text editor ASP.NET 2.0
includes an integrated websites server .
The code examples will commonly used
ASP.NET language, Visual Basic (VB). If
working in ASP.NET programming
environment for a websites.
|
|
ASP.NET QuickStart Tutorial, India ,
Calcutta
The ASP.NET Developer Center is the key
MSDN resource for ASP.NET. .NET
Framework Documentation The .NET
Framework 2.0 comes with reference and
conceptual
|
|
ASP.Net Developers Sites, Kolkata, Salt
Lake, India
ASP.Net Tutorial for Beginners - What is
this all about? ... The ASP.NET
Developer Center is the key MSDN
resource for ASP.NET. Ypu will find new
to ASP.
|
|
ASP.NET Tutorial, India ,Kolkata
ASP.NET is the latest version of
Microsoft's Active Server Pages
technology (ASP). ASP.NET is a part of
the Microsoft .NET framework, and a
powerful tool for creating dynamic and
interactive web pages |
|
ASP.Net Portal Tutorials and DotNetNuke
Resources, Bangalore, India
Tutorials and Resouces for the ASP.Net
Portal Developer. We focus on ASP.Net
portals like DotNetNuke. Your complete
source for ASP.Net portal tutorials
|
|
ASP.Net Application, India, Kolkata,Salt
Lake
ASP.NET improves on the type of
application that developers could use in
classic . The ASP.NET Web Application is
the type of application most developers.
|
|
ASP.NET Application Life Cycle Overview,
India, Salt Lake
Within ASP.NET, several processing steps
must occur for an ASP.NET application to
be initialized and process requests.
Additionally, ASP.NET is only one piece
of the Web server architecture that
services requests made by browsers. |
|
Simple Chat Application in ASP.NET - The
Code Project - ASP.NET , India, Kolkata,
Salt Lake
A single ASP.NET worker process will
host both of the ASP.NET applications.
On Windows XP and Windows 2000 this
process is named aspnet_wp.exe, and the
process runs under the security context
of the local ASPNET account. On Windows
2003 the worker process has the name
w3wp.exe and runs under the NETWORK
SERVICE account by default. |
|
What is ASP.net?, Hydrabad, India
You've probably heard the word ASP.net
fairly often these days, especially on
developer sites and news.ASP.NET is not
just the next version of ASP; it is the
next era of web development. ASP.NET
allows you to use a full featured
programming language such as C#
(pronounced C-Sharp) or VB.NET to build
web applications easily.
|
|
ASP .Net Programming and Coding, Dehli,
India
ASP.NET makes it easy to perform common
tasks, from simple form submission and
client authentication to deployment and
site configuration. For example, the
ASP.NET Page Framework allows you to
build user interfaces that cleanly
separate application logic from
presentation code, and handle events in
a simple, VB-like forms processing
model. |
|
ASP.NET Training , India , Kolkata
This ASP.NET training course teaches
students to use Visual Studio 2005 and
Visual C# 2005 to build ASP.NET 2.0 Web
pages and XML Web services. Students
learn to understand the new architecture
behind ASP.NET 2.0 and deploy ASP.NET
applications. |
|
Programming Languages in ASP.NET, United
Kingdom
An ASP.NET page is restricted to code
written in a single programming
language. Currently, ASP.NET supports
Visual Basic, C#, and J#. The default
language is Visual Basic, but any other
language can be declared as the default
language for the page by placing a
directive at the top of the page. |
|
Learn ASP.NET, Kolkata, Salt Lake, India
ASP.NET is a technology for creating
dynamic Web applications. you can author
ASP.NET applications in most .NET
compatible languages, including Visual
Basic, C#, and J#. ASP.NET pages (Web
Forms) are compiled, providing better
performance than with scripting
languages.When building these pages, you
can use ASP.NET server controls. |
|
Java Script:
|
Test JavaScript, Test JavaScript
JavaScript is the scripting language of
the Web! JavaScript is used in millions
of Web pages to improve the design,
validate forms, detect browsers, create
cookies, and much more. JavaScript is
the most popular scripting language on
the internet. JavaScript is easy to
learn! You will enjoy it! |
|
Java script tutorial for the total
non-programmer, Bangalore, India
Everyone that wants to program
JavaScript should at least try reading
the following section. If you have
trouble understanding JavaScript, don't
worry. The best way to learn JavaScript
is from the examples presented in this
tutorial. After you have been through
the lessons, come back to this page and
read JavaScript again.
|
|
JavaScript Source: Free JavaScripts,
Tutorials, Example Code , Hydrabad,
India
The JavaScript Source is an excellent
JavaScript resource with tons of "cut
and paste" JavaScript examples for your
Web pages. All for free! |
|
JavaScript Tutorials for
Developers,Bangalore, India
In this article we're going to focus on
a programming concept--writing your own
functions. Knowing how to write your own
functions will improve almost any
JavaScript you create. In fact, you'll
see how custom-made functions can
enhance several of the JavaScript tricks
you've already learned.
|
|
Javascript Tutorial - Intro, Dehli,
India
JavaScript has been around for several
years now, in many different flavors.
The main benefit of Javascript is to add
additional interaction between the web
site and its visitors at the cost of a
little extra work by the web developer.
Javascript allows industrious web
masters to get more out of their website
than HTML and CSS can provide.
|
|
Javascript Tutorial / WebDeveloper.com ,
Calcutta, India
This tutorial introduces JavaScript, a
language you can use to embed commands
... This tutorial supplements Netscape's
official JavaScript Authoring Guide
|
|
Javascripts by Java-Scripts.net: Free
javascripts, tutorials , Hydrabad, India
Java-scripts.net offers free cut and
paste javascripts. The site has free
java scripts for your website.
Javascripts include rotating images and
banners |
|
JavaScript - Table of Contents, Kolkata,
India
Javascript tutorials table of contents.
a standard JavaScript template; where is
JavaScript placed; 'hello world'
example; alert, prompt&confirm windows
|
|
Tutorials JavaScript , Salt Lake, India
Before we get started I would like to
just inform you a bit on the background
of JavaScript. In 1995, JavaScript was
developed by Netscape Communications
Corp (The same company who build the
Netscape Navigator). At first, was
referred to as LiveScript. Netscape
decided to change its name to JavaScript
because of its relationship with Java.
|
|
Free JavaScript Source Code :freeprogrammingresources.com,
Hydrabad, India
Index of JavaScripts with different
categories . Free cut and paste
JavaScript examples for your web pages.
JavaScript Scripts, Code Snippets and
Code Samples. Lots of free JavaScripts
at Code Beach.
|
|
Data Base:
|
My SQL:
|
History of MySql, India
MySQL is a multithreaded, multi-user,
SQL Database Management System (DBMS)of
a company. MySQL is available as free
software under the GNU General Public
License (GPL), MySQL is owned and
sponsored by the companies. |
|
Attention MySQL Users, London
MySQL users of the several companies
find all you need around MySQL here
including applications, tools, add-ons,
training,and more. Trusted and
recommended by company of MySQL
developer. |
|
Using MySql from PHP, Calcutta, India
One of PHP's prime benefits of the
company is its close integration with
databases, especially MySQL. Having
explained the basics of MySQL, John
Coggeshall turns his attention to
demonstrating to the companies how to
use MySQL from PHP.
|
|
MySQL AB :: Articles about MySQL,
Kolkata, India
This article of the company explains how
to tune a MySQL database for use with eZ
publish. MySQL is a database engine used
by several companies eZ publish to store
content. While other databases are
supported by eZ publish (such as
PostgreSQL and Oracle).
|
|
MySQL Articles, Kolkata, India
The MySQL distribution provides several
tools for database developers and
administrators of a company, but they
don't always work everywhere.
Fortunately, the companies of worldwide
MySQL community has produced plenty of
useful tools. |
|
MySQL Articles, New Alipore, India
This chapter provides an overview of the
naming conventions and other syntax
necessary to work in MySQL ofthe
company. Going through this chapter will
also help you to get started in SQL by
teaching you and your companies
employee's in various commands and
shortcuts that will help the SQL
beginner. |
|
MySQL Help, MySQL Tutorials, Kolkata,
India
MySQL is related to a company an open
source relational database management
system (RDBMS). It uses Structured Query
Language (SQL)and companies members are
accepts it. |
|
Beginning MySQL Tutorial , Alipore
The database has become an integral part
of almost all companies . Without it,
many things of the company ,we do would
become very tedious, perhaps impossible
tasks. |
|
MySQL 5.0 Reference Manual :: 3
Tutorial, Gurgaon, India
"This chapter provides to a company,the
tutorial introduction to MySQL by
showing how to use the mysql client
program to create and use a simple
companies database. " |
|
MySQL Tutorial - Introduction, Haryana,
India
"MySQL is the most popular open source
database server for the company. On top
of that, it is very commonly used in
conjunction with PHP scripts to create
dynamic and powerful server applications
of companies. " |
|
MySQL 4.0.27 download - MySQL, Mumbai,
India
"The MySQL database server is the
world's most popular open source
database. Its architecture makes it
extremely fast and easy to customize. " |
|
Download MySQL (Windows) Server 5.1,
Salt Lake, Kolkata
"MySQL 5.1 is the latest version of the
world's most popular open source
database. It gives corporate developers,
DBAs and ISVs an array of new enterprise
features to make them more productive
developing, deploying, and managing
industrial strength applications." |
|
Download MySQL 4.1.18 - MySQL, Howrah,
India
"MySQL is a very fast, multi-user,
multi-threaded and robust SQL
(Structured Query Language) database
server. The world's most popular open
source database. " |
|
Installing mysql on windows , Sweden
"Once you have successfully downloaded
the Windows version, installing it is a
breeze... trust me! (The installation
steps below have be tested on Win95 and
Win98 using
mysql-shareware-3_22_34-win.zip "
|
|
MySQL Help [Archive] - PHP-Editors,
France
"I have a problem, when I run this
script the browser has a problem with
the ""{"" at the bottom of this page. I
have changed its color to red. What am I
doing wrong? " |
|
MySQL Help, UK
"Hey Guys, I downloaded a tutorial on
joining MySQL tables in a query from
DMXZone however what I am trying to do
goes slightly past the scope of that
tutorial. I have tried playing around
with the SQL query I want but cannot get
it to work. If someone has some insight
into this it would be much appreciated.
" |
|
MYSQL Query Help Please - MySQL,
Bangalore, India
Bearfoot Software AS major product is a
database engine with extremely small
footprint. It has been developed since
2001 by the founder of Birdstep
Technology ASA, Olaf Vethe. |
|
MySQL AB :: MySQL Introduces New
Easy-to-Use, Lucknow, India
"MySQL AB, developer of the world's most
popular open source database, today
announced MySQL Administrator, a new
open source tool with a graphical user
interface (GUI) designed to provide easy
management and monitoring of MySQL®
database servers. " |
|
phpMyAdmin | MySQL Database
Administration Tool , Bangalore, India
phpMyAdmin is a tool written in PHP
intended to handle the administration of
MySQL over the Web. |
|
MySQL Administration, USA
MySQL Administration correctly
administering the MySQL server,
including the manipulation the privilege
system, and making intelligent decisions
about the capabilities (permissions)
given to users.So you've finally
correctly installed the MySQL server.
|
|
Basic MySQL Administration, Guwahati,
India
This article covers the basics of MySQL
administration. You will learn how to
stop and restart MySQL safely and how to
configure and administer your database
server. |
|
MySQL AB :: MySQLGUI downloads,
Jharkhand
"Development of MySQLGUI has been
suspended. Our current development
efforts are directed towards the
development of MySQL Administrator and
MySQL Query Browser. " |
|
Oracle
|
Oracle server, Bangalore, India
Know about SOA-based applications,
Oracle Company Database 10g, Oracle
server Fusion Middleware, and know about
it more contact with oracle companies.
|
|
Oracle database, New Dehli, India
An Oracle companies database consists of
a collection of data managed by an
Oracle database management system. One
company can refer to the Oracle DBMS
unambiguously as Oracle DBMS or as
Oracle RDBMS.
|
|
Oracle Books, Canada
The companies updated to cover Oracle
10g, this edition of the highly regarded
Mastering Oracle SQL has a stronger
focus on practical and on
Oracle-specific SQL technique. Who want
to harness the untapped power of Oracle
SQL, this guide will help the company.
|
|
Oracle Books for Application Program
Developer, Canada
Updated to cover Oracle 10g, Company
release this edition of the highly
regarded Mastering Oracle SQL has a
stronger focus on practical and on
Oracle-specific SQL technique. Several
companies want to harness the untapped
power of Oracle SQL, this guide will
help them.
|
|
Oracle Corporation, United Kingdom
In addition to the famous database,
Oracle supply a range of software
company to manage, share and protect
data and information of Companies.
|
|
Oracle Technology Network, Canada
Download Documentation from Company,
tips and community help for all Oracle
products of Companies.
|
|
Oracle Technology Network Solution,
India,Kolkata
ownload Documentation of the Company,
tips and community help for all Oracle
products.
Welcome to The Oracle FAQ, Kolkata, Salt
Lake
|
|
Welcome to The Oracle FAQ, Kolkata, Salt
Lake
An independent source of answers of
company covering Oracle - the software
giant and its products for the
companies. |
|
Oracle Partner Network - Public,India
Full list of outsourcing of several
Companies services including Remote DBA
from Oracle corp.
|
|
Oracle DBA and development articles,
scripts, Saltlake,Sec V
Scripts, articles, example code,
utilities and a user forum for the
company. Covers Oracle 8i, 9i and 10G
|
|
Oracle Corporation - Wikipedia, dehli
1989: Oracle the database company moves
world headquarters to Redwood Shores,
California.companies of Oracle
Corporation has dubbed the super
Enterprise Manager used to manage a
grid. |
|
Oracle Corporation - Wikipedia, Dehli
1989: Oracle moves world headquarters of
the company to Redwood Shores,
California. ... Oracle Corporation has
dubbed the super Enterprise Manager used
to manage a grid for companies. |
|
Oracle Underground Frequently Asked
Questions,Hyderabad
Home page of The Underground Oracle
Frequently Asked Questions (FAQ) List. A
valuable resource for all Oracle
professionals!!! You may not get the
Oracle ...
|
|
Oracle/SQL Tutorial ,Kolkata
Oracle SQL and PL/SQL tutorials from the
UC Davis Database and Information
Systems Group (DBIS)
|
|
Oracle/SQL Tutorial,Kolkata
Oracle SQL and PL/SQL tutorials from the
UC Davis Database and Information
Systems Group (DBIS)
|
|
Community for the Oracle DBA,Kolkata
Study notes and forums for Oracle DBA
certification exams.
|
|
Installing Oracle 9i on Red Hat Linux,
Bangalor
The only problem I experienced with
Oracle 9iR2 (9.2.0) on Red Hat 8.0 was:
... Running Oracle Installation on Red
Hat Enterprise Linux Advanced Server 3
... |
|
Oracle Tutorial, India
Free Oracle Tutorials. A series of
Oracle database tutorials featuring an
introduction to the Oracle DBMS, Oracle
SQL and SQL*Plus--PL/SQL--Oracle data .
|
|
Oracle guide to Development and
Configuration, India, Salt Lake
Information on developing and
configuring an Oracle Database based on
Oracle Certified Professional Test
Information; even if not pursuing the
OCP certification, they serve as a good
guide on some difficult Oracle subjects
because they illustrate some obscure
points which a DBA should understand
|
|
Oracle Help, Oracle Tutorials,
Kolkata,Salt Lake
Oracle introduced the first Relational
Database Management system based on the
IBM System/R model and the first DBMS
using IBM’s Structured Query Language
(SQL) technology. In addition to its
well-known 10g database, Oracle offers
software for managing, sharing and
protecting data and information. |
|
SkillBuilders: Free Oracle Tutorials ,Dehli
These completely free Oracle9i and
Oracle 10g tutorials are in-depth and
comprehensive lessons that will help you
learn about the Oracle Database.
|
|
Free Oracle Resources , Salt Lake, Sec V
Free Oracle Resources, Tutorials,
Articles, FAQs, Forums and examples of
... Free Oracle Tutorials and Free
Oracle Training Lessons are available
here ...
|
|
Oracle8i DBA Training Certification
Course, India
This Oracle8i DBA certification maps to
5 vendor exams. ... Oracle8i Network
Administration Training: Net8 Additional
Configuration and Troubleshooting ... |
|
Database Oracle Analytic Functions in
Oracle , Kolkata
View Tutorial: Database Oracle Analytic
Functions in Oracle 8i and 9i Tutorial
... components in Java, with life cycle
management and remote configuration. ...
|
|
Oracle 8i Application Programming,
India,Kolkata
The emphasis is on server-side
programming, with all features supported
in Oracle, ... Designer, Oracle 8i, and
JDeveloper); SQLJ and JavaServer Pages (JSP)
...
|
|
Oracle 9i JDBC Programming: Books: Jason
Price, Bangalor
Oracle 9i JDBC Programming (Paperback)
by Jason Price (Conductor) "Java has ...
Senior Vice President, Oracle Server
Technologies, Oracle Corporation ...
|
|
Oracle Sample Code and HowTo's,Kolkata
To illustrate how to use Oracle products
and technologies, OTN provides source
code and installation instructions for
complete, working sample applications. …
|
|
My Sql:
|
Know More About SQL / MSSQL / MS SQL,
Miami
The Company release MS SQL(MS SQL)
Server is a RDBMS produced by
Microsoft.Companies Developers use for
small- to medium-sized databases. The
code base for MS SQL Server originated
in Sybase SQL Server |
|
MS-SQL Server, Mumbai, India
When a company planning a secure MS
SQL-based computer system you have to
focus on several key elements of MS SQL.
the companies create appropriate
installation with proper access rights,
well-set rules for MS SQL users and a
mechanism. |
|
MSSQL Server 2000, Delhi, India
MSSQL Server 2000 communicates with
several companies heterogeneous
databases. The use of a linked server
facilitates the company 'sexecution of
queries on heterogeneous databases from
MS SQL Server. |
|
MS SQL Server Home, Jaipur, India
Visit to the portal of our company for
all the latest news and articles to help
you evaluate Microsoft SQL (MS SQL)
Server 2005 for your data management and
analysis needs.
|
|
MS SQL Server: Downloads, Delhi, India
Try Microsoft SQL Server 2005 of the
companies software on your servers to
see how its advanced technologies help
to reduce the company the total cost of
ownership (TCO) and drive of the MS SQL
Server.
|
|
MS SQL Server, Chennai, India
MS SQL Server and Sybase/ASE bothare
reliable for companies and communicate
over networks using an application-level
protocol called Tabular Data Stream (TDS).
The company , TDS protocol has also
effective protocol of MS SQL Server. |
|
Microsoft SQL Server 2005 E-Learning,
Kolkata, India
To Get Ready of your company for MS SQL
Server 2005 with Microsoft E-Learning is
essential. Experienced on MS SQL Server
2000? Try a free upgrade course today
for only companies developers.
|
|
MySQL AB and MS SQL, Ahmdabad, India
Next companies will look at the tools
and methods for migrating your actual
data from Access/MS SQL, followed by
some general guidelines for modifying
your companies database. |
|
Database Journal for MS SQL, Lucknow,
India
Microsoft company handled MS SQL Server
administration news, articles, scripts,
tutorials, forums, and resources for the
MS SQL Server 2000 / 7 / 6.5 database
professional. |
|
MS SQL Server, Gurgaon, India
The TDS protocol has also been
implemented by the company ,FreeTDS
project [2] in order to allow more kinds
of companies applications to communicate
with MS SQL Server . |
|
MS SQL Server, Agartala, India
This company describes the MS SQL Server
module developed by Dave Cole. It
provides a Python interface to the MS
SQL Server relational database system of
several companies.
|
|
CERT Advisory CA-2003-04, Bhubaneswar,
India
CERT® Advisory CA-2003-04 MS-SQL Server
Worm. Original release date: January 25,
2003 Last revised: January 27, 2003
Source: CERT/CC ... |
|
Microsoft SQL Server 2000, kerala, India
FIX: You receive an error message when
MS DTC for SQL Server 2000 reuses a
server process identifier (SPID) to
enlist in a distributed transaction ...
|
|
MS SQL Server module, Maharashtra, India
This page describes the MS SQL Server
module developed by Dave Cole. It
provides a Python interface to the MS
SQL Server relational database system.
...
|
|
MSSQL and Security, Bhopal, India
When planning a secure MS SQL-based
computer system you have to focus on
several key elements: an appropriate
installation with proper access rights,
... |
|
MSSQL and Security, Guwahati, India
When planning a secure MS SQL-based
computer system you have to focus on
several key elements: an appropriate
installation with proper access rights,
... |
|
Interactive SQL for MSSQL , Gurgaon,
India
Interactive SQL for MSSQL is a handy
tool for working with Microsoft SQL ...
Interactive SQL for MSSQL supports all
MS SQL versions starting from MS SQL ... |
|
MS SQL Server Help, Orrisa, India
Microsoft SQL Server is a relational
database management system. It supports
Structured Query Language (SQL), which
is the most common database language in
use today. While it is most popular for
use with small to medium sized
databases, it has been catching on for
use with large enterprise databases in
recent years. |
|
MSSQL Hosting, Bangalore, India
The Microsoft SQL Server 2005
database-only hosting package is ideal
for ecommerce and business web sites
which require a high-performance
database storage solution. MSSQL Server
is fast, reliable, secure and easy to
use |
|
SQL Tutorial - FunctionX, Kolkata, India
As somebody suggested, we opted to use
Microsoft SQL Server Database Engine (MSDE).
It is a very wonderful, powerful, and
free database ... MS SQL Server ...
|
|
Database Journal Forums , Patna, India
This is a discussion forum for
discussing all aspects of the world of
databases
|
|
Microsoft SQL Server Advisor, Ahmedabad,
India
Affordable website development India
MySql learn Source Code Control
Solutions for SQL Server -- Learn how to
keep track of the code you.
|
|
Ms Sql Source Control, Lucknow, India
Affordable website development India
MySql ms Sql Source Control -
SQLSourceSafe - SQL version control Tool
Source Control ... offers great
functionality to manage the source code
of SQL scripts, ... |
|
LIMIT clause for MS-SQL, Gugaon, India
Affordable website development India
MySql all source code in SQL · Ask a SQL
Pro Discussion Forum Categories ...
Oracle for MS SQL Server without the
headaches of stored procedures or temp
tables. ... |
|
Affordable website development India
MySql
Affordable website development India
MySql - MySql Development India, MySQL
Database Driven Application Development
in India. |
|
U2:
|
Test for u2 of WebSite, Test for u2 of
Test for u2 of WebSite WebSite |
|
U2 PDO Drive, Kolkata, Salt Lake, India
U2 PDO Driver, Part 2: Write PHP
applications to access U2 data ...
PHPfest Tutorial: Oracle Database 10g
Express Edition and Zend Core for Oracle
|
|
Tutorials. U2 PDO Driver, Calcutta,
India
Tutorials. U2 PDO Driver, Part 2: Write
PHP applications to access U2 data . U2
· Reusing an existing database
connection with MDB2 · AJAX Chat
Tutorial
|
|
OpenInsight for U2 FAQ, Bangalore, India
If I use the U2 database, will I need to
make any changes to my system? No.
OpenInsight’s U2 connector is so
seamless, that once the connection is
made,
|
|
IBM developerWorks for U2, Hydrabad,
India
U2 PDO Driver, Part 2: Write PHP
applications to access U2 data . This
tutorial -- the second in this series on
Apache Derby database use -- offers an
|
|
U2 Database application, United Kingdom
U2 PDO Driver, Part 2: Write PHP
applications to access U2 data . DB2
Database Tuning Tutorial | Platform
2015: Intel's Platfor
|
|
PHPDeveloper.org: PHP News, Views, and
Community, Kolkata, India
he question was if you can reuse an
exisitng database connection you've
already established and ... IBM
developerWorks: U2 PDO Driver Tutorial,
Parts 1 & 2 |
|
DeveloperWorks : Information Management
: Technical library view for U2,
Calcutta, India
This tutorial -- the second in this
series on Apache Derby database use . In
this article, you'll learn how to write
a PDO driver for U2 using U2 native
|
|
U2 Database server, USA
Tutorials. U2 PDO Driver, Part 2: Write
PHP applications to access U2 data .
Objects driver for U2 · Reusing an
existing database connection with MDB2 |
|
Schematic Design Tutorials for U2,
Kolkata, Salt Lake, India
Workspace Size frame change as P-CAD
Schematic’s 32-bit database converts all
.Connect U4 pin 15 with U2:A pin 1. Draw
the connection as shown in the Document.
|
|
PHPDeveloper.org: IBM developerWorks: U2
PDO Driver Tutorial , Dehli, India
IBM developerWorks: U2 PDO Driver
Tutorial, Parts 1 & 2 . series from the
IBM developerWorks pages that covers the
creation and use of a U2-PDO driver
|
|
MS Access:
|
MSAccess and VBA, England
Microsoft Access(MSAccess) is a
development environment each company
used to create computer databases.
companies are provides lessons,
examples, and links on how to use and
explore MS Access. We also provide some
guidance on VBA that ships with
Microsoft Access(MSAccess). |
|
MSAccess Database Help, India
Database Solutions of a company for
Microsoft Access(MSAccess) has been
designed to help & assist Microsoft
Access(MSAccess) 97, 2000, 2002 (XP) and
2003 database users and developers.
Companies will also find MSAccess
database examples and samples here.
|
|
About Microsoft Access (MSAccess,
Calcutta / Kolkata, India
The company of Microsoft Access(MSAccess)
provides users with one of the simplest
DBMS solutions.each companies, Before
purchasing MSAccess, be sure that your
system meets Microsoft’s system
requirements. Three of the major
components of MSAccess are tables,
queries, forms. |
|
Microsoft Office Online: Access 2003
Home Page, Kolkata, India
The Companies are working with IP
addresses in Access can be more complex
than working with text or Issues of the
companies that are fixed in Access 2003
by Office 2003 Service Pack 2 … |
|
Microsoft Access, Chennai, India
Introductory-level the Company can use
MS Access tutorial which covers topics
ranging from creating databases to
beginning VBA development. Exercises are
included for the companies.
|
|
Access 2000 Tutorial ,Mumbai, India
The Microsoft Company, an innovator in
providing distance learning degrees.
Courses can be taken online for the
companies, and through video tape,
telecourses, ...
|
|
Microsoft Access Tutorial, Delhi, India
This tutorial will help your company get
started with Microsoft Access and may
companies. First of all you need to
understand how Microsoft Access breaks
down a database. |
|
Microsoft Access Tutorial - Prof.
Holowczak,Gurgaon, India
In this tutorial the four basic
modulesof the Company to Access are
demonstrated: tables, forms, reports and
queries from the Zicklin School of
Business of companies.
|
|
Microsoft Access, Dehradun, India
The Company ,ADP files (supported in MS
Access 2000 and later), the
database-related features are entirely
different, because this type of file
connects to a MSDE or Companies
facility. |
|
Microsoft Access Fundamentals, Mumbai,
India
Resources For MS Access, MS Access
How-to Articles, MS Access Support, MS
Access Knowledge Base Articles.
|
|
Trevors MS Access FAQ,Faridabad, India
Answers to commonly asked questions for
all levels of users, code examples,
sample databases, add-ins. |
|
MS Access, Excel Database Design
Tutorials, Agartala, India
Well written and thorough explanations
on creating and maintaining database
through MS Access and Excel
|
|
Microsoft Access help, Ahmedabad, India
Free help and tutorials for Microsoft
Access. Tips for beginners and database
developers. Downloadable examples and
utilities. Flaws, bugs, traps, code, ...
|
|
MS Access tools from Peter's Software,
Hyderabad, India
MS Access shareware, freeware, tools,
help and tips. |
|
Ms Access tips, Aurangabad, India
MS Access tips. Below are a collection
of postings to Internet newsgroups and
discussion lists. Simulating a control
array on a form in Access97 ...
|
|
MS Access Programming, Kolkata, India
Microsoft Access is a database
management system (DBMS). It lets you
create relational databases, which means
that Access databases can link to tables
that have similar fields. Access
databases are the workhorses of many
offices, often used for mailing lists,
phone lists, and as address books.
|
|
Online MS Access Test, Faridabad
ExpertRating offers an online MS Access
test. Candidates who pass the MS Access
test receive a hard copy MS Access
certificate of accomplishment. |
|
What are the limitations of MS Access,
Delhi, India
What are the limitations of MS Access?
It's no secret: I do not trust Access. I
don't think it should be used in a
production environment for anything more
... |
|
Microsoft Access Security And Passwords,
Ahmedabad, India
vb123.com Garry Robinson's Popular MS
Access, Office and VB Resource Site ...
MS Access features three independent
types of passwords:. * Database
Passwords .. |
|
Microsoft Access Tutorials, Secunderabad,
India
Provides links to Microsoft Access
tutorials, information, and resources
that are rated by you.
|
|
Microsoft Access Consultants, Jaipur,
India
Custom software consultants for business
productivity. Improve your efficiency
with our specialized software including;
inventory control, ... |
|
DB2:
|
About DB2, Bangalore, India
The Company give the name DB2 was first
given to the DBMS in 1982 when IBM
released SQL/DS and DB2 on its mainframe
platform. DB2 can be considered for
Companies to be an object-SQL DBMS.For
many years DB2 was exclusively available
on IBM mainframes. |
|
IBM DB2 Content Manager V8.3
installation examples, Calcutta, India
The company walk through step-by-step
examples presented as viewlets, showing
how to install IBM DB2 Content Manager
V8.3.Companies newly updated to include
Linux. |
|
DB2 Product Family, Gurgaon, India
DB2 Universal companies Database is the
DBMS that delivers a flexible and
cost-effective database platform. The
companies DB2 UDB further leverages your
resources with broad support for open
standards. DB2 UDB has a solution for
companies built and priced to meet your
unique needs. |
|
IBM Software - DB2 Product Family,India
The DB2 Product of the company provides
what businesses need for data management
and business intelligence. DB2 Universal
Database (DB2 UDB) software runs on most
of the companies.
|
|
IBM DB 2 Software, Kolkata
IBM Information Management software for
DB2 for Company on demand business
extends functionality to provide
database servers, business intelligence,
content management, on several
Companies.
|
|
DB2 Universal Database,, India, Salt
Lake
The Company for DB2 UDB is compliant
with the FIPS 140-2 (Use of certified
Cryptographic Module) government . Large
companies page support in buffer pools
on DB2 UDB for Linux .
|
|
IBM DB2 - Wikipedia, the free
encyclopedia, Delhi
For many years the company of DB2 was
exclusively available on IBM mainframes.
IBM claims to others companies that the
new DB2 will be the first relational
database to "natively" store data of a
company.
|
|
DB2 Universal Database V8.1 Arrives,
Kolkatta,Salt Lake
DB2 UDB V8.1 company marks the next
stage in the evolution of relational
database providing for new levels of
information integration within your
e-infrastructure of the companies.
|
|
Microsoft PowerPoint - SAP DB 2 years
V2.ppt, India, Salt Lake
File Format of the company project:
PDF/Adobe Acrobat - View as HTML Jörg
Hoffmeister. SAP AG. SAP DB. A review on
2 years. of Open Source for companies,
needs higher I/O rate (factor 2) in
comparison to SAP DB (same workload) .
|
|
DB2 Magazine ,Kolkata
DB2 Magazine is devoted to DB2 and
targeted at database administrators,
analysts, programmers, designers,
consultants, and MIS/DP managers.
|
|
DB/2 Database Directory, Links,India
DB/2 Database. PostgreSQL. Sybase.
Progress Database. MiniSQL. Borland
Interbase. Informix Database. EasyBase.
Unidata. IMS DB/DC ... |
|
Sybase PowerDesigner IBM DB/2,
Kolkata,Salt Lake
PowerDesigner provides IBM DB/2
analysts, developers and administrators
with ... PowerDesigner supports many
unique capabilities of IBM DB/2 and also
...
|
|
DB 2...
StartingIndia, Salt Lake
Problem ,
DB 2... Starting Problem. Get answers to
your questions in our Database
Developer's Lounge forum
|
|
Database Journal: The Knowledge Center ,
Kolkata, India
IBM DB2 news, tutorials, forums, and
resources. From DatabaseJournal.com, the
Knowledge Center for Database
Professionals. |
|
DB2 Basics, Chennai, India
As an instance owner on the host running
db2, issue the following command. $
db2start ... db2->import from testfile
of del insert into workemployee ... |
|
Data Adapter for DB2 Database, Mumbai,
India
Way Software's adapter for the DB2
database enables you to access DB2 data
from XML, JDBC, ODBC, and SOAP-based Web
services and integrate DB2 data with ...
|
|
DB2 Universal Database Version 8.2,
Bangalore, India
Updated user setup instructions for
non-DB2 created users. Revision 1.1.4,
2005-07-13 ... Installing DB2 Version
8.2 on Red Hat Enterprise Linux (RHEL) 3
... |
|
DB2 , Kolkata, India
What is IBM DB2? Find out here! ...
Definition: DB2 is a relational database
system developed by IBM Corporation,
originally for use on large mainframe
...
|
|
PHP Database Programming with DB2 ,
Bhubaneswar, India
Having made the leap from MySQL to IBM's
proprietary DB2 universal database, Ian
explains how easy it is to get set up
and start using DB2 - and why you'd ...
|
|
DB2 for Windows for Dummies, Hydrabad,
India
Amazon.com: DB2 for Windows for Dummies:
Books: Paul C Zikopoulos,Lily
Lugomirski,Roman B. Melnyk by Paul C
Zikopoulos,Lily Lugomirski,Roman B.
Melnyk. |
|
DB2 Update Journal, Mumbai, India
ephon's monthly technical journal
covering DB2, predominantly in z/OS, but
also other platforms. Older issues,
including published code, are available
for ... |
|
DB2 Database for Linux, UNIX, Jaipur,
India
Migrating DB2 32-bit servers to 64-bit
systems (Linux and UNIX) ... Migrating
from DB2 UDB Version 7 servers (Linux
and UNIX) ... |
|
An Expert's Guide to DB2 Technology,
Bangalore, India
About: Chris is a DB2 for Linux, UNIX
and Windows lifer having worked at IBM
on DB2 since its inception. Follow along
as Chris shares his experiences and .
|
|
Affordable
JavaServer Pages tutorials, India
JavaServer
Pages (JSP) technology provides a
simplified, fast way to create dynamic
web content. JSP technology enables
rapid development of affordable website
designing that are server- and
platform-independent. |
|
C++
Language Tutorial, Bangalore, India
These
tutorials explain the C++ language from
its basics up to the newest features of
affordable website designing, including
basic concepts such as arrays or classes
and advanced concepts or templates.
|
|
PHP
Downloads, Kolkata, India
affordable
website designing in CGI only, packaged
as Windows installer to install and
configure PHP, and automatically
configure IIS, PWS and Xitami, with
manual configuration. |
|
SOAP
Tutorial, New Delhi, IndiaIn our SOAP
tutorial, you will learn what SOAP is,
and how it uses XML in affordable
website designing to exchange
information between applications. |
|
SQL Server,
India
A new
Management Studio and integration with
Visual Studio 2005 and the Microsoft
.NET common language runtime helps you
design affordable wesites and
applications faster and more
efficiently. |
|
ASP
Tutorial For Web Development, Chatham,
Ontario
In our ASP
tutorial you will learn about ASP for
Website design, and how to execute
scripts on your server.
|
|
|
|