C# 클래스 VelocityDBExtensions.ImportExportCsv

파일 보기 프로젝트 열기: VelocityDB/VelocityDB

공개 메소드들

메소드 설명
ExportToCSV ( this session, string directory ) : void

Export all persistent objects to .csv files, one file for each Type and version of Type. This is preview release, format may change. ImportFromCSV can be used to recreate your data. Note that Microsoft Excel can't handle many of these CSV files due to a field value limitation (at about 33000 chars) Notepad++ is one application that can read these files. Some fields like array data are encoded http://msdn.microsoft.com/en-us/library/dhx0d524(v=vs.110).aspx

ImportFromCSV ( this session, string csvDirectory ) : void

Restores database files, pages and objects from a .csv file data created with ExportToCSV

메소드 상세

ExportToCSV() 정적인 공개 메소드

Export all persistent objects to .csv files, one file for each Type and version of Type. This is preview release, format may change. ImportFromCSV can be used to recreate your data. Note that Microsoft Excel can't handle many of these CSV files due to a field value limitation (at about 33000 chars) Notepad++ is one application that can read these files. Some fields like array data are encoded http://msdn.microsoft.com/en-us/library/dhx0d524(v=vs.110).aspx
static public ExportToCSV ( this session, string directory ) : void
session this the active session
directory string Where to store the CSV files
리턴 void

ImportFromCSV() 정적인 공개 메소드

Restores database files, pages and objects from a .csv file data created with ExportToCSV
static public ImportFromCSV ( this session, string csvDirectory ) : void
session this the active session
csvDirectory string Path to directory containing CSV files
리턴 void