码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
Unable to open debugger port (127.0.0.1:63777): java.net.BindException "Address already in use: JVM
对Intellij IDEA是又爱又恨呀,爱的比myeclipse用起来爽手多了,恨的是刚开始用还不是很习惯。 偶尔启动Debug模式用Tomcat来调试会报以下错误: Unable to open debugger port (127.0.0.1:63777): java.net.BindException "Address already in use: JVM_Bind" 困扰了我...
分类:编程语言   时间:2015-05-13 16:48:11    阅读次数:1144
修改以及设计好的表
1.修改表字段use EntranceVista;alter table Ry_Stay_Info alter column wza nvarchar(50) alter table Ry_Stay_Info alter column wzb nvarchar(50)2.添加主键添加主键之前先要让该...
分类:其他好文   时间:2015-05-13 16:08:15    阅读次数:104
polysh批量执行shell命令
安装polyshwgethttp://guichaz.free.fr/polysh/files/polysh-0.4.tar.gz tar-zxvfpolysh-0.4.tar.gz cdpolysh-0.4 sudopythonsetup.pyinstall 使用polysh Usage:/usr/bin/polysh[OPTIONS]HOSTS... Controlcommandsareprefixedby":".Use:helpforthelist Option..
分类:系统相关   时间:2015-05-13 13:07:44    阅读次数:260
【LeetCode】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 0, 1, and 2 to represent the color red, white, and bl...
分类:其他好文   时间:2015-05-13 13:00:34    阅读次数:95
【MySQL】设置允许用户远程登录
昨天把基础系统部署在了服务器上,一切正常. 可是开发人员要远程访问服务器上的MySQL数据库,发现远程连接不上,提示错误:“1045-Access denied for user root@...” 解决办法如下,执行命令: mysql> use mysql;   mysql> selecthost,user from user;   查看结果是不是r...
分类:数据库   时间:2015-05-13 12:53:08    阅读次数:139
远程连接MySql服务器时 报not allowed to connect错误解决办法
1.通过命令行使用root用户连接到mysql服务器,并进入mysql数据库mysql> use mysqlDatabase changed2.使用grant语句进行授权 all privileges:表示所有数据库权限 on *.*:表示在所有表,视图,函数等等,可以是具体的数据库下的某个...
分类:数据库   时间:2015-05-13 12:33:30    阅读次数:161
注册表添加python
win(python2.7)下:执行此文件 1 #!/usr/bin/env python 2 # encoding:utf-8 3 4 # 5 # script to register Python 2.0 or later for use with win32all 6 # and other....
分类:编程语言   时间:2015-05-13 12:24:10    阅读次数:226
Execute a terminal command from a Cocoa app
http://stackoverflow.com/questions/412562/execute-a-terminal-command-from-a-cocoa-appin the spirit of sharing... this is a method I use frequently to ...
分类:移动开发   时间:2015-05-13 12:23:38    阅读次数:133
Rust猜数字之比较
比较      既然我们获得了用户的输入,让我们把猜测的数据跟神秘数字做比较。这是我们的下一步,尽管它还不能真正工作: extern crate rand; use std::io; use std::cmp::Ordering; use rand::Rng; fn main() { println!("G...
分类:其他好文   时间:2015-05-13 10:22:02    阅读次数:276
Rust猜数字之循环
循环      loop关键字给我们一个无限循环。让我们添加它: extern crate rand; use std::io; use std::cmp::Ordering; use rand::Rng; fn main() { println!("Guess the number!"); ...
分类:其他好文   时间:2015-05-13 10:21:05    阅读次数:207
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!