1、MySQL常用命令 create database name; 创建数据库 use
databasename; 选择数据库 drop database name 直接删除数据库,不提醒 show tables; 显示表 describe
tablename; 表的详细描述 select 中加上d...
分类:
数据库 时间:
2014-05-18 20:09:16
阅读次数:
502
1 // create your Animal class here 2 function
Animal(name,numLegs){ 3 this.name=name, 4 this.numLegs=numLegs 5 } 6 // create
the sayName ...
分类:
其他好文 时间:
2014-05-18 19:45:23
阅读次数:
246
1
HIVE入门操作
1.1
连接环境
登陆成功显示如下:
输入 quit;
可退出hive环境
1.2
查看数据库
show databases;
1.3
创建数据库
create database mng;
1.4
链接数据库
use mng;
成功显示如下:...
分类:
其他好文 时间:
2014-05-18 18:44:37
阅读次数:
311
python创建二叉树,源代码如下:
#!/usr/bin/python
class node():
def __init__(self,k=None,l=None,r=None):
self.key=k;
self.left=l;
self.right=r;
def create(root):
a=raw_input('enter a key:');
if a is '#...
分类:
编程语言 时间:
2014-05-18 09:27:13
阅读次数:
384
Point pos(100, 100); //start point
m_animSprite->setPosition(pos);
int count = 8; float radius = 50.f; float angle = 360.f/count; auto array = PointArray::create(count + 1); Point pt0(r...
分类:
其他好文 时间:
2014-05-18 07:02:31
阅读次数:
250
异常类型为:android.view.WindowManager$BadTokenException:
Unable to add window
我在fragment中public
View onCreateView(LayoutInflater
inflater, ViewGroup
container,Bundle
savedInstanceState) {中试图调用对话框静态工...
分类:
其他好文 时间:
2014-05-18 04:27:35
阅读次数:
240
不例外。最显眼的就是,在文件的根目录中增加了一个名为setup.py的配置文件。运行它可以配置系统的一些环境变量。2、创建项目新的版本我们来动手创建一个新项目吧。找到tools文件夹....额
打包的那个名为create-project.py的文件似乎木有了!原来,在新版本中,创建新项目已经可以通过...
分类:
移动开发 时间:
2014-05-17 23:25:04
阅读次数:
450
mysql_affected_rows: 得到 MySQL 最后操作影响的列数目。
mysql_close: 关闭 MySQL 服务器连接。 mysql_connect: 打开 MySQL 服务器连接。 mysql_create_db:
建立一个 MySQL 新数据库。 mysql_data_see...
分类:
数据库 时间:
2014-05-17 21:42:27
阅读次数:
268
mget允许我们一次检索多个document,而bulk
API则允许我们在一个请求中做create,index,update
或者delete。如果你要index一个数据流如日志数据,bulk是很实用的,bulk可以能排队数百或数千的批次处理。bulk的请求体有点不同寻常,如下:{
action:...
分类:
其他好文 时间:
2014-05-17 19:24:37
阅读次数:
313
描述 给Hyper-V创建两块网卡备用 步骤: 1
打开Hyper-V,在右侧Action栏,单击Virtual Switch Manager… 2 依次选择New Virtual network switch
| Internal | Create Virtual Switch 3 指定Name为...
分类:
其他好文 时间:
2014-05-17 18:26:05
阅读次数:
299