ReubenLi.NET

CSV to SQLite Database

Just wrote a bash script to import a CSV file with headers (and without double quotes) into an sqlite database:

#!/bin/bash
if [ "$3" = "" ]; then echo "Enter \"csv2sql filename tablename dbname\""; else
filename=$1
tablename=$2
dbname=$3 list=$(cat $filename | sed -n '1p' | sed 's/,/ VARCHAR,/g')
cat $filename | sed '1d' | sed 's/,/|/g' > temp
echo "create table $tablename($list VARCHAR);" | sqlite3 $dbname
echo ".import temp $tablename" | sqlite3 $dbname
rm temp
fi

Oh and this allows you to create a new db and table as well. If your CSV file comes with double quotes for strings, you may wanna add the following line at the start:

sed 's/"//g' $filename > temp; mv $filename $filename".bak"; mv temp $filename

Add comment


Security code
Refresh

App - Camera Disabler/Locker

My Very First Android Application! This is a very simple app designed to enable users to disable the camera for whatever reasons they may have. 

 

OwnCloud

My very own cloud network is up! Lemme know if you want an account to play with. This cloud syncs my server in Tokyo, my machines at home and a laptop that I carry around with me.

 

App - Cracked Screen Prank HD

This is my most downloaded android app (among the 2 published -_-"). Its almost reaching a 1000 downloads!

 

Android Developer

Elastic Layout!

Try resizing the browser window and see how this webpage reacts! Read more about responsive web design here.

Member Area

Contact Me