码迷,mamicode.com
首页 >  
搜索关键字:personal statement    ( 3771个结果
JavaWeb数据库应用开发基础
JavaWeb数据库应用JavaWeb数据库应用开发的几种方式一、JSP+JDBC二、JSP+Servlet(+JDBC)三、JSP+Servlet+DAO(+JDBC)四、JSP+Servlet+DAO(+JDBC)+JavaBeanJavaWeb数据库应用开发的几种方式以下总结了课程中学习的四种JavaWeb数据库应用开发方式,其中第前两种适合业务逻辑和功能简单的系统;后两种则是经典的MVC开
分类:数据库   时间:2020-03-27 23:20:22    阅读次数:112
Mysql:Changes in MySQL 5.7.9 (2015-10-21, General Availability):很重要的版本!
Changes in MySQL 5.7.9 (2015-10-21, General Availability) Server Administration A new SHUTDOWN SQL statement is available. This provides an SQL-level ...
分类:数据库   时间:2020-03-27 21:39:00    阅读次数:108
JDK14的新特性-Switch新功能
2020年3月17日,Oracle正式发布了JDK14版本,共新增了16项新特性 本文重点写一下关于switch的新功能: switch 表达式扩展了 switch 语句,使其不仅可以作为语句(statement),还可以作为表达式(expression),并且两种写法都可以使用传统的 switch ...
分类:其他好文   时间:2020-03-27 21:35:17    阅读次数:97
601. 体育馆的人流量
601. 体育馆的人流量 暴力搜索条件 一开始不知道怎么去重,然后看了一眼评论区就行白了,直接 select s1.* 就可以对全表的数据进行去重 # Write your MySQL query statement below select distinct s1.* from stadium s ...
分类:其他好文   时间:2020-03-27 12:50:10    阅读次数:71
using keyword in C#
The using keywords has three major uses: The using statement defines a scope at the end of which an object will be disposed. The using directive creat ...
分类:Windows程序   时间:2020-03-26 01:34:09    阅读次数:100
JDBC通用的数据库数据操作[CRUD]封装
```javapackage com.lyang.dao;import java.lang.reflect.Field;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet;imp... ...
分类:数据库   时间:2020-03-24 22:58:27    阅读次数:72
MSSQL慢查询查询与统计
查询MSSQL慢查询: SELECT TOP 20 TEXT AS 'SQL Statement',last_execution_time AS 'Last Execution Time' ,(total_logical_reads + total_physical_reads + total_lo ...
分类:数据库   时间:2020-03-24 15:42:46    阅读次数:179
个人项目(c语言)
github项目地址:https://github.com/KID53/wordcount PSP: PSP2.1 Personal Software Process Stages 预估耗时(分钟) 实际耗时(分钟) Planning 计划 20 31 · Estimate · 估计这个任务需要多少 ...
分类:编程语言   时间:2020-03-23 22:04:05    阅读次数:118
shell while循环与until循环
while 循环是 Shell 脚本中最简单的一种循环,当条件满足时,while 重复地执行一组语句,当条件不满足时,就退出 while 循环。 unti 循环和 while 循环恰好相反,当判断条件不成立时才进行循环,一旦判断条件成立,就终止循环,until 的使用场景很少,一般使用 while ...
分类:系统相关   时间:2020-03-23 20:17:48    阅读次数:92
个人项目
项目地址: "Github项目地址" PSP | PSP2.1 | Personal Software Process Stages | 预估耗时(分钟) | 实际耗时(分钟) | | | | | | | Planning | 计划 | 10 | 10 | | · Estimate | · 估计这个 ...
分类:其他好文   时间:2020-03-23 09:40:11    阅读次数:73
3771条   上一页 1 ... 25 26 27 28 29 ... 378 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!