码迷,mamicode.com
首页 >  
搜索关键字:data    ( 62430个结果
校园导游图的课程设计(一)
思路:1. 使用两个文件 arc 和 vex 分别存放 节点和弧信息存放格式为:typedef struct data{char placename[NAMEMAX];char placedata[DATAMAX];}Data;typedef struct arc{int forvex;int ba...
分类:其他好文   时间:2014-12-08 19:24:13    阅读次数:331
从具体化“System.Data.Objects.MaterializedDataRecord”类型到“XXXX”类型的指定强制转换无效。
在EF里面使用CreateQueryl的时候出现异常这是原来有问题的代码se.CreateQuery("SELECT Departments.dId, Departments.dName, Departments.dManager FROM Departments") ...
分类:其他好文   时间:2014-12-08 19:18:52    阅读次数:284
4列表
jQuery Mobile的世界里,列表就是页面中的一个有序(ol元素)或(ul元素)列表,其中至少包含一个列表项(li元素),并且使用html5语法data-role="listview"将对应的role的值定义为listview。 4.1整页列表与插入列表 默认情况下列表使用整页模式,有时...
分类:其他好文   时间:2014-12-08 19:13:30    阅读次数:209
No need to add "optional" in your insert section of your sparql code
I was trying to insert new data while the where clauses have an "optional" clause. I thought I also need to use optional in the insert clause, but it'...
分类:其他好文   时间:2014-12-08 17:36:20    阅读次数:181
皓轩的jquery mobile之路(二)
jQuery Mobile 使用 HTML5 & CSS3 最小的脚本来布局网页。编写代码要注意最外层div需要添加data-role="page" ,标题需要添加data-role="header",内容需要添加data-role="content",底部需要添加data-role="footer...
分类:Web程序   时间:2014-12-08 17:32:24    阅读次数:232
查看imooc服务器文件
在imooc学习php(http://www.imooc.com/code/579)关于文件删除方面知识的时候,发现了一些有趣的事情~由于它给出了文件的路径,胡乱折腾了两次把服务器搞坏了(==应该是我搞的,都是我折腾之后坏的)然后这次就没折腾了,只是查看文件吧。<?php $filename=‘/data/webroot/u..
分类:其他好文   时间:2014-12-08 15:48:50    阅读次数:166
js 二分查找的实现
1.递归实现 function binarySearch(data, dest, start, end){ var end = end || data.length - 1, start = start || 0, m = Math.floor((start + end) / 2); if(data[m] == dest){ r...
分类:Web程序   时间:2014-12-08 15:38:22    阅读次数:195
Regular Expression "not matching" and SPARQL Filter function usage
OK, I had a problem here when converting bio2rdf.org irefindex data into nanopublication using sparql here:in a database, if the item you are looking ...
分类:其他好文   时间:2014-12-08 15:24:05    阅读次数:191
thikphp 简单的接口骨架
//get id 获取内容,调用xml方法public function get(){$id = $_GET['id'];//接收id$User = M('user');//$val->where("id = $id")->select();$data=$User->where( "id = $id...
分类:Web程序   时间:2014-12-08 15:07:41    阅读次数:306
使用NPOI 2.1.1读取EXCEL2003/2007返回DataTable
一,不借助插件读取Excel2003、2007: string strConn = "Provider=Microsoft.Ace.OleDb.12.0;" + "Data Source=" + path + ";" + "Extended Properties='Excel ...
分类:其他好文   时间:2014-12-08 13:41:35    阅读次数:463
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!