using ( var connection = new SQLiteConnection ( "Data Source=mydatabase.sqlite" ) )
{ connection. Open ( ) ; var tableNames = new List< string > ( ) ; var tablesCommand = new SQLiteCommand ( "SELECT name FROM sqlite_master WHERE type='table'" , connection) ; using ( var tablesReader = tablesCommand. ExecuteReader ( ) ) { while ( tablesReader. Read ( ) ) { tableNames. Add ( tablesReader. GetString ( 0 ) ) ; } } var exportSql = new StringWriter ( ) ; foreach ( var tableName in tableNames) { var schemaCommand = new SQLiteCommand ( $"PRAGMA table_info( { tableName } )" , connection) ; var schemaReader = schemaCommand. ExecuteReader ( ) ; exportSql. WriteLine ( $"-- Table: { tableName } " ) ; exportSql. Write ( "CREATE TABLE " ) ; exportSql. Write ( tableName) ; exportSql. Write ( " (" ) ; bool firstColumn = true ; while ( schemaReader. Read ( ) ) { string columnName = schemaReader. GetString ( 1 ) ; string columnType = schemaReader. GetString ( 2 ) ; bool notNull = ! schemaReader. IsDBNull ( 3 ) && schemaReader. GetInt32 ( 3 ) != 0 ; bool primaryKey = ! schemaReader. IsDBNull ( 5 ) && schemaReader. GetInt32 ( 5 ) != 0 ; if ( ! firstColumn) { exportSql. Write ( "," ) ; } exportSql. Write ( columnName) ; exportSql. Write ( " " ) ; exportSql. Write ( columnType) ; if ( notNull) { exportSql. Write ( " NOT NULL" ) ; } if ( primaryKey) { exportSql. Write ( " PRIMARY KEY" ) ; } firstColumn = false ; } exportSql. Write ( ");" ) ; exportSql. WriteLine ( ) ; var dataCommand = new SQLiteCommand ( $"SELECT * FROM { tableName } " , connection) ; using ( var dataReader = dataCommand. ExecuteReader ( ) ) { while ( dataReader. Read ( ) ) { exportSql. Write ( $"INSERT INTO { tableName } VALUES (" ) ; bool firstValue = true ; for ( int i = 0 ; i < dataReader. FieldCount; i++ ) { if ( ! firstValue) { exportSql. Write ( "," ) ; } object value = dataReader. GetValue ( i) ; if ( value == null ) { exportSql. Write ( "NULL" ) ; } else if ( value is string ) { exportSql. Write ( $"' { value . ToString ( ) . Replace ( "'" , "''" ) } '" ) ; } else if ( value is DateTime ) { exportSql. Write ( $"' { ( ( DateTime) value ) . ToString ( "yyyy-MM-dd HH:mm:ss.fff" ) } '" ) ; } else { exportSql. Write ( value . ToString ( ) ) ; } firstValue = false ; } exportSql. Write ( ");" ) ; exportSql. WriteLine ( ) ; } } exportSql. WriteLine ( ) ; } File. WriteAllText ( "export.sql" , exportSql. ToString ( ) ) ;
}
public void ImportSqlFile ( string sqlFilePath, string databaseFilePath)
{ string sql = File. ReadAllText ( sqlFilePath) ; using ( var connection = new SQLiteConnection ( $"Data Source= { databaseFilePath } " ) ) { connection. Open ( ) ; using ( var command = new SQLiteCommand ( sql, connection) ) { command. ExecuteNonQuery ( ) ; } } Console. WriteLine ( "SQL 文件导入成功!" ) ;
}