码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
PLSQL NOTE--------network utl_smtp package
use utl_smtp to send mail Notes 1.port need to change according to server setting. For example gmail smtp port is 465. 2.use utl_smtp.command to use T ...
分类:数据库   时间:2016-05-16 17:16:05    阅读次数:233
[Javascript] Proper use of console.assert in JavaScript
Learn about console.assert, which is syntactic sugar for logging an error the console when a given condition is not met. It's useful, but may not do w ...
分类:编程语言   时间:2016-05-16 17:00:46    阅读次数:288
向hive上传数据时,中文乱码
sudo -u hive hive -e "use dataplat;load data local inpath '/home/dlht/data/test/2_times.csv' overwrite into table 2_times " 这时中文乱码 解决办法是,将数据转成utf-8。。 ...
分类:Web程序   时间:2016-05-16 12:49:31    阅读次数:374
重建所有表索引
USE My_Database;DECLARE @name varchar(100) DECLARE authors_cursor CURSOR FOR Select [name] from sysobjects where xtype='u' order by id OPEN authors_cu ...
分类:其他好文   时间:2016-05-16 12:47:55    阅读次数:116
用Thinkphp实现表的添加修改和删除
用mvc实现主要用到了c和v <?php namespace Home\Controller; use Think\Controller; class MainController extends Controller { public function Main() { var_dump(get_ ...
分类:Web程序   时间:2016-05-16 09:24:54    阅读次数:235
SignalR Connection has not been fully initialized
在使用 SignalR 过程中遇到 SignalR: Connection has not been fully initialized. Use .start().done() or .start().fail() to run logic after the connection has sta ...
分类:其他好文   时间:2016-05-16 08:13:05    阅读次数:732
享元模式
享元模式是池技术的重要实现方式,其定义如下: Use sharing to support large numbers of fine-grained objects efficiency.使用共享对象可有效的支持大量的细粒度的对象享元模式的定义为我们提出了两个要求:细粒度的对象和共享对象细粒度对象 ...
分类:其他好文   时间:2016-05-15 21:35:23    阅读次数:165
[PWA] 3. Devtool
You can debug with chrom dev tool: 1. Use console to debug service worker: Swith to sw.js context then you can access 'self' object 2. Set breakpoint: ...
分类:其他好文   时间:2016-05-15 21:35:06    阅读次数:214
vc控制台程序中如何使用cstring类的函数,头文件怎么包含?
1.project->setting->general 里的Microsoft Foundmation class选择“Use MFC in a Shared DLL”,再包含<afx.h>就行了。2.直接include <afx.h>3.#include <atlstr.h> ...
分类:其他好文   时间:2016-05-15 15:18:23    阅读次数:117
UML学习之用例图
在UML的整个学习过程中,9种图(用例图、活动图、状态图、顺序图、类图、对象图、协作图、组件图、部署图)的学习以及常用开发、建模工具的使用是最为重要的一个阶段,它是进行UML建模的基础。在本篇文章中首先介绍下用例图(Use Case Diagram)。 用例图概念 1、概念及作用:用例图描述的是开发 ...
分类:其他好文   时间:2016-05-15 12:24:21    阅读次数:179
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!