码迷,mamicode.com
首页 >  
搜索关键字:failed to create jav    ( 38502个结果
HTML条件注释用法诠释
HTML条件注释用法诠释注释内容以样式为例,如下:1、支持所有IE浏览器2、支持非IE浏览器上面是除了IE浏览器外所有浏览器都识别这个样式,另外CSS-TRICKS的《How To Create an IE-Only Stylesheet》一文中提供了另一种写法:3、仅仅支持IE104、仅仅支持IE...
分类:Web程序   时间:2014-05-09 17:12:27    阅读次数:465
Unity3D中的shader基础知识
1.Unity中配备了强大的阴影和材料的语言工具称为ShaderLab,以程式语言来看,它类似于CgFX和Direct3D的效果框架语法,它描述了材质所必须要的一切咨询,而不仅仅局限于平面顶点/像素着色。2.在Unity3D中创建一个Shader:Assets -> Create -> Shader...
分类:其他好文   时间:2014-05-09 17:01:52    阅读次数:318
linux下Oracle数据库的安装
http://blog.163.com/dongfang_1226/blog/static/5867778020126281245271/找出哪些rpm没有装,下载安装即可(在后面具体安装的时候会提示哪些没有装好的)Oracle Net Configuration Assitant failed!解...
分类:数据库   时间:2014-05-09 17:00:51    阅读次数:424
opensue fstab故障恢复
date: 20140505author: Jin故障背景:早上启动本本 无法启动,报错信息(几个关键)WARNING:Failed to connect to lvmetad: No such file direct[FAILED]Failed to mount /var/run/user/100...
分类:其他好文   时间:2014-05-09 16:47:25    阅读次数:479
asp.net调用带有输入和输出参数的存储过程
存储过程检测用户名是否重户create proc checklogin@username nchar(20),@pwd nchar(20),@hasrow int outputasselect @hasrow=count(*) from users where and GO存储过程写入数据crea....
分类:Web程序   时间:2014-05-09 16:40:52    阅读次数:367
SQL中自定义拆分为新表的函数
/*按照符号分割字符串*/create function [dbo].[m_split](@c varchar(2000),@split varchar(2)) returns @t table(col varchar(200)) as begin wh...
分类:数据库   时间:2014-05-09 12:18:45    阅读次数:376
cimge 这次能够图片大小尺寸
CImage imSrc,imDest;imSrc.Load(……);//读入原始图片imDest.Create(……)//创建新大小的图片imSrc.StretchBlt(imDest.GetDC(),……);imDest.ReleaseDC();imDest就是你制定尺寸的图片对象
分类:其他好文   时间:2014-05-09 11:32:39    阅读次数:265
sql server 创建内联表值函数
表值函数就是返回table 的函数使用它可以方便的进行查询的处理创建的代码如下:create FUNCTION returunclassfirstlist(-- Add the parameters for the function here)RETURNS TABLE ASRETURN (-- A...
分类:数据库   时间:2014-05-08 22:00:43    阅读次数:454
SQLite3 C语言API入门
下载SQLite3我们下载sqlite源码包,只需要其中的sqlite3.c、sqlite.h即可。最简单的一个创建表操作#include#include"sqlite3.h"intmain(intargc,char*argv[]){constchar*sql_create_table="creat...
分类:数据库   时间:2014-05-08 20:50:24    阅读次数:543
DataTable - Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints
solution1.Tick the primary key 1.right click on the Id of the entity in dataset schema. 2.Edit Key 3.Tick the Primary Key
分类:其他好文   时间:2014-05-07 19:18:56    阅读次数:362
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!