Click here to Skip to main content
15,881,740 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hello Friends,

I am facing a problem to save the List values into XML file to specific location.
I am putting the some prototype code for getting the List data which needs to be save in xml format/file.

DataService dbObj;
int main(int argc, char* argv[])
{
	
	if(dbObj.OpenDB() ) // open the MS Access database using DAO
	{
		DisplayMsg(_T("PASS"), _T("OpenDB()") ) ; 			
	}
	else
	{
		DisplayMsg(_T("FAIL"), _T("OpenDB()") ) ; 			
		
	} 
	
	
	CheckValuesByDate(); 
	
	
	if(dbObj.CloseTrendDB()) //Close the MS access database
	{
		DisplayMsg(_T("PASS"), _T("CloseDB()") ) ; 			
	}
	else
	{
		DisplayMsg(_T("FAIL"), _T("CloseDB()") ); 
	}
}
void CheckValuesByDate()
{
	
	list<DataValues> tValueList; 
	list<DataValues>::iterator t; 
	
	CString sqlCondition = _T("select * from table"); 

//Function which will return the all values into tValueList based on sql condition and date duration	
	dbObj.GetTrendValuesByDate(tValueList,sqlCondition, "5/12/2009", "10/23/2012");
	
}


So there is a requirement to save the all
tValueList
values into XML file in specific location (location given by user).

Please let me know if there is any reference libraries or any solution to perform this.

Please let me know for any clarification.
Posted
Updated 8-Oct-12 0:51am
v2

1 solution

Take a look at XmlLite[^], it may be enough for your problem.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900