SELECT INTO ステートメント
SELECT INTO ステートメントを使って、書式付きデータをファイルにエクスポートできます。
SQL クエリを使ったデータのエクスポート
次のクエリは、comma-separated values(CSV)ファイルフォーマットにデータをエクスポートします。
C#
String connectionString = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:33333;";
using (SmartsheetConnection connection = new SmartsheetConnection(connectionString)) {
SmartsheetCommand cmd = new SmartsheetCommand("SELECT Id, Name INTO [csv://Sheet_Test_Sheet.txt] FROM [Sheet_Test_Sheet] WHERE Favorite = 'True' ", connection);
int rowsAffected = cmd.ExecuteNonQuery();
}
VB.NET
Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:33333;"
Using connection As New SmartsheetConnection(connectionString)
Dim cmd As New SmartsheetCommand("SELECT Id, Name INTO [csv://Sheet_Test_Sheet.txt] FROM [Sheet_Test_Sheet] WHERE Favorite = 'True'", connection)
Dim rowsAffected As Integer = cmd.ExecuteNonQuery()
End Using
URI で他のファイルフォーマットを指定できます。以下の例は、tab-separated values(TSV)にエクスポートします。
C#
String connectionString = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:33333;";
using (SmartsheetConnection connection = new SmartsheetConnection(connectionString)) {
SmartsheetCommand cmd = new SmartsheetCommand("SELECT * INTO [Sheet_Test_Sheet] IN [csv://filename=c:/Sheet_Test_Sheet.csv;delimiter=tab] FROM [Sheet_Test_Sheet] WHERE Favorite = 'True'", connection);
int rowsAffected = cmd.ExecuteNonQuery();
}
VB.NET
Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:33333;"
Using connection As New SmartsheetConnection(connectionString)
Dim cmd As New SmartsheetCommand("SELECT * INTO [Sheet_Test_Sheet] IN [csv://filename=c:/Sheet_Test_Sheet.csv;delimiter=tab] FROM [Sheet_Test_Sheet] WHERE Favorite = 'True'", connection)
Dim rowsAffected As Integer = cmd.ExecuteNonQuery()
End Using