会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
天道酬勤!!!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
100
101
102
103
104
105
106
下一页
2013年6月9日
SQLite中怎么将两个字段字符串合并连接为一个
摘要: 在SQLite下我测试了SELECT 'A'+'B'结果为0select "A"+"1" 结果为1select "A"+1 结果为1select 2+1 结果为3感觉在“+”运算中,SQLite将字符串非数字串都当作0处理了加号就是针对数字的,所以应该用|| 来拼接字符串的结果
阅读全文
posted @ 2013-06-09 13:40 simadi
阅读(552)
评论(0)
推荐(0)
2013年6月7日
Php 操作sqlite3 文本数据库
摘要: sqlite 官方网站: http://www.sqlite.org/ php 官方网站文档: http://cn.php.net/manual/zh/book.sqlite3.php php 操作sqlite3 文本数据库的类为: SQLite3 1. 声明一个sqlite3 文本数据库对像 $db = new SQLite3('mysqlitedb.db'); 2. 执行一个对文本数据库的查询 SQLite3::query() $re = $db->query('select name from table'); while ($row = $re-&
阅读全文
posted @ 2013-06-07 17:27 simadi
阅读(2765)
评论(0)
推荐(0)
SQLITE3在php中的运用
摘要: php中操作sqlite3数据库的类文件。一般用法:$filepath="/apps/www/htdocs/databasename";$db=new SPSQLite3($filepath); //打开此路径数据库文件$sql="select * from tablename"; //查询记录$sql2="delete from tablename"; //删除表内所有记录$db->exec_sql($sql); //执行查询语句$db->struct_sql($sql2); //执行删除$result=$db->
阅读全文
posted @ 2013-06-07 17:08 simadi
阅读(1045)
评论(0)
推荐(0)
vs.php for vs2010 暂时破解方法
摘要: 删除注册表键HKEY_LOCAL_MACHINE\SOFTWARE\Licenses, 然后打开Procmon,再启动vs2010,就可以使用了。vs.php 下载地址http://www.jcxsoftware.com/download.php
阅读全文
posted @ 2013-06-07 12:58 simadi
阅读(468)
评论(0)
推荐(0)
2013年6月5日
c的结构在c#里的定义方法
摘要: typedef struct{songinfo songs[5];int foundnum;}QUERYRESULT; typedef struct{int id;int hits;char name[80];float spos[5];int sposnum;}songinfo;c# [StructLayout(LayoutKind.Sequential, Pack = 1)] public struct QueryResult { [MarshalAs(UnmanagedType.ByValArray, SizeConst = 5)] p...
阅读全文
posted @ 2013-06-05 13:38 simadi
阅读(462)
评论(0)
推荐(0)
2013年6月4日
c++与c#的类型转换
摘要: C++C#传入的char*string传出的char*StringBuilder(预分配空间)shortshortcharbytechar[n]fixedbyte[n]结构指针结构指针函数指针委托
阅读全文
posted @ 2013-06-04 17:23 simadi
阅读(340)
评论(0)
推荐(0)
2013年6月3日
C# DllImport用法和路径问题
摘要: DllImport是System.Runtime.InteropServices命名空间下的一个属性类,其功能是提供从非托管DLL导出的函数的必要调用信息。 DllImport属性应用于方法,要求最少要提供包含入口点的dll的名称。 DllImport的定义如下:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->[AttributeUsage(AttributeTargets.Method)] publicclass DllImportAttr
阅读全文
posted @ 2013-06-03 11:38 simadi
阅读(250)
评论(0)
推荐(0)
2013年6月1日
jQuery图片轮播插件 jQuery Cycle Plugin
摘要: http://jquery.malsup.com/cycle/
阅读全文
posted @ 2013-06-01 13:58 simadi
阅读(170)
评论(0)
推荐(0)
SmallSlider 图片轮播插件
摘要: http://lib.kindcent.com/smallslider/
阅读全文
posted @ 2013-06-01 12:10 simadi
阅读(160)
评论(0)
推荐(0)
2013年5月30日
win7 怎么修改右键“发送到”菜单
摘要: 地址栏里输入shell:sendto 回车 打开了了一个文件夹 然后把快捷方式剪切到这里就可以了
阅读全文
posted @ 2013-05-30 11:17 simadi
阅读(234)
评论(0)
推荐(0)
上一页
1
···
100
101
102
103
104
105
106
下一页
公告