Gladius DB 0.8.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Gladius DB 0.8.0 (Default branch)
# 1  
Old 01-10-2009
Gladius DB 0.8.0 (Default branch)

Gladius DB is a fast and efficient PHP flat file database engine written in pure PHP. Its SQL syntax is compatible with a subset of intermediate SQL92. You will not need any specific extension to have it work, and it is bundled with an ADOdb lite driver. License: GNU General Public License v2 Changes:
Support for LONGTEXT fields, a stable implementation of rowset pre-caching, the introduction of a database-relative root directory, and minor bugfixes. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
DROP 
INDEX(7) SQL Commands DROP INDEX(7) NAME
DROP INDEX - remove an index SYNOPSIS
DROP INDEX index_name [, ...] [ CASCADE | RESTRICT ] INPUTS index_name The name (optionally schema-qualified) of an index to remove. CASCADE Automatically drop objects that depend on the index. RESTRICT Refuse to drop the index if there are any dependent objects. This is the default. OUTPUTS DROP INDEX The message returned if the command completes successfully. ERROR: index "index_name" does not exist This message occurs if index_name is not an index in the database. DESCRIPTION
DROP INDEX drops an existing index from the database system. To execute this command you must be the owner of the index. NOTES DROP INDEX is a PostgreSQL language extension. Refer to CREATE INDEX [create_index(7)] for information on how to create indexes. USAGE
This command will remove the title_idx index: DROP INDEX title_idx; COMPATIBILITY
SQL92 SQL92 defines commands by which to access a generic relational database. Indexes are an implementation-dependent feature and hence there are no index-specific commands or definitions in the SQL92 language. SQL - Language Statements 2002-11-22 DROP INDEX(7)