在Settings -> User Preferences里面有一个“Show System Fields”的选项。是否勾选这个选项后,再新建List Box的时候就可以选择系统字段。否则不能。那如何定义系统字段呢。
如下代码所示:
SET HidePrefix = "_";
TableB:
LOAD * Inline [
Test1, Test2, Test3, _Test4
...
分类:
其他好文 时间:
2014-12-19 15:53:37
阅读次数:
344
接上篇点击打开链接
LeftNavGroupTemplate.cs
internal class LeftNavGroupTemplate : ITemplate
{
// Fields
private int index;
private string xml;
// Methods
public ...
分类:
其他好文 时间:
2014-12-18 15:12:32
阅读次数:
121
#region Fields private AreaRepository _areaRepository = new AreaRepository(); private ICacheManager _cacheManager = new MemCacheManager(); ...
分类:
系统相关 时间:
2014-12-18 11:45:46
阅读次数:
254
/** ?* main external API structure. ?* New fields can be added to the end with minor version bumps. ?* Removal, reordering and changes to existing fields require a major ?* version bump. ?* P...
分类:
其他好文 时间:
2014-12-17 16:37:55
阅读次数:
1015
1.ComboBox读取远程数据 使用Ext.data.Store配合proxy和fields获得从后台返回的数据 var store=new Ext.data.Store({ proxy:{ type:“ajax”, url:“ep...
分类:
Web程序 时间:
2014-12-16 19:05:13
阅读次数:
176
多值字段(Multivalue Fields)
在多值字段上使用短语匹配会产生古怪的行为:
PUT /my_index/groups/1
{
"names": [ "John Abraham", "Lincoln Smith"]
}
运行一个针对Abraham Lincoln的短语查询:
GET /my_index/groups/_search
{
"q...
分类:
其他好文 时间:
2014-12-16 10:04:15
阅读次数:
236
把数据导入到指定的文件:table expressioninto outfile 'filename' |into dumpfile 'filename' |into : fields [terminated by [literal] ] .... lines terminated b...
分类:
数据库 时间:
2014-12-16 06:28:44
阅读次数:
175
1、得到当前格子中的内容:
DBGrid1.Fields[DBGrid1.SelectedIndex].DisplayText;
把DBGrid1.SelectedIndex改为你所希望引用的字段就可以了,如第3个字段。
DBGrid1.Fields[3].DisplayText;
2、双击单元格触发不同事件
procedure TMainFrm.DBGrid1DblClick(s...
分类:
数据库 时间:
2014-12-13 15:13:23
阅读次数:
226
删除属性表中的字段一定要注意循环的方式。如果是for循环,i= 0; i--)
{
delField = pointFS.Fields.get_Field(i);
if (delField.Name != "FID" &&
delField.Name != "Shape" &&
delField.N...
分类:
其他好文 时间:
2014-12-12 20:38:55
阅读次数:
204
LOAD DATA [LOW_PRIORITY] [LOCAL] INFILE'file_name.txt' [REPLACE | IGNORE]
INTO TABLE tbl_name
[FIELDS
[TERMINATED BY '\t']
[OPTIONALLY] ENCLOSED BY '']
[ESCAPED BY '\\...
分类:
数据库 时间:
2014-12-11 12:24:47
阅读次数:
258