码迷,mamicode.com
首页 >  
搜索关键字:local data    ( 85975个结果
mongoDB 启动服务
mongod --dbpath "d:\Program Files\MongoDB 2.6 Standard\data\db" --logpath "d:\Program Files\MongoDB 2.6 Standard\logs\MongoDB.log" --install --service...
分类:数据库   时间:2014-05-09 10:19:13    阅读次数:301
解决Access连接 accdb 不可识别的数据库格式异常
在Access07之前的数据库后缀名均为*.mdb 而连接字符串写成Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\myFolder\*.mdb;Persist Security Info=False;但是Access07和Access10将后缀名改为...
分类:数据库   时间:2014-05-09 09:58:53    阅读次数:393
Unity 3D 连接Mysql数据库
要想使用Unity直接连接数据库需要以下几个动态库连接数据库前将关于数据库的方法进行封装:MySqlConnection .csusing UnityEngine; using System; using System.Data; using System.Collections; usi...
分类:数据库   时间:2014-05-09 09:47:36    阅读次数:549
JNI的某些数组和字符串类型转换
JNICC++C#Windowsjbytearray转c++byte数组C代码[c]view plaincopyjbyte*arrayBody=env->GetByteArrayElements(data,0);jsizetheArrayLengthJ=env->GetArrayLength(dat...
分类:其他好文   时间:2014-05-09 09:34:32    阅读次数:429
小记备忘
Ubuntu12.04 自安装python3.3中头文件Python.h路径:usr/local/python3.3/include/python3.3mUbuntu12.04 自带的Python2.7中头文件Python.h路径:usr/ include/python2.7Ub...
分类:其他好文   时间:2014-05-09 09:27:51    阅读次数:270
数据结构——栈的类定义和实现
#include#include#include #include //使用库函数exit()using namespace std;templateclass Stack{ private: Type*data; //栈元素数组 int maxSize; /...
分类:其他好文   时间:2014-05-09 07:27:40    阅读次数:294
UVA ShellSort
题目如下: Problem D: ShellSort He made each turtle stand on another one's back And he piled them all up in a nine-turtle stack. And then Yertle climbed up. He sat down on the pile. What a wonderful v...
分类:其他好文   时间:2014-05-09 06:20:44    阅读次数:396
adb出现adb server is out of date时的解决办法
出错的原因是adb的端口被其他程序的进程占领了,所以要做的就是找到并kill该进程。步骤:、 1、在cmd中执行adb nodaemon server,查看adb的端口号是多少,一般情况下是5037(why?我也太懂) 2、再执行netstat -ano | findstr "5037" ,会看到如下类似的情形: 这里稍微解释一下,显示的从左到右的意思分别是,连接类型(TCP)、本地...
分类:数据库   时间:2014-05-09 06:11:12    阅读次数:370
循环顺序队列
#include using namespace std; const int MAXQSIZE = 5; //队列类 template struct LinkList { T * data;//指向连续的数据存储区域 int front;//头指针 指向第一个元素 int rear;//尾指针 如果队列不为空指向最后元素的下一个位置 }; //构造一个空队列 template void...
分类:其他好文   时间:2014-05-09 06:07:53    阅读次数:248
个人python开发环境搭建
一、环境ubuntu10.4mysql5.1.60python.6.6java7二、搭建1.安装ubuntu10.4,并更新软件包2.sudosu-切换到root用户下安装mysql5.1.60groupaddmysql useradd-gmysqlmysql ./configure--prefix=/usr/local/mysql--with-unix-socket-path=/usr/local/mysql/var/mysql.sock--sysconfd..
分类:编程语言   时间:2014-05-09 00:48:04    阅读次数:362
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!