码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
Jdbc总结
JDBC部分终端进入mysql: mysql -u root回车终端进入oracle: telnet 192.168.0.23 然后sqlplus openlab/open123MySQL常用命令: show databases; use tableName; show tables;一、概述JDB...
分类:数据库   时间:2015-07-03 11:59:26    阅读次数:180
SQL Server2008创建数据库语法
use mastergoif exists(select * from sys.databases where name='MySchool') drop database MySchool --查看当前所要创建的数据库是否存在,有则删除之。go/*--案例:使用SQL语句创建数据库MySchool...
分类:数据库   时间:2015-07-03 11:54:04    阅读次数:213
leetCode(30):Sort Colors
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers ...
分类:其他好文   时间:2015-07-03 09:13:50    阅读次数:123
python coding style / python编程风格
#from 《Python 2.7.9 documentation》Use 4-space indentation, and no tabs.#使用4空格缩进,不要使用tab缩进Wrap lines so that they don’t exceed 79 characters.拆行确保每行不超过7...
分类:编程语言   时间:2015-07-02 22:16:39    阅读次数:154
Cross compiling coreutils and generate the manpages
When we cross compiling coreutils, there is an problem of generating man pages, because the source script use the binaries generated by make process to produce man pages, but the cross compiled binarie...
分类:其他好文   时间:2015-07-02 19:34:32    阅读次数:117
Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use.
Severalports(8005,8080,8009)requiredbyTomcatv7.0Serveratlocalhostarealreadyinuse.Theservermayalreadyberunninginanotherprocess,orasystemprocessmaybeusi...
分类:其他好文   时间:2015-07-02 19:22:30    阅读次数:158
区别:Use MFC In A Shared DLL 和 Use MFC In A Static Library
摘自:Programming Windows with MFC, 2nd EditionChoosing Use MFC In A Shared DLL minimizes your application's executable filesize by allowing MFC to be ac...
分类:编程语言   时间:2015-07-02 19:14:42    阅读次数:149
黑马day12 数据库之元数据
声明:下面的案例在数据库为: create database day12; use day12; create table account( id int primary key auto_increment, name varchar(30), money double ); 使用的c3p0数据库 配置文件:c3p0-config.xml文件 com.mys...
分类:数据库   时间:2015-07-02 17:40:03    阅读次数:207
JavaScript封装Ajax(类JQuery中$.ajax()方法)
ajax.js(function(exports, document, undefined){ "use strict"; function Ajax(){ if(!(this instanceof Ajax)) return; return this; } Ajax.prototype = { init: functi...
分类:编程语言   时间:2015-07-02 17:32:51    阅读次数:161
Creating HTML table with vertically oriented text as table header 表头文字方向
AS an old question, this is more like info or reminder about vertical margin or padding in % that takes parent's width as reference .If you use a pseu...
分类:Web程序   时间:2015-07-02 17:15:11    阅读次数:197
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!