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

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Curious about the future of data-driven systems? Join our Data Engineering roundtable and learn how to build scalable data platforms.

Data Engineering: The industry has come a long way from organizing unstructured data to adopting today's modern data pipelines. See how.

Threat Detection: Learn core practices for managing security risks and vulnerabilities in your organization — don't regret those threats!

Managing API integrations: Assess your use case and needs — plus learn patterns for the design, build, and maintenance of your integrations.

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

  • Faster Startup With Spring Boot 3.2 and CRaC, Part 1: Automatic Checkpoint
  • Supporting Multiple Redis Databases With Infinispan Cache Aliases Enhancement
  • How to Create a Pokémon Breeding Gaming Calculator Using HTML, CSS, and JavaScript
  • Inside the World of Data Centers
  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
14.1K 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.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

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 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: