Tagged Questions
The nulls tag has no wiki summary.
4
votes
2answers
988 views
SQLDataReader: Dealing with null values
Some tables I am dealing with have null values and are throwing errors. So far ive tried a few solutions to deal with the nulls with no success.
Here are the code samples from my efforts so far;
If ...
3
votes
5answers
817 views
SQL Date pattern for dates that user may not know all the information
You system allows new users to register and enter their wedding date. Being a purist, I wanted to store this as a date. After user interviews, it was clear that the reality differs from this approach. ...
2
votes
3answers
186 views
SQL: how to know if a field has “Allow nulls” checked or not checked by SQL command
I want to know which table's field are required or not required so I have to get "Allow nulls" state. How to do that?
1
vote
2answers
131 views
Removing entries from json string in C#
I have a json string generated as follows:
System.Xml.Serialization.XmlSerializer x = new System.Xml.Serialization.XmlSerializer(typeof(Data));
...
1
vote
1answer
299 views
How to remove nulls from byte array?
For some reason, the byte array output of BeginReceive fills up with nulls and then the data.
BeginReceive:
AsyncResult = connectSocket.BeginReceive(RecvBuffer2,
...
1
vote
2answers
818 views
How to architect DAL for WebService exposure?
We have a highly specialized DAL which sits over our DB. Our apps need to use this DAL to correctly operate against this DB.
The generated DAL (which sits on some custom base classes) has various ...
0
votes
5answers
70 views
Process data and continue if NULL
I have to process a number of items of data for example
User u = NotMyObject.GetUser(100);
ProcessProperty(u.FirstName);
ProcessProperty(u.Surname);
ProcessProperty(u.Phone.Work);
...
0
votes
2answers
157 views
Updating, Foreign Key Constraints and nulls
I am generating a data template in C#. With the help of the good people on this wonderful site, I've managed to take care of almost every issue. This should be the last problem. Because it's a ...