DB Solo 3.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News DB Solo 3.0 (Default branch)
# 1  
Old 02-26-2008
DB Solo 3.0 (Default branch)

Image DB Solo is a powerful database development and management tool for developers and DBAs. It has an intuitive user interface that allows you to explore and manage your database objects as well as execute ad-hoc queries. It supports Oracle, MySQL, Sybase, DB2, Solid, PostgreSQL, and MS SQL Server. In addition to viewing and managing objects such as schemas, tables, indexes, views, tablespaces, users, roles, sessions, and stored procedures, you can view, edit, print, and export data from tables or the results of queries. You can also graphically view foreign key relationships. License: Shareware Changes:
A schema scripting tool was added that allows you to create a DDL script for your entire schema. Support for Sybase ASA was added. An import tool was added that lets you import data from CSV or fixed-length files into a table. Several major enhancements were made to the schema compare and table data comparison tools. Support for Mac OS 10.5 (Leopard) was implemented. Dozens of bugfixes and other changes were also added.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Line works in solo but not in program?

Now I am just getting frustrated and confused... if anyone has some advice on how this anomoly is occurring I would greatly appreciate it. cat helpme.txt | awk 'NR<5{printf("%-20s %-20d %-20d %-20.1f\n","hello",$1,$2,$3)}' | sort -rk4 This line works fine in solo - reads the three fields from... (4 Replies)
Discussion started by: nortypig
4 Replies
Login or Register to Ask a Question
ZF(8)								zendframework tool							     ZF(8)

NAME
zf - command line tool for zendframework SYNOPSIS
zf [--global-opts] action-name [--action-opts] provider-name [--provider-opts] [provider parameters ...] DESCRIPTION
zf is a command line tool to create and manage zendframework projects. The CLI, or command line tool (internally known as the console tool), is currently the primary interface for dispatching Zend_Tool requests. With the CLI tool, developers can issue tooling requests inside the "command line window", also commonly known as a "terminal" window. OPTIONS
zf show version mode[=mini] name-included[=1] This will show the current version number of the copy of Zend Framework the zf.php tool is using. zf show manifest This will show what information is in the tooling systems manifest. This is more important for provider developers than casual users of the tooling system. zf create project MyProjectName The project provider is the first command you might want to run. This will setup the basic structure of your application. This is required before any of the other providers can be executed. zf create module Blog This will create a module named Blog at application/modules/Blog, and all of the artifacts that a module will need. zf create controller Auth This will create a controller named Auth, specifically it will create a file at application/controllers/AuthController.php with the AuthController inside. zf create action login Auth This will create an action in an existing controller. zf create view Auth my-script-name This will create a view script in the controller folder of Auth. zf create model User This will create a model User. zf create form Auth This will create a form Auth. zf configure dbadapter adapter=Pdo_Mysql&username=test&password=test&dbname=test This will configure your database connection and is saved in your application.ini. zf create dbtable User user This creates a Zend_Db_Table model/data file. zf enable layout This enable layout in your application and creates necessary files and store this to your application.ini. HOMEPAGE
More information about zendframework project can be found at <http://framework.zend.com/>. AUTHOR
The development is currently coordinated by Zend Technologies Ltd. <http://framework.zend.com>. This manual page was written by Frank Habermann <lordlamer@lordlamer.de>, for the Debian project (but may be used by others). 1.10.1 2010-02-12 ZF(8)