Google Apps Script API
    Preparing search index...

    The JDBC service allows scripts to connect to Google Cloud SQL, MySQL, Microsoft SQL Server, and Oracle databases. For more information, see the guide to JDBC.

    interface Jdbc {
        getCloudSqlConnection(url: string): JdbcConnection;
        getCloudSqlConnection(
            url: string,
            info: CloudSqlAdvancedParameters,
        ): JdbcConnection;
        getCloudSqlConnection(
            url: string,
            userName: string,
            password: string,
        ): JdbcConnection;
        getConnection(url: string): JdbcConnection;
        getConnection(
            url: string,
            info: ConnectionAdvancedParameters,
        ): JdbcConnection;
        getConnection(
            url: string,
            userName: string,
            password: string,
        ): JdbcConnection;
        newDate(milliseconds: number): JdbcDate;
        newTime(milliseconds: number): JdbcTime;
        newTimestamp(milliseconds: number): JdbcTimestamp;
        parseDate(date: string): JdbcDate;
        parseTime(time: string): JdbcTime;
        parseTimestamp(timestamp: string): JdbcTimestamp;
    }
    Index

    Methods