码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
mysql数据库导入和导出
Mysql数据中,使用时,总是会碰见导入和导出情况,所以如何正确的导入导出,非常重要!下面根据工作中用到的方法,会不管补充:导入:直接在Mysql中导入:mysql>use databaseName;mysql> load data infile 'filePath' into table 'tab...
分类:数据库   时间:2014-07-22 23:03:32    阅读次数:226
SQLiteDatabase 源码
/** * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this fi...
分类:数据库   时间:2014-07-22 22:45:32    阅读次数:355
摘抄。
Single doesn't always mean lonely and Relationship doesn't always mean happy.(单身并非一定孤独,恋爱并非注定幸福.)People who care,use words to express. People who care...
分类:其他好文   时间:2014-07-22 22:43:54    阅读次数:202
NopCommerce上二次开发 触发器记录
最近要在NopCommerce上二次开发。开发也就算了,该项目的架构设计很好,但性能不可谓不低。扯远了,为了保持项目以后升级顺利,开次开发不允许在原项目基础上大改,只能以插件形式开发……因一个功能,不好改代码,所以在数据层用触发器实现。代码记录在此 1 USE [NopCommerce] 2 G.....
分类:其他好文   时间:2014-07-22 22:42:54    阅读次数:300
JavaScript Patterns 6.7 Borrowing Methods
You want to use just the methods you like, without inheriting all the other methods that you’ll never need. This is possible with the borrowing method...
分类:编程语言   时间:2014-07-22 22:41:33    阅读次数:291
Ubuntu 安装 MYSQL
#1. 安装MySQL sudo apt-get install mysql-server #2.修改MYSQL root用户密码 默认的MySQL安装之后根用户是没有密码的,所以首先用根用户进入: $mysql -u root -p mysql>use mysql; update user set password=...
分类:数据库   时间:2014-07-22 22:38:14    阅读次数:258
mysql大量锁表,不重启的情况下处理办法
mysql-uroot-e"showprocesslist"|grep-i"Locked">>locklist.txt; forlineinawk‘{print$1}‘locklist.txt do echo"kill$line;">>lock_kill.sql done查看mysql数据库表大小#!/bin/bash database=cms user=root password=‘123456‘ mysql-u${user}-p${password}-e"use$d..
分类:数据库   时间:2014-07-22 18:15:42    阅读次数:334
The use of laser machines and systems in the modern world has increased to a great level
The use of laser machines and systems in the modern world has increased to a great level. This is because of the unique end results that the user achi...
分类:其他好文   时间:2014-07-22 00:15:34    阅读次数:224
ktouch移动端事件库
最近闲来无事,写了个移动端的事件库,代码贴在下面,大家勿拍。 1 /** 2 @version 1.0.0 3 @author gangli 4 @deprecated 移动端触摸事件库 5 */ 6 (function () { 7 "use strict"; 8 ...
分类:移动开发   时间:2014-07-22 00:12:34    阅读次数:319
《modern operating system》 chapter 5 Input and output 笔记
Input / Output It should also provide an interface between the devices and the rest of the system that is simple and easy to use. 于是乎这里就有了对于硬盘等IO设备的抽象。 5.1 PRINCIPLES OF I/O HARDWARE...
分类:其他好文   时间:2014-07-21 23:31:54    阅读次数:548
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!