phpMyAdmin is a tool written in PHP intended to handle the administration of MySQL over the Web. Currently it can create and drop databases, create/drop/alter tables, delete/edit/add fields, execute any SQL statement, manage keys on fields
You imagine? Right, there s more than one possibility, this time I ll give you tree. One for your private data, one for the common data in order to receive data from other applications like Excel, WinWord etc. and at last, I ll give you a handy-dandy class you can derive ANY MFC object from, to make it a drop target
I built the Superlist control whilst developing an RSS reader called FeedGhost. Although there are plenty of commercial grouped list controls available I wanted to have total control over the code and of course its usability. Superlist supports drag drop column customisation, grouping as well as handling thousands of entries smoothly. It s also highly customisable if you want to change its look and feel. In this article I ll explain how to use and extend the control in a demo project. If you download the source, you can find demo project under the Tests/SuperListTest directory.
Sqlserver2000壓力測試
數據庫請自己建,附腳本。不懂的可以發郵件問我:killwolf@163.com
10萬
109640ms 插入
23078ms 清空
20萬
216281ms
8391馬上
40萬:
416781
9381
if exists (select * from dbo.sysobjects where id = object_id(N [dbo].[StuInfo] ) and OBJECTPROPERTY(id, N IsUserTable ) = 1)
drop table [dbo].[StuInfo]
GO
CREATE TABLE [dbo].[StuInfo] (
[StuID] [float] NULL
) ON [PRIMARY]
GO
DevExpress.ExpressSideBar.v5.37.for.Delphi.BCB.Full.Source
delphi和 bcb源碼,能輕松實現outlook風格的側邊欄,效果很好,推薦!
ExpressSideBar is a VCL implementation of the MS
Outlook bar. Designed to be easy to use and built with
a significant feature set. Just drop it on a form,
double click the control and in a few moments, you can
customize the ExpressSideBar for your needs.
Windows CE 1.0 does not support the cascading menu. In the use of Windows CE 1.0, it can not insert a MF_POPUP menu to another drop-down menu. Window CE 1.0 does not support the following signs:
orumThemes.com - Breezet vBulletin Theme
www.forumthemes.com
ForumThemes.com would like to thank you for purchasing one of our themes. If at
anytime you have any problems with installation please visit our forums at
www.forumthemes.com/forums.
Included
- Fluid XML files
- Custom Java Script for drop downs (clientscript) (All it does is remove the little white arrows in the drop downs)
alter table tbl_name add col_name type
例如,給表增加一列weight
mysql>alter table pet add weight int
刪除列
alter table tbl_name drop col_name
例如,刪除列weight:
mysql>alter table pet drop weight
改變列
alter table tbl_name modify col_name type
例如,改變weight的類型:
mysql> alter table pet modify weight samllint
另一種方法是:
alter table tbl_name change old_col_name col_name type
例如:
mysql> alter table pet change weight weight samllint
給列更名
mysql>alter table pet change weight wei
給表更名
alter table tbl_name rename new_tbl
例如,把pet表更名為animal
mysql>alter table pet rename animal