Archive

Posts Tagged ‘数据库’

phpgrid快速数据库显示表格

January 20th, 2010 No comments

http://www.phpgrid.com/grid/

Grid-based editing including Create, Read, Update and Delete (CRUD) records are the most common behaviors for web developers. Similar to ASP.NET Datagrid the phpGrid is a simple, innovative, powerful, and Ajax-enabled PHP component for generating data-bound grid control, specially designed for PHP

http://phpgrid.sourceforge.net/index.php

PHPGRID是一个用于快速开发MIS系统,网站后台,演示程序的PHP类库,不仅具有数据添加编辑删除的基本功能,还具有表单自动生成,排序,分页,查询,权限设定,缓存的功能,而且这些功能是可定制的。对于特殊的需求,您只需编写少量的代码来继承于PHPGRID。 PHPGRID适合那些懒惰而又聪明的PHP程序员,PHPGRID将使你从厌烦重复的工作中解放出来。

  • Share/Bookmark
Categories: Php Tags: , ,

mysql查询数据库中所有表名

September 1st, 2008 No comments

查询数据库中所有表名

select * from information_schema.tables 

查询指定数据库中指定表的所有字段名

select column_name from information_schema.columns  where table_schema=’YOURDATABASENAME’ and table_name=’YOURTABLENAME’

  • Share/Bookmark
Categories: mysql Tags: , , ,