schema
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 45
XML Schema Viewer 1.0
XML Schema Viewer allows you to view XML output or files in a Noded Tree view. It can parse web site pages for XML output or load local XML files. Java Required. more>> XML Schema Viewer allows you to view XML output or files in a Noded Tree view. It can parse web site pages for XML output or load local XML files. Java Required.<<less
Added: 2006-07-02 License: Free Non-Commercial Price: $0.00USD
23 downloads
Other version of XML Schema Viewer
SchemaView-Plus 0.16
SchemaView-Plus module allows you to retrieve, draw and print database schema. more>> SchemaView-Plus 0.16 provides you with a wonderful application which is able to allow you to retrieve, draw and print database schema. It has a user friendly interface and very easy to use.
Added: 2007-06-23 License: Other Free / Open Source License Price: OtherFreeOpenSourceLicense
12 downloads
XML Schema Quality Checker 2.1
XML Schema Quality Checker is a program which takes as input an XML Schema written in the W3C XML schema language and diagnoses improper uses of the schema language. more>>
XML Schema Quality Checker 2.1 is a script which takes as input an XML Schema written in the W3C XML schema language and diagnoses improper uses of the schema language. Where the appropriate action to correct the schema is not obvious, the diagnostic message may include a suggestion about how to make the fix.
Major Features:
- For Schemas which are composed of numerous schema documents connected via or element information items, a full schema-wide checking is performed.
- Be run in batch mode to quality check multiple XML schemas in a single run.
Requirements: none
Added: 2007-06-22 License: Freeware Price: Freeware
14 downloads
XML Tutorials - XSD (XML Schema Definition) Syntax
This tutorial describes: Simple XML Elements with Pre-defined Data Types Simple XML Elements with Extended Data Types Complex XML Elements Simple Content XML Elements Empty XML Elements Anomymous Data more>> This tutorial describes: Simple XML Elements with Pre-defined Data Types Simple XML Elements with Extended Data Types Complex XML Elements Simple Content XML Elements Empty XML Elements Anomymous Data Types Sample XSD File - dictionary.xsd<<less
Added: 2006-08-14 License: Free for non-commercial use Price: Free
1196 downloads
bitweaver 1.0.1
Bitweaver is an advanced, Open Source, Object Oriented, Content Management System (CMS) and Web Application Framework written in PHP. It uses Smarty Templates for a simple HTML based templating system and ADOdb to support a multitude of databases more>> Bitweaver is an advanced, Open Source, Object Oriented, Content Management System (CMS) and Web Application Framework written in PHP. It uses Smarty Templates for a simple HTML based templating system and ADOdb to support a multitude of databases including MySQL, PostgreSQL and Firebird. Its strength lies in its highly modular and easily extensible design. This high degree of flexibility is considered "large grained modularity" and gives developers freedom to interleave open-source and proprietary code seamlessly. bitweaver has been designed from the very beginning, for speed from end-to-end: schema design, query utilization, and software design - a highly tuned, performance engine. The use of standard compliant XHTML Strict 1.0 and sophisticated tableless CSS has made bitweaver stand above the rest in the web application world. The well organized, nested style class system gives you substantial freedom with CSS based styling, with the least amount of work. With bitweaver, you are in control. bitweaver goes out of its way to let you make the decisions and design choices that best suit your problem.<<less
Added: 2005-07-06 License: LGPL Price: $0.00USD
12 downloads
Other version of bitweaver
TempusWiki
TempusWiki is a useful content management tool which focuses on time-based information, via a calendar. more>> TempusWiki is a useful content management tool which focuses on time-based information, via a calendar.
Major Features:
- Markdown syntax for content
- Supported databases: PostgreSQL and MySQL. SQLite is somewhat supported (database schema needs to be changed, but not the code).
- LDAP logins: users can reside on a LDAP server
- UTF-8 used for all data
- PHP Session data can be stored in the database
- Embedded calendar calendar entries are equal to other wiki entries (and live in the same namespace)
- Pages can be marked private, visible only to logged-in users
- Descriptions can be attached to page edits
- Page edits can be marked minor and thus not recorded in the history table
- Arbitrary files can be attached to pages
- RSS feed for public pages is available
- History of changes is tracked
- PHP 4.3+ (and a web server...)
- PostgreSQL 7.4+ or MySQL 4.0+
Added: 2007-09-21 License: GPL - Artistic License Price: GPLArtisticLicense
1 downloads
Freeform Framework
Freeform Framework is a next step in MVC for web. It is a complete solution for building large scale web applications. Main features: - Genuine architecture, not cloned from popular Java frameworks; - more>> Freeform Framework is a next step in MVC for web. It is a complete solution for building large scale web applications. Main features: - Genuine architecture, not cloned from popular Java frameworks; - Strict separation of business and presentation logic; - Secure action-based front controller architecture; - Pluggable and extensible session and user management; - Elegant form processing framework, client-independent; - Support any type of clients - from browsers to cellphones to XML applications; - Powerful class and resource packaging system, automatic class discovery and loading (no include()/require()!); - Experimental Persistence API with no schema files, SQL generators, class enhancers etc.; - Freddy, own realtime documentation system that pulls out doccomments from sources and respurce files that allows you to documents entire packages and to embed pictures. You distribute the documentation along with the packages, and you dont have to regenerate it after you made changes. Latest release features a demo application, support for ADODB RecordSets, fixes minor bugs and has more documentation.<<less
Added: 2005-02-07 License: Not Specified Price: Free
1730 downloads
Sequel 2.5
This is a lightweight database access toolkit for Ruby more>> Sequel 2.5 provides users with a professional and lightweight database access toolkit for Ruby. Sequel uses the concept of datasets to retrieve data. A dataset object encapsulates an SQL query, letting the query fetch all the data by using a Ruby DSL.
Major Features:
- Sequel provides thread safety, connection pooling and a concise DSL for constructing database queries and table schemas.
- Sequel also includes a lightweight but comprehensive ORM layer for mapping records to Ruby objects and handling associated records.
- Sequel supports advanced database features such as prepared statements, bound variables, stored procedures, master/slave configurations, and database sharding.
- Sequel makes it easy to deal with multiple records.
- Sequel currently has adapters for ADO, Amalgalite, DataObjects, DB2, DBI, Firebird, Informix, JDBC, MySQL, ODBC, OpenBase, Oracle, PostgreSQL and SQLite3.
Enhancements
- Add Dataset #set_defaults and #set_overrides, used for scoping the values used in insert/update statements
- Allow Models to use the RETURNING clause when inserting records on PostgreSQL
- Raise Sequel:DatabaseError instead of generic Sequel:Error for database errors, dont swallow tracebacks
- Use INSERT ... RETURNING ... with PostgreSQL 8.2 and higher
- Make insert_sql, delete_sql, and update_sql respect the :sql option
- Default to converting 2 digit years, use Sequel.convert_two_digit_years = false to get back the old behavior
- Make the PostgreSQL adapter with the pg driver use async_exec, so it doesnt block the entire interpreter
- Make the schema generators support composite primary and foreign keys and unique constraints
- Work with the 2008.08.17 version of the pg gem
- Disallow abuse of SQL function syntax for types (use :type=>:varchar, :size=>255 instead of :type=>:varchar[255])
- Quote index names when creating or dropping indexes
- Dont have column accessor methods override plugin instance methods
- Allow validation of multiple attributes at once, with built in support for uniqueness checking of multiple columns
- In PostgreSQL adapter, fix inserting a row with a primary key value inside a transaction
- Allow before_save and before_update to affect the columns saved by save_changes
- Make Dataset#single_value work when graphing, which fixes count and paginate on graphed datasets
Added: 2009-07-03 License: Other Free / Open Source License - MIT License Price: OtherFreeOpenSourceLicenseMITLicense
15 downloads
Metastorage
Tool that generates PHP persistent object classes that perform object-relational mapping (ORM). The generated code stores and retrieves objects from many types of relational databases: MySQL, PostgreSQL, Oracle, Microsoft SQL server, SQLite, etc.. more>> Tool that generates PHP persistent object classes that perform object-relational mapping (ORM). The generated code stores and retrieves objects from many types of relational databases: MySQL, PostgreSQL, Oracle, Microsoft SQL server, SQLite, etc.. Supports own Object Query Language (OQL), generates database schema instalation classes, Web forms classes and report classes. Provides a Web based and command line interfaces to execute the tool.<<less
Added: 2005-12-16 License: BSD Price: $0.00USD
10 downloads
Oracle Information Site (OIS) 1.36
Oracle Information Site allows DBAs to view the most important informations about all configured Oracle databases. Support for Oracle 8i, 9i and 10g (untested) is integrated. OIS gives the DBA many informations like - Instance Configuration more>> Oracle Information Site allows DBAs to view the most important informations about all configured Oracle databases. Support for Oracle 8i, 9i and 10g (untested) is integrated. OIS gives the DBA many informations like - Instance Configuration parameter - Running processes with detail view - Redo Log and Rollback segment usage - Tablespaces - Overview of all defined DBMS_JOBs - Memory Usage - Basic tuning views - General instance statistics - Very basic schema browser In addition OIS has a small integrated management interface which allows DBAs to have an overview of all DB machines with saveable comments. Finally a basic table exporter is also integrated. To use OIS youll need PHP4 or newer with OCI8 extension build in, and of course at least one Oracle instance. As OIS reads Oracles internal tables it require DBA rights to access them, else OIS wont work.<<less
Added: 2007-03-05 License: GPL Price: $0.00USD
11 downloads
Other version of Oracle Information Site
License:GPL
OpenCms 7.0.4
OpenCms is an open source website content management system. more>> OpenCms 7.0.4 brings you a powerful source website content management system for your computer. Intranet, Extranet and Internet sites can be quickly and cost-effectively created, maintained and managed. OpenCms enables you to create highly customized layouts and interactive functionality.
Using OpenCms is fully browser based. The OpenCms software is installed on a web server, users access the system from any location with their web browser.
Major Features:
- The Explorer view of OpenCms The Explorer view is designed like common file managers and shows the contents of the website. It provides all functions for editors to work on the website.
- The Direct Edit function Edit each content element directly from the frontend preview by clicking on a "Direct Edit" button.
- Structured content items Use custom structured content items with an underlying XML Schema Definition on your website and edit them with the integrated form based editor.
- The WYSIWYG editor Editing unstructured page contents is easy with OpenCms by using the built-in WYSIWYG editor.
- Previewing modified content Preview modified page contents directly from the editor by clicking on the "Preview" button without leaving the editor.
- Offline / Online workflow The project mechanism of OpenCms provides an integrated workflow environment with offline "staging" and online "live" systems on the same server.
- Advanced link management The OpenCms link management detects broken links and keeps internal links intact after move, rename or delete operations.
- Integrated image processing The integrated image scaling and resizing allows the manipulation of commonly used image formats.
- The Administration view Switch to the Administration view to perform advanced tasks like managing user accounts, configure search indexes and many more.
- Module Management Use the integrated module mechanism of OpenCms that allows convenient bundling of contents or functionality for deployment on other machines.
- Full text search engine Full text search in website documents like HTML pages, structured contents, office documents and many more is supported with a lot of configuration options.
- WebDAV integration Full support for the WebDAV protocol is available in OpenCms to enable editing of content
- JSP integration in OpenCms allows easy and standards based creation of dynamic functionality for templates, dynamic forms and other use cases.
Added: 2008-05-27 License: Other Free / Open Source License Price: OtherFreeOpenSourceLicense
14 downloads
nCubed Free Members Only 0.6
The nCubed.com Free Members Only script was developed in response to the many requests from online development communities requesting a simple password protection schema. Adding the password protection to your page is relatively simple: Add two more>> The nCubed.com Free Members Only script was developed in response to the many requests from online development communities requesting a simple password protection schema. Adding the password protection to your page is relatively simple: Add two "include" files, insert a couple of conditional statements, add your members to the allowed members list and youre done... easy peasy. What if you know nothing about ASP/VbScript? No worries at all. The files you download are all but ready to use. There are comments in the code explaining exactly what you need to do and what not to touch. All you really need to do is copy and paste your content into the appropriate area and add your members to the allowed members list.<<less
Added: 2003-10-31 License: Freeware Price: 0.00
11 downloads
Other version of nCubed Free Members Only
License:Freeware
SQLite GUI 0.1
SQLite GUI is a simple GUI to work with SQLite dB. You can create, delete and update tables a database. All the available tables in the database is shown. The records of various types including BLOB are displayed in the DataGridView. And the data in more>> SQLite GUI is a simple GUI to work with SQLite dB. You can create, delete and update tables a database. All the available tables in the database is shown. The records of various types including BLOB are displayed in the DataGridView. And the data in the DataGridView can be printed. The schema for all the available tables is displayed. Dependencies Add the reference SQLite.Net.dll to the project and use the namespace Finisar.SQLite to work with SQLite. Finisar.SQLite Finisar.SQLite is an ADO.NET Data Provider for accessing SQLite-Databases using the .NET-Framework. In SQLite a complete database is stored in a single disk file. SQLite is zero-configuration - no setup or administration needed. SQLite itself is "a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine" (quoted from the sqlite.org Website). The Finisar.SQLite Data Provider is an easy way to use the SQLite-Database in .net Languages like C# and VB.net.<<less
Added: 2007-04-19 License: Free Non-Commercial Price: $0.00USD
35 downloads
Adaptrust Album Publisher 2.0
Adaptrust Album is designed for sharing your photo, product pictures, project image document on the web. Secured schema allows control your album. Integated email enables send picture link to your friends on the fly, you also have options to compress the more>> Adaptrust Album is designed for sharing your photo, product pictures, project image document on the web. Secured schema allows control your album. Integated email enables send picture link to your friends on the fly, you also have options to compress the original picture by any rate. Web-based Album is deliverable as a web plug-in which uses ASP.NET and C#, we currently privide SQL Server 2000 version, MS Access version. Price: (SQL Server version) $228 Price: (MS Access) $98 DEMO UserID: demo DEMO Password: demo<<less
Added: 2004-08-27 License: Free Non-Commercial Price: 0.00
10 downloads
Other version of Adaptrust Album Publisher
License:Free for non-commercial use
web2ldap 0.16.23
web2ldap is a full-featured web-based LDAPv3 client. more>> web2ldap 0.16.23 is designed to be a full-featured web-based LDAPv3 client.
Major Features:
- Generic LDAPv3 client which does not make any assumptions about the tree structure or LDAP schema.
- Kind of a swiss-army knife for accessing/manipulating LDAP servers without having to configure anything.
- Secure LDAP client with clean login behaviour.
- Schema browser which displays references/dependencies within an LDAPv3 schema.
Requirements: Python-LDAP
Added: 2008-06-12 License: GPL - GNU Public License Price: GPLGNUPublicLicense
16 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above schema search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed