DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Unveiling the Clever Way: Converting XML to Relational Data
  • Go Application Vulnerability Cheatsheet
  • The X-Factor: RAML With XML Format
  • How To Persist and Query Data With SQLite in Flutter App Development

Trending

  • Chaos Engineering Has a Blind Spot. Agentic AI Lives in It.
  • Building a Skill-Based Agentic Reviewer with Claude Code: A Practical Guide Using Skills.MD, MCP Servers, Tools, and Tasks
  • A Scalable Framework for Enterprise Salesforce Optimization: Turning Outcomes Into an Operating System
  • How to Write for DZone Publications: Trend Reports and Refcards
  1. DZone
  2. Coding
  3. Languages
  4. Importing XML Data Into A SQLite Table

Importing XML Data Into A SQLite Table

By 
Jonnie Spratley user avatar
Jonnie Spratley
·
Sep. 21, 08 · Code Snippet
Likes (1)
Comment
Save
Tweet
Share
15.9K Views

Join the DZone community and get the full member experience.

Join For Free
For inserting into a SQLite table, use the code as follows:



//DB Connection
private var dbconn:SQLConnection;
//Query Statement
private var sqlQuery:SQLStatement;		
//Create Table Statement
private var sqlCreateTable:SQLStatement;
//Insert Statement
private var sqlInsert:SQLStatement;
//Import Statement
private var sqlImport:SQLStatement;

			 
 /**
  * This is for importing xml data to a SQLite table 
  * @param node xml node
  * @param user the user whos data this is
  * 
  */			 
 public function importPostXML( node:XMLNode, user:User ):void
 {
	var query:String = "INSERT INTO posts (" + 
									"post_url," + 
									"post_hash," + 
									"post_desc," + 
									"post_tags," + 
									"post_time," + 
									"post_extended," + 
									"post_shared," + 
									"post_replace," + 
									"post_user)" + 
							"VALUES ( " + 
									":post_url," + 
									":post_hash," + 
									":post_desc," + 
									":post_tags," + 
									":post_time," + 
									":post_extended," + 
									":post_shared," + 
									":post_replace," +												
									":post_user)";
	sqlImport = new SQLStatement();
	sqlImport.sqlConnection = dbconn;
	sqlImport.addEventListener( SQLEvent.RESULT, onSQLSave );
	sqlImport.addEventListener( SQLErrorEvent.ERROR, onSQLError );
	sqlImport.text = query;
	
	sqlImport.parameters[":post_url"] = node.attributes.href;
	sqlImport.parameters[":post_hash"] = node.attributes.hash;
	sqlImport.parameters[":post_desc"] = node.attributes.description;
	sqlImport.parameters[":post_tags"] = node.attributes.tag;
	sqlImport.parameters[":post_time"] = node.attributes.time;
	sqlImport.parameters[":post_extended"] = node.attributes.extended;
	sqlImport.parameters[":post_shared"] = node.attributes.shared;
	sqlImport.parameters[":post_replace"] = node.attributes.replace;
	sqlImport.parameters[":post_user"] = user.user_name;
	
	sqlImport.execute();
	
	trace( "Importing XML to SQLite Database" );				
 }

XML Data (computing) SQLite

Opinions expressed by DZone contributors are their own.

Related

  • Unveiling the Clever Way: Converting XML to Relational Data
  • Go Application Vulnerability Cheatsheet
  • The X-Factor: RAML With XML Format
  • How To Persist and Query Data With SQLite in Flutter App Development

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook