LATEST NEWS

PARTNERSHIP

ZIOST TO DELIVER RAILO DEVELOPMENT

1 January 2010

We had deployed our services onto newer, faster Railo-powered server. Railo gaining more and more support as lowcost but powerful CFML engine. As dedicated CFML team, Ziost cannot stand apart of emerging technology and offering CFML development targeting Railo as well as Adobe Coldfusion.

Best wishes for 2010 for everyone !

Read more

ZIOST CMS IS OPEN TO PUBLIC NOW

29 July 2009

Ziost released it's content management system to public as open-source project. Ziost CMS is now available for download and free use: Ziost Labs announcement.

Read more

HIPAASPACE.COM CONTRACTED ZIOST TO PROVIDE SOLUTIONS FOR MEDICAL CODING AND BILLING

12 January 2009

Yesterday there was signed a contract between top management of HIPAASpace - www.HIPAASpace.com (the largest provider of Medical Coding and Billing solutions in US) and Ziost Technologies. As a part of this contract Ziost will be a main vendor of Medical Coding and Billing SDK for HIPAASpace products.

Read more

ZIOST CLONE CMS V.5 HAS BEEN RELEASED

2 September 2008

Powerful CMS SDK with several base implementations for different domains has been recently released by Ziost Labs subdivision

Read more

ZIOST HAS ENTERED INTO THE PARTNERSHIP AGREEMENT WITH IBE

23 May 2008

IBE Corp. is one of the biggest providers of media processing SDK and related solutions. IBE contracted Ziost to provide high-tech modules for the media conversion and on-line stream media processing modules.

Read more

Technology

Structured Query Language (SQL)

SQL commands are sent to the database using either the Open method of the Recordset object or the Execute method of the Connection object. The Open method opens a Recordset object based on the SQL command sent to the database. The recordset that is returned can be read, sorted, and modified. The Execute method does not return a recordset.

There are two main types of SQL statements:

  • Data Definition Language (DDL) Statements
  • Data Manipulation Language (DML) Statements

DDL statements are used to change the database structure, and DML statements are used to read, sort, and modify information. For more information on the statements supported by SQL, see the topic Supported SQL Statements.

Using SQL Statements

The information contained in this section is supported by CEDB providers only. SQL is used with ADOCE to create a subset of existing tables that can be queried and updated without an extensive programming effort. An instance of this subset is created in the form of a Recordset object. In the form of a Recordset object, data can be read, changed, and deleted. Information is returned from the database based on the rules specified in a SQL query. In ADOCE, the table returned by a SELECT statement is called a recordset.

The following code example shows how a recordset is opened using a SQL statement:

Dim rs, SQLcommand Set rs = CreateObject("ADOCE.Recordset.3.1") SQLcommand = "SELECT * FROM address WHERE lastname = 'Smith' ORDER BY lastname, firstname" rs.Open SQLcommand, "", adOpenKeyset, adLockOptimistic, adCmdText

The previous SQL statement generates a recordset using every field from the address table. Once the structure of the new recordset is defined, ADOCE fills the recordset with data. In this example, ADOCE populates the recordset with records that contain the string "Smith" in the lastname column. It also sorts the rows of data by last name and first name, making it easy to find a particular name, such as James Smith. The SQL command in the previous code example consists of the following commands and conditions:

SELECT

The SELECT statement generates a recordset from existing tables according to the parameters that follow the statement.

FROM

The * FROM command notifies the database engine to return all the fields in the addresses table. The asterisk (*) wildcard character refers to all fields. The fields specified in the SQL statement become the columns in the new recordset.

WHERE

The WHERE condition restricts the rows returned to only rows containing the string specified in the SQL statement. The rows specified become the rows in the new recordset. If there are no fields that match the query in the address table, the recordset is created with no rows.

ORDER BY

The ORDER BY command notifies the database engine to sort the records before returning them. The engine sorts records according to the specified columns. If multiple columns are listed, each successive column sorts the recordset. In the previous example, the recordset is sorted by last name, then further sorted by first name. Up to three columns can be specified in the ORDER BY statement.

Small Business

We've started a programm of assisting for startup companies with establishing their business at the IT sphere, this includes...

Read more

Big Companies

Business profit for big companies in working with Ziost can be shown in different approaches...

Read more

WORK FOR ZIOST

Junior Adobe Coldfusion Developer

Looking for the Adobe Coldfusion Developer. Base requirements: Adobe Coldfusion 8, Custom Tags development, CFC, MySQL, MS SQL.

Read more

Senior Java Developer

Senior Java Developer is needed for the full-time work. Base requirements: 3+ years of experience, J2EE 1.4, 1.5, 1.6; Java Beans, EJB, SOA, WebServices

Read more

Senior C# Developer

Ziost .NET Applications team is looking for the senior C# developer. Main domain of knowledge is UI WPF applications and ASP.NET/Silverlight applications.

Read more

Designer

Looking for web designer for creation of production-level visual design.

Read more

HTML/CSS coder

Looking for HTML/CSS coder for creating HTML layouts.

Read more