Click here to Skip to main content
15,879,184 members
Articles / Programming Languages / SQL

Remove Skype Chat History for Single Contact

Rate me:
Please Sign up or sign in to vote.
4.63/5 (22 votes)
17 Feb 2013CPOL2 min read 272K   23.8K   56   77
A small C# utility to clear a single contact chat history, since Skype by default only deletes full chat history.
Image 1

Introduction

I wanted to clear the Skype chat history for a single user, but Skype only allows you to clear the complete chat history, not a single user's contact history.

I searched for 3rd party tools on the net but nothing worked for me on Windows 7 / Skype 4.1

At the beginning, I knew nothing about how Skype stored chat history and just entered my username and password to login and chat with friends.

After spending a few hours asking Google many questions, I found that Skype was using the following SQLite database to store its messages.

System Drive:\<Current User’s application data folder>/Skype/<Skype username>/main.db

I tried to read it with SQLitespy, but it was a pain to find and clear messages each time. Then, decided to develop a small C# utility to clear a single contact chat history.

Using the Code

First of all, I had to find a method to deal with an SQLite database file using C#. This is where the System.Data.SQLite plays a role in my application. You may download it from http://sqlite.phxsoftware.com/

Reference System.Data.SQLite.dll (Located in C:\Program Files\SQLite.NET\bin\System.Data.SQLite.dll) to allow C# to deal with the SQLite database file.

Once I knew I was going to dirty my hands with development, I wanted to find the Skype username(s) to reach to the database file. In System Drive:\<Current User’s application data folder>/Skype/ folder, Other than Skype user folder(s), there are 3 folders that Skype use for its operations, “Content”, “My Skype received files” and “Pictures”. I wrote codes to read subfolders and filter-out those 3 Skype standard folders.

String sDirName = Environment.GetEnvironmentVariable("APPDATA") + @"\Skype";
String [] folders = Directory.GetDirectories(sDirName);
String[] names = new String[folders.Length-3];

            foreach (String fname in folders){
                String folder = fname.Replace(Environment.GetEnvironmentVariable("APPDATA") +
                    @"\Skype\", "");
                if (folder != "Content" && folder != "My Skype Received Files" && 
                    folder != "Pictures")
                {
                     usernamecb.Items.Add(folder);
                }
            }

The Usernamecb variable will be used to populate the dropdown box in the UI.

Based on the selected username we can reach the Skype message database (main.db) and read chat participants. Chat messages are stored in the "Messages" table.

The following code reads the database and fetches chat participnts (Contacts) who has messages in it.

C#
database = Environment.GetEnvironmentVariable("APPDATA") + @"\Skype\" + SkypeUserName + 
    @"\main.db";
SQLiteConnection sqlite = new SQLiteConnection("data source=" + database);
SQLiteDataAdapter ad;
DataTable dt = new DataTable();

SQLiteCommand cmd;

sqlite.Open();

cmd = sqlite.CreateCommand();
cmd.CommandText = "select DISTINCT dialog_partner from Messages";
ad = new SQLiteDataAdapter(cmd);
ad.Fill(dt); //execute command
participants.DataSource = dt;
participants.ValueMember = "dialog_partner";

Where participants is a dropdown box in UI that displays chat participants.

When the user selects the participant from the dropdown box, the following SQL command deletes all messages for a selected participant from the database.

SQL
cmd = sqlite.CreateCommand();
cmd.CommandText = "delete from Messages Where dialog_partner = '" + participant + "'";
ad = new SQLiteDataAdapter(cmd);
ad.Fill(dt); //execute command

Then I realized that the database file is been locked while Skype is running. Therefore, I added code to terminate the Skype process when the program starts running, and starts up Skype again when the program closes.

C#
// Terminate Skype
foreach (Process p in Process.GetProcesses(Environment.MachineName))
            {
                if (p.ProcessName.Equals("Skype"))
                {
                    p.Kill();
                }
          }
 
//Start Skype when the programe is exiting
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
            // open Skype again
            String program = Environment.GetEnvironmentVariable("ProgramFiles");
            try
            {

                System.Diagnostics.ProcessStartInfo psi =
                new System.Diagnostics.ProcessStartInfo(program + @"\Skype\Phone\Skype.exe");
                System.Diagnostics.Process.Start(psi);
            }
            catch (Exception ex){}
  }

When all the code comes together, it is a nice and painless tool for clearing a single user's chat history. 

Revision (2013/02/18) 


1. Updated utility to working with Skype 5.1 and later folder structure while searching skype user accounts

2. Application will automatically remove conversation from recent conversation tab

3. Published setup files for both 32bit and 64 systems 

 

License

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


Written By
Web Developer
Sri Lanka Sri Lanka
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWhen I try to open it says that the skype is running Pin
Member 1206143415-Oct-15 6:19
Member 1206143415-Oct-15 6:19 
AnswerRe: When I try to open it says that the skype is running Pin
Member 128267161-Nov-16 2:18
Member 128267161-Nov-16 2:18 
QuestionKeep saying that Skype is still running & messages on Skype server Pin
Member 1177315217-Jun-15 5:44
Member 1177315217-Jun-15 5:44 
AnswerRe: Keep saying that Skype is still running & messages on Skype server Pin
Member 1177315217-Jun-15 7:48
Member 1177315217-Jun-15 7:48 
Questionthere is a problem.... Pin
Member 115916408-Apr-15 9:51
Member 115916408-Apr-15 9:51 
AnswerRe: there is a problem.... Pin
Wombaticus22-Aug-15 22:02
Wombaticus22-Aug-15 22:02 
QuestionWon't delete anything Pin
Aroman0072-Jan-15 8:48
Aroman0072-Jan-15 8:48 
BugException (Windows 8) Pin
alexandis16-Jul-14 8:06
alexandis16-Jul-14 8:06 
QuestionFix for Deleting completely Pin
dinhthuan_bk8819-May-14 18:42
dinhthuan_bk8819-May-14 18:42 
Questioncant run Pin
hubertsk14-Apr-14 9:10
hubertsk14-Apr-14 9:10 
QuestionRe: cant run Pin
hubertsk22-Apr-14 1:35
hubertsk22-Apr-14 1:35 
Questioncan't run Pin
McClausky8-May-13 3:25
McClausky8-May-13 3:25 
BugDoesn't delete ALL messages Pin
RaMMicHaeL28-Apr-13 4:47
RaMMicHaeL28-Apr-13 4:47 
QuestionSelecting a date range still erased ENTIRE persons history Pin
Member 964919527-Apr-13 3:42
Member 964919527-Apr-13 3:42 
GeneralMy vote of 4 Pin
pakssg14-Apr-13 23:27
pakssg14-Apr-13 23:27 
Questionhelp .NET ERROR Pin
Member 98835866-Mar-13 22:04
Member 98835866-Mar-13 22:04 
AnswerRe: help .NET ERROR Pin
Sergey Kasatikoff11-Mar-13 18:55
Sergey Kasatikoff11-Mar-13 18:55 
Questiondate interval Pin
apabox22-Feb-13 8:02
apabox22-Feb-13 8:02 
GeneralMy vote of 2 Pin
lankymart13-Feb-13 3:48
professionallankymart13-Feb-13 3:48 
GeneralRe: My vote of 2 Pin
PavloD14-Feb-13 21:59
PavloD14-Feb-13 21:59 
GeneralRe: My vote of 2 Pin
lkgamage18-Feb-13 2:53
lkgamage18-Feb-13 2:53 
GeneralRe: My vote of 2 Pin
PavloD18-Feb-13 4:22
PavloD18-Feb-13 4:22 
GeneralRe: My vote of 2 Pin
lkgamage18-Feb-13 4:42
lkgamage18-Feb-13 4:42 
GeneralRe: My vote of 2 Pin
PavloD19-Feb-13 3:41
PavloD19-Feb-13 3:41 
QuestionWorks like a Charm Pin
juan luis vera16-Jan-13 13:43
juan luis vera16-Jan-13 13:43 
Great small app. I installed it and worked like a charm. (windows 7 home and skype 6.1). Make sure you guys download the latest version of this app: http://gl360.net/skype/Skype_Message_Cleaner_1.2.zip

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.