-
可以实现用对话框控制浏览器进行打开相应网址。
可以实现用对话框控制浏览器进行打开相应网址。-dialog can be used to achieve control of the browser for the corresponding site open.
- 2023-04-30 03:00:02下载
- 积分:1
-
java三杆包,使一个更简便的方法。接口
JAVA的三个扎包,能更简单方便的完成JAVA界面编程内容-JAVA three bar package that enables a more simple and convenient interface for programming the contents of the completion of JAVA
- 2023-01-02 06:50:14下载
- 积分:1
-
这是利用.net开发的,其中用到了orm方法(面向对象的方法),是NHibernate,该工具是从java开发的hibernate引申过来的.该程序对初学者非常...
这是利用.net开发的,其中用到了orm方法(面向对象的方法),是NHibernate,该工具是从java开发的hibernate引申过来的.该程序对初学者非常不错!-use. Net development, which uses the Vector method (object-oriented approach), is NHibernate, the tool is the development of java exploit extended overnight. The program is very good for beginners!
- 2023-06-14 11:10:06下载
- 积分:1
-
基于SSH的信息查询系统,实现了查询,修改管理等功能
基于SSH的信息查询系统,实现了查询,修改管理等功能-SSH-based information retrieval system to achieve a query, change management and other functions
- 2022-02-28 17:23:01下载
- 积分:1
-
Prince of Persia Classic mobile phone java games, like friends can
经典手机游戏java
波斯王子,喜欢的朋友可以-Prince of Persia Classic mobile phone java games, like friends can
- 2022-01-27 22:12:05下载
- 积分:1
-
java学习的好范例,是美国某大学学习java的参考范例
java学习的好范例,是美国某大学学习java的参考范例-java learn example, is a university in the United States to learn java reference sample
- 2022-03-13 12:41:44下载
- 积分:1
-
用英文进行框架介绍。写得更好,也在训练中…
tapestry框架介绍,英文版的。写的比较好,还可以锻炼英文。-tapestry framework introduction, in English. Write better, but also training in English.
- 2023-05-25 08:50:05下载
- 积分:1
-
配置JSP环境,配置ACCESS数据源,数据源名称Andy。 初始用户名密码:admin。...
配置JSP环境,配置ACCESS数据源,数据源名称Andy。 初始用户名密码:admin。-JSP environment configuration, configuration ACCESS data sources, data source name Andy. Initial users Password : admin.
- 2022-03-23 13:57:49下载
- 积分:1
-
XYZ vote statistical system version 1.5C
XYZ投票统计系统1.5C版-XYZ vote statistical system version 1.5C
- 2022-09-18 00:10:02下载
- 积分:1
-
alter table tbl_name add col_name type
例如,给表增加一列weight
mysql>alter table...
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
-alter table tbl_name add col_name type for example, to form an increase in weight mysql> alter table pet add weight int Remove Columns alter table tbl_name drop col_name For example, the deletion of column weight: mysql> alter table pet drop weight change out alter table tbl_name modify col_name type for example, the type of weight change: mysql> alter table pet modify w
- 2022-02-11 13:09:52下载
- 积分:1