Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the driver beyond simple SELECT/INSERT/UPDATE/DELETE operations with Stripe.
Stored procedures accept a list of parameters, perform their intended function, and then return, if applicable, any relevant response data from Stripe, along with an indication of whether the procedure succeeded or failed.
CData JDBC Driver for Stripe Stored Procedures
Name | Description |
AttachPaymentMethodToCustomer | Attaches a PaymentMethod object to a Customer. It is not applicable for future payments. |
DetachPaymentMethodFromCustomer | Detaches a PaymentMethod object from a Customer. After a PaymentMethod is detached, it can no longer be used for a payment or re-attached to a Customer. |
GetOAuthAccessToken | Gets the OAuth access token from Stripe. |
GetOAuthAuthorizationURL | Gets the Stripe authorization URL. Access the URL returned in the output in an Internet browser. This requests the access token that can be used as part of the connection string to Stripe. |
RefreshOAuthAccessToken | Refreshes the OAuth access token used for authentication with various Stripe services. |