码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
mysql导入导出数据库
导出:mysqldump -u 用户名 -p 数据库名 > 导出的文件名导入: 0.登录进入mysql 1.创建一个空的数据库 create database student 2.use student 3.source d:/student
分类:数据库   时间:2015-04-07 18:58:20    阅读次数:188
ios xcode error: use of '@import' when modules are disabled
error:useof'@import'whenmodulesaredisabledModules are enabled by default in new projects in Xcode 5. To enable them in an older project, go into your ...
分类:移动开发   时间:2015-04-07 17:25:33    阅读次数:8025
Finding Comments in Source Code Using Regular Expressions
Many text editors have advanced find (and replace) features. When I’m programming, I like to use an editor with regular expression search and replace....
分类:其他好文   时间:2015-04-07 15:05:19    阅读次数:157
laravel5通过auth.attempt事件加入登陆验证码
auth = $auth; $this->registrar = $registrar; //注册auth.attemp事件 //加入验证码的验证 $this->auth->attempting(function()use($request){...
分类:其他好文   时间:2015-04-07 13:41:06    阅读次数:270
OpenSCAD中使用include或use引入外部库
一、OpenSCAD 使用include或use引入外部库 ????本文英文版本参考:https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Include_Statement ????===========================...
分类:其他好文   时间:2015-04-07 12:18:15    阅读次数:145
php开发之文件系统
1,打开/关闭文件 打开/关闭文件分别使用fopen()函数和fclose()函数。打开文件时应该特别注意,一不小心就有可能将文件内容全部删掉。 (1) 打开文件 fopen()函数,语法格式如下: resource fopen(string filename,string mode [,bool use_include_path]); 参数filename 是要打开的包含路径的文件名,可...
分类:Web程序   时间:2015-04-07 11:54:59    阅读次数:189
wamp的mysql密码修改
==方法1==通过WAMP打开mysql控制台,提示输入密码,因为现在是空,所以直接按回车。输入“use mysql”,意思是使用mysql这个数据库教程,提示“Database changed”就行.然后输入要修改的密码的sql语句“update user set password=PASSWOR...
分类:数据库   时间:2015-04-07 11:51:14    阅读次数:193
MSSQL tempdb优化
更换数据库后,tempdb需进行以下调整1、修改自动增长比例,修改为20MB的增长1 USE [master]2 GO3 ALTER DATABASE [tempdb] MODIFY FILE ( NAME = N'tempdev', FILEGROWTH = 20480KB )4 GO参考文档ht...
分类:数据库   时间:2015-04-07 11:46:23    阅读次数:179
How to effectively work with multiple files in Vim?
Why not use tabs (introduced in Vim 7)? You can switch between tabs with :tabn and :tabp, With :tabe you can add a new tab; and with a regular :q or ....
分类:系统相关   时间:2015-04-07 11:40:39    阅读次数:153
25 个非常好的网页设计和开发的资源
点这里Here’s the 25 Best Weekly Web Design & Development Resources #18 Collective that aims to introduce fresh new, trendy and easy-to-use web design & d...
分类:Web程序   时间:2015-04-07 11:33:06    阅读次数:290
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!