ODBC Driver for Stripe

Build 22.0.8462

SELECT INTO Statements

You can use the SELECT INTO statement to export formatted data to a file.

Data Export with an SQL Query

The following query exports data into a file formatted in comma-separated values (CSV):

SELECT Discount, Email INTO [csv://Customers.txt] FROM [Customers] WHERE Delinquent = 'False'
You can specify other formats in the file URI. The possible delimiters are tab, semicolon, and comma with the default being a comma. The following example exports tab-separated values:
SELECT Discount, Email INTO [csv://Customers.txt;delimiter=tab] FROM [Customers] WHERE Delinquent = 'False'

C#

String connectionString = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;CallbackURL=http://localhost:33333;";

using (StripeConnection connection = new StripeConnection(connectionString)) {
  StripeCommand cmd = new StripeCommand("SELECT Discount, Email INTO [csv://Customers.txt] FROM [Customers] WHERE Delinquent = 'False' ", connection);
  int rowsAffected = cmd.ExecuteNonQuery();
} 

VB.NET

Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;CallbackURL=http://localhost:33333;" 

Using connection As New StripeConnection(connectionString)
  Dim cmd As New StripeCommand("SELECT Discount, Email INTO [csv://Customers.txt] FROM [Customers] WHERE Delinquent = 'False'", connection)
  Dim rowsAffected As Integer = cmd.ExecuteNonQuery()
End Using
You can specify other file formats in the URI. The following example exports tab-separated values:

C#

String connectionString = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;CallbackURL=http://localhost:33333;";

using (StripeConnection connection = new StripeConnection(connectionString)) {
  StripeCommand cmd = new StripeCommand("SELECT * INTO [Customers] IN [csv://filename=c:/Customers.csv;delimiter=tab] FROM [Customers] WHERE Delinquent = 'False'", connection);
  int rowsAffected = cmd.ExecuteNonQuery();
} 

VB.NET

Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;CallbackURL=http://localhost:33333;" 

Using connection As New StripeConnection(connectionString)
  Dim cmd As New StripeCommand("SELECT * INTO [Customers] IN [csv://filename=c:/Customers.csv;delimiter=tab] FROM [Customers] WHERE Delinquent = 'False'", connection)
  Dim rowsAffected As Integer = cmd.ExecuteNonQuery()
End Using

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462