This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Data; | |
using System.Data.SqlClient; | |
using System.IO; | |
namespace ARGHGHGHGHG | |
{ | |
internal class Program | |
{ | |
static int progress = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
I needed a way to look at an existing SQLite schema, compare it to a text file containing some table | |
definitions and then work out if the two were the same. Here's how I did it. | |
The hashtable 'givenschema' contains each table create statement keyed by the name of the table. | |
*/ | |
public static void CheckSchema() | |
{ |
NewerOlder