Tagged Questions
The fieldtypes tag has no wiki summary.
2
votes
1answer
191 views
SharePoint SPFieldType.Integer problem
I have to render dynamically sharepoint fields of type SPFieldType.Integer,
SPFieldType.Boolean, SPFieldType.DateTime, SPFieldTYpe.Guid, SPFieldTYpe.Counter, SPFieldType.Currency, and ...
1
vote
1answer
103 views
Sharepoint SPFieldType information
I was working on an assignement which consists of
rendering the following field types in sharepoint:
Lookup
MaxItems
MultiChoice
Choice
ModStat
GridChoice
I have managed to render the following ...
0
votes
0answers
20 views
SOLR PHP - assign custom field type of added doc
I've created a field type named c_text in schema.xml
<fieldType name="c_text" class="solr.TextField">
....
</fieldType>
to use this fieldType, all field must defined like this ...
0
votes
6answers
124 views
Acceptable field type and size for email address? [closed]
Possible Duplicate:
Common mySQL fields and their appropriate data types
What are the recommended database column sizes for names?
I am looking for what would be the most correct field ...
0
votes
2answers
184 views
How to return field type from MySQL query?
Simple question: How can I return the field type of a MySQL table. I know about describe or show column but I just want to return that single parameter. e.g.:
SELECT fieldtype(mycol) FROM mytable
# ...
0
votes
1answer
255 views
C# reflection getting nullable type
i have class, with fields of double? type.
with reflection i get fields
Parameters cl = new Parameters();
FieldInfo[] fi = cl.GetType().GetFields((BindingFlags.NonPublic | BindingFlags.Instance));
...
0
votes
2answers
313 views
How to convert MySQL field types?
I have already come across the convert funtion. As I understand it, the basic syntax is:
select convert(columnName, targetFieldType) as newColumnName from table;
Running this command doesn't give ...
0
votes
1answer
354 views
Sharepoint File FieldType
I am implementing a few SharePoint lists that require a file upload, putting the file in the list directory under a folder called /Lists/{ListName}/{RecordId}/filename.ext
How can I achive this using ...