大约有 7,000 项符合查询结果(耗时:0.0099秒) [XML]

https://bbs.tsingfun.com/thread-33-1-1.html 

常用Sql - 爬虫/数据库 - 清泛IT社区,创新赋能!

本帖最后由 zqp2013 于 2015-3-17 22:06 编辑 mysql:drop table if exists tablename; 不能写成 drop table tablename if exists tablename; mysql:建立索引Sql CREATE TABLE tablename (   `ID`                 &nbs...
https://bbs.tsingfun.com/thread-38-1-1.html 

MySql安装配置 - 爬虫/数据库 - 清泛IT社区,创新赋能!

1.下载服务器端,解压 2.安装Mysql服务: 进入bin目录,mysqld.exe --install (指定安装的MySql服务名)。 (卸载 net stop servicename;             mysqld.exe --remove servicename) 3.进入MySql命令模式: mysql.exe(...
https://bbs.tsingfun.com/thread-641-1-1.html 

MySQL ('root'@'%') does not exist 的问题 - 爬虫/数据库 - 清泛IT社区,创新赋能!

MySQL ('root'@'%') does not exist的问题: 在使用mysql时出现问题: The user specified as a definer ('root'@'%') does not exist。 一般是由于root用户对全局host无访问权限。因此只要给root用户添加一个访问权限即可。 解决办法: 登陆mysql ,...
https://bbs.tsingfun.com/thread-80-1-1.html 

Mysql substr和Oracle substr区别 - 爬虫/数据库 - 清泛IT社区,创新赋能!

Oracle substr(字符串,开始索引、从0起,长度) Mysql substr或substring(字符串,开始索引、从1起,长度)
https://bbs.tsingfun.com/thread-910-1-1.html 

C++ 使用OLE/COM高速读写EXCEL的源码 - c++1y / stl - 清泛IT社区,创新赋能!

本源码主要通过OLE/COM实现对Excel表格的操作。 另外,代码中汇聚各网友的智慧进行了优化(比如预加载等),可以加快OLE读取的EXCEL的速度。 原文详见:http://www.tsingfun.com/html/2016/dev_0530/1454.html 下载地址:
https://bbs.tsingfun.com/thread-904-1-1.html 

_access头文件 - c++1y / stl - 清泛IT社区,创新赋能!

#include <io.h>
https://bbs.tsingfun.com/thread-887-1-1.html 

c++编译错误:invalid new-expression of abstract class type - c++1y / s...

出现这个错误原因是new 了一个抽象类出错,说明父类(接口)中有纯虚函数没有实现。 接口里的纯虚函数全部需要实现,这样才能new 子类。 纯虚函数例如&nbsp;&nbsp;void fun() = 0; 是纯虚函数,不是纯虚函数不作要求。 另外...
https://bbs.tsingfun.com/thread-712-1-1.html 

mongodb, replicates and error: { “$err” : “not master and slaveOk=f...

出现这个错误的原因是在从库上执行命令导致,默认情况下只有主库可以执行命令。 当然可以通过设置使得从库也能执行命令,具体参见: http://stackoverflow.com/questions/8990158/mongodb-replicates-and-error-err-not-master-and-slaveok-false-code
https://bbs.tsingfun.com/thread-408-1-1.html 

MongoDB.Driver.MongoConnectionException: Unable to connect to the prim...

MongoDB.Driver.MongoConnectionException: Unable to connect to the primary member of the replica set: Too many threads are already waiting for a connection.. C# Driver:1.3.1 Replset: localhost:10001 (primary) localhost:10002 (member) I have initReplset and add localhost:10002 to the replse...
https://bbs.tsingfun.com/thread-407-1-1.html 

mongodb 以管理员登录并创建 database - 人工智能(AI) - 清泛IT社区,创新赋能!

mongodb 以管理员登录并创建 database在一个有了用户名的数据库集中,即使在 admin 数据库中创建了用户,登录上去后还是不能访问其他数据库的,但是用&nbsp; &nbsp;登录是可以的呀,虽然可以在相应数据库中再建立用户,但别的程序都不用...