[FireDAC][Phys][MSSQL]-335. Parameter [fieldAA] data type is unknown. Hint: specify TFDParam.DataType or assign TFDParam value before Prepare/Execute ...
分类:
其他好文 时间:
2016-06-17 20:54:58
阅读次数:
411
下面就是真正关于数据库的一些知识了: 20160614更新 1. SQLite创建表: 基本语法: CREATE TABLE database_name.table_name( column1 datatype PRIMARY KEY(one or more columns), column2 da ...
分类:
数据库 时间:
2016-06-15 22:15:01
阅读次数:
303
在使用Jquery的时候,用到Callback(),回调函数的概念。而且很多。 比如: $.ajax({ url:"test.json", type: "GET", data: {username:$("#username").val()}, dataType: "json", beforSend: ...
分类:
Web程序 时间:
2016-06-14 11:57:50
阅读次数:
313
var id=‘123’; $.ajax({ url:’http://www.xxx.com/ajax', type:'post', dataType: "json", data:{wurl:w_url,murl:m_url}, async : turn, error:function(){ }, ...
分类:
Web程序 时间:
2016-06-07 06:35:45
阅读次数:
134
schoolManageGrid = $("#jqGrid").jqGrid({ url : ctx.path+"/api/school/querySchools", mtype:"POST", datatype: "json", height:contentHeight, colNames: [' ...
分类:
其他好文 时间:
2016-06-06 20:42:10
阅读次数:
166
$.ajax其实底层还是用的XMLHttpRequest,对于加载数据的格式datatype有:xml、text、html、json、jsonp、script。 其中xml、text不需要处理,直接使用原生的responseXML、responseText。对于html、json其实也是用respo ...
分类:
Web程序 时间:
2016-06-06 18:53:54
阅读次数:
199
$.ajax({ type: "POST", url: ctx.path+'/api/hPage/getLocalTime.json', traditional: true, dataType: "json", success: function(data){ if(data.rs==1){ var ...
分类:
其他好文 时间:
2016-06-06 16:51:56
阅读次数:
112
seqlist.h#ifndef__SEQLIST_H__
#define__SEQLIST_H__
#include<stdio.h>
#include<stdlib.h>
#include<assert.h>
#defineINIT_SIZE2
#defineADD_SIZE3
typedefintDataType;
typedefstructSeqlist
{
DataType*data;
intsize;//当前空间存储的元素个数
int..
分类:
其他好文 时间:
2016-06-05 01:13:43
阅读次数:
199
#ifndef __LINKLIST_H__
#define __LINKLIST_H__
#define _CRT_SECURE_NO_WARNINGS 1
#include
#include
#include
typedef int DataType;
typedef struct LinkNode
{
DataType data;
struct LinkNode *next;
}Link...
分类:
编程语言 时间:
2016-06-05 01:11:35
阅读次数:
191
场景数据类: /// <summary> /// 关卡数据 /// </summary> public class LevelData { //关卡名称 public string levelName; //物体列表 public List<DataType> objectsToData = new ...
分类:
编程语言 时间:
2016-06-04 11:59:28
阅读次数:
216