Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
12answers
954 views

How to design a database for User Defined Fields?

My requirements are: Need to be able to dynamically add User-Defined fields of any data type Need to be able to query UDF fields quickly Need to be able to do calculations on UDF fields based on ...
3
votes
3answers
295 views

What is the fastest method for performing more than 64 table joins in SQlite?

I'm planning on generating queries for SQLite that will involve many joins on 12 tables that will surpass the 64 table join limit in SQLite. (~250 table joins or possibly more) This will be running on ...
2
votes
2answers
1k views

How would you create and store user-defined custom fields in a SQL database?

I need to allow users to add new fields to a record, e.g. if there is a Contact record, a user may want to add a "SSN" numeric field and a "Birthdate" date/calendar field. They would do this through ...
2
votes
1answer
443 views

Crystal Reports 8.5 grouping

I am grouping using a formula fCity which goes like this If {X.MailingCity} > "" Then {X.MailingCity} Else {X.City} I have two different fields in my view (Home City and Mailing City) Now, these ...
1
vote
1answer
679 views

Creating extended property using EWS and access it from Outlook Add-in

I am currently working on EWS to have some integration of our company application with Exchange 2010. I am using EWS to create appoinment to Exchange 2010 and it works fine; but recently I tried to ...
1
vote
1answer
183 views

How best to create custom fields per user/customer?

I've got an application which is sold as a SAAS to multiple customers. Predictably, sometimes customers want to customise some areas of the application by adding their own fields, specifically the ...
1
vote
2answers
4k views

How can I build Word fields with VBA

Apart from just inserting and parsing text into a blank Word field, is there any way to programatically build user-defined fields and field codes into my own templates with VBA? Furthermore, is there ...
0
votes
1answer
762 views

User Defined Fields with NHibernate

I need to add a user defined fields feature to an asp.net c# application that uses NHibernate. The user must be able to add and remove fields from several objects in the system "on the fly", ...