Click here to Skip to main content
15,893,668 members

Comments by Ravindranath.net (Top 15 by date)

Ravindranath.net 13-Nov-15 12:35pm View    
It is not the property that is null.. it is the XmlType object it self... so that didn't work.


Ravindranath.net 13-Nov-15 10:52am View    
otherthan xml?
Ravindranath.net 12-Nov-15 13:51pm View    
With the SqlBulkCopy, we can only insert data into one table at a time. My requirement is that, I would like to bulk insert the data into multiple tables at the same time. Meaning, I would like to insert multiple rows into Student and Professors tables at the same time.
Ravindranath.net 12-Nov-15 8:26am View    
the user comes to our application from a different application which is not a .Net application, and we don't authenticate user other than validation his windows user id against the transaction info they pass. How Can I generate the token in that case?
Ravindranath.net 19-Jul-13 11:49am View    
I am really in a big trouble... this is how i am allocating the memory to character pointer...

temp = (char *)calloc(8, sizeof(char));

and this is how i am assinging the value to temp... with todays date..

sprintf(temp,"%02d%02d%04d",month,day,year);

In the above.. if it i increase it from 8 to 9.. then the sprintf will work fine with out any issues but it is breaking the application in other place becasue i am copying the value of temp to some other variable that has length only 8...i increased that one aslo to nine... but it has so mnay links like that.. is there any other way that i can assign the value to temp without increase the lenght to 9.... i really appreciate your help.. i am a C# developer but unluckly working onthis project.