Google Cloud SQL is web service that allows you to create, configure, and use relational databases with your App Engine applications. It is a fully-managed MySQL service that maintains, manages, and administers your databases, allowing you to focus on your applications and services.

learn more… | top users | synonyms

1
vote
1answer
28 views

Using a Cloud SQL back end in a multi-user Apps Script

I (user1) have an Apps Script that connects to a Cloud SQL instance, like so: var conn = Jdbc.getCloudSqlConnection("jdbc:google:rdbms://blah:instance1/foo") And it works like a charm. I am trying ...
1
vote
3answers
78 views

Google App Engine PHP and Cloud SQL

I'm attempting to connect to my Google Cloud SQL from my local development Google App PHP server. But PHP doesn't see function mysql_connect, it doesn't see class mysqli and it raises exception could ...
0
votes
1answer
29 views

Google Cloud SQL rejecting my query

I've been running a Django application on my local machine and am trying to push it to appengine. One of the queries I was making before that never caused any trouble was: ALTER TABLE Records ADD ...
0
votes
1answer
39 views

Cloud sql with Mobile Backend Starter

After reading about Mobile Backend Starter it talks about using it with App engine Datastore but not Google cloud sql. When setting up your new project with Mobile Backend Starter can you specify that ...
0
votes
2answers
54 views

Can I connect to Google Cloud SQL from Google Compute Engine?

I am building a Django site on Google Compute Engine, and I want to install my database in SQL Cloud. It is possible? What is the most common way to do this? Installing MySQL on virtual machine or ...
0
votes
0answers
32 views

Cloud SQL only working locally

So I've been trying to get Cloud SQL working with an app engine backend. I'm using Google Endpoints to send back JSON. It works just fine running locally on my machine, I can hit the service, the ...
2
votes
1answer
33 views

Google App Engine/ Google Cloud SQL - Detect if it is MySQL or Google Cloud SQL

I have this method to create my connection: DriverManager.registerDriver(new AppEngineDriver()); connection = DriverManager.getConnection("jdbc:google:rdbms://" + instanceName + "/myDB"); I need to ...
-2
votes
1answer
44 views

How to get the data from the database(GOOGLE SQL CLOUD) through GAE?

I'm working with google app engine and I got a problem with the database. The application is running smoothly immediately after deploying the project into the google app engine. But after sometime ...
1
vote
1answer
86 views

java.sql.SQLException: Duplicate entry 'sd' for key 'PRIMARY'

I am trying to persist this role object using JPA in Google cloud SQL . But i am not sure how to catch primary key violation exception and show appropriate message to user . Need help in formating ...
0
votes
2answers
62 views

Is there a way to export data stored in a table of Cloud SQL instance?

Please suggest if there is a way to export the complete data present in the table of cloud SQL instance. I have tried following options but neither of the worked. Export from SQuirrel Client: Since ...
0
votes
1answer
46 views

Google Cloud Sql usage in external application

Is there a way to use Google Cloud Sql from external application that can't use JDBC, for example from node.js?
0
votes
0answers
25 views

appengine, limit connection to cloudsql

I found out use django + cloudsql in a heavily used google app engine app (used 10-30 instances all the time) may cause some problems. The application itself is based on webapp2, I only used Django ...
0
votes
0answers
98 views

JPA setMaxResults not working - query returns ALL rows

I've been banging my head against a wall for the last 4 hours on this one, trying varying permutations, updating libraries, etc - to no avail. I am calling my MySQL DB, where a table 'links' has ...
0
votes
0answers
54 views

DataNucleus JDO on MySQL fails with FK violation on 1:1 relations

I have issues persisting a simple 2 classes on DataNucleus 3.1.3 on MySQL, where DataNucleus seems to create invalid foreign-keys, ending up in a "foreign key constraint fails" -exception from ...
1
vote
1answer
64 views

Issue on Google App Engine GAE: Unable to lock table schema_version

We are on GAE with Cloud SQL. Everything works great on the local dev server. We are using the AppEngineDriver with a static connection string. The connection is good in the production environment as ...
0
votes
3answers
118 views

Using of Jdbc.getConnection() statement in google apps script

I have several functions in my script file, After publishing doGet function all other functions are called using the serverHandlers, And I have used the statements like below, My doubt is can we use ...
1
vote
1answer
89 views

Why does Persistence.createEntityManagerFactory(“transactions-optional”) errors when appengine is deployed

I have created an appengine which runs fine and returns records from my Google cloud SQL db in debug mode. When I deploy the appegine and run the endpoint it errors. And the error I get in the ...
0
votes
3answers
44 views

Getting ``DeadlineExceededError'' using GAE when doing many (~10K) DB updates

I am using Django 1.4 on GAE + Google Cloud SQL - my code works perfectly fine (on dev with local sqlite3 db for Django) but chocks with Server Error (500) when I try to "refresh" DB. This involves ...
0
votes
1answer
156 views

Using SQLAlchemy on App Engine development server

I have seen some questions about using SQLAlchemy on App Engine to connect to Google Cloud SQL. But I'm not sure if it is possible to develop using a local MySQL database and the existing SQLAlchemy ...
0
votes
0answers
29 views

Change Global isolation level in google clould SQL

I need to change the isolation level in the google cloud SQL , I searched a lot , but could not find it any where When i did SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED It gets changed , ...
0
votes
1answer
81 views

SQLAlchemy with Google Cloud SQL connect to development server

I am using SQLAlchemy 0.8 with Google App Engine and Cloud SQL. I would like to do a full integration test locally before deploying, but I cannot get SQLAlchemy to connect to my development MySQL ...
0
votes
1answer
77 views

What needs to be installed along with google appengine for sqlalchemy / google cloud sql api?

I tried the recommendations in Can SQLAlchemy be used with Google Cloud SQL? to bring up an external connection to google cloud sql using sqlalchemy. To allow visibility of google appengine packages ...
0
votes
0answers
70 views

Google App Engine app Connect to Google Cloud SQL locally byt not when deployed

Strange situation that I need some help debugging. I'm new to App Engine. I have an application that works within Eclipse on my local machine. It goes to a table in my Google Cloud SQL instance and ...
2
votes
0answers
83 views

Unable to access Google Cloud SQL instance in dev_appserver with Django

I recently updated my GAE SDK and soon after the update, it has started acting up. I am using Google Cloud SQL in backend with Django 1.4.3. On my local dev server, it gives the following error : ...
0
votes
1answer
64 views

SQL statements in onOpen trigger in Apps Script not working

I have written a logic using Google Apps Script which will verify the logged in users email id with the one present in the database.If the email is present in database, populate the logged in user's ...
0
votes
0answers
52 views

Migrate from GAE Datastore JDO to another database

I'm a little bit dissapointed with GAE Datastore after some years and I'm trying to move my app to another database system. I tried to change jdo configuration to use Cloud SQL instead of datastore, ...
0
votes
1answer
148 views

using google app engine with JPA and cloud sql not returning any records using endpoints

I have an Android project and an app engine connected project. I am using the following: JPA v2, App Engine 1.7.6, Java 1.7 compiler, Eclipse 4.2 Juno, EclipseLink 2.4.x I am using Cloud sql db. I am ...
0
votes
2answers
158 views

GAE google cloud sql JPA local mysql with empty results

I am trying to get a Development Google App Engine app working with JPA, Google Cloud SQL, and a local MySQL database. I am using the GAE eclipse plugin. I have signed up for a Google cloud SQL ...
1
vote
0answers
124 views

How to manages/ store images on web server appengine via android app?

I am working on android application that requires to register the user with some details and image associted with each user. I am using Google Appengine with Google Cloud SQL to make it possible. I am ...
0
votes
0answers
80 views

Problems getting Django to authenticate to Google Cloud SQL

I'm trying to set up a Django site on Google App Engine and Cloud SQL, as described in their documentation.. I've created the Cloud SQL instance, and the database within it. I got an oauth token, but ...
0
votes
0answers
91 views

Google app engine error “Could not change permissions on the driver file” in eclipse

I am just getting the hang of using GAE with Android client app. I created the app engine application by using the generate a backend option on my existing Android client app. I have used JPA in the ...
0
votes
1answer
132 views

Where is class definition for org/datanucleus/store/mapped/scostore/JoinSetStore

I am trying to run Data Nucleus+JDO+google cloud sql. However I get a class not found for org/datanucleus/store/mapped/scostore/JoinSetStore. What Jar contains that? ...
0
votes
1answer
168 views

Unable to integrate Cloud SQL with the appengine connected android project?

I've an appengine connected android project with GCM working. Now, I want to connect Mysql instance, on my localhost, to the appengine application. I've followed these instructions, but in vain. The ...
0
votes
1answer
115 views

Example for Google Endpoint with Hibernate over Cloud SQL

Does Google Endpoints work with Hibernate over Cloud SQL? Can some post a short code example for it? I tried to do so and encountered in general errors while generating a client library Language ...
1
vote
0answers
41 views

using entity classes to access google sql

I have a android app with a google engine backend. In order for the android app to communicate with the google app engine app, i need entity classes, with which I would generate endpoint classes. ...
0
votes
0answers
107 views

Accessing google sql database with external app in android

So I realize you cannot directly connect an app to the database directly. So what I did was create a GAE (google apps engine) backend with the external app which will access the database. External ...
0
votes
1answer
63 views

Enablling billing option in Google Cloud SQL service, stuck on payment method

While using Google Cloud SQL, it is mandatory to enable Billing option which required to fill payment details. There is only one payment method Google providing is Credit Card option (having 4 issuers ...
0
votes
0answers
50 views

set Project level access automatically for Cloud SQL instance

I have created a Google Spreadsheet which interacts with Cloud SQL instance using apps script.I have list of users who will interact with database. This list of user can be dynamic in nature (same for ...
0
votes
1answer
51 views

Design Pattern To Implement Bit Data/Operator In NDB

I realize that NDB / Google Datastore does not support bit data type and supporting operators. But does anyone have any suggestions a workaround. My data is a tree of categories and the user can ...
0
votes
2answers
151 views

Exporting data from Cloud SQL to excel using apps script

Is there a way to export cloud SQL data to excel sheet without copying it to Google Spreadsheet using Google Apps Script. Since there is limitation of Google Spreadsheet of 4,00,000 cells, I am ...
0
votes
1answer
124 views

The request to API call datastore_v3.Put() was too large

I am using google cloud sql with appengine. I am getting com.google.apphosting.api.ApiProxy$RequestTooLargeException: The request to API call datastore_v3.Put() was too large. despite I am not using ...
0
votes
1answer
136 views

InterfaceError unknown type <class 'decimal.Decimal'> for arg 10

I'm trying to fetch some data from my database., this works perfect on my local machine. But when deployed on Google App Engine it gives me an error InterfaceError at ...
0
votes
1answer
97 views

Django + GAE + Google Cloud SQL authentication issue in Windows

I've followed all steps required to configure Django with GAE + Google Cloud SQL (on Windows 7) but I am unable to authenticate (OAuth2) and run syncdb remotely. When I run manage.py syncdb the ...
0
votes
0answers
48 views

How can I get Cloud-SQL Connectivity by py code?

Need help for Cloud-SQL Connectivity by py code. Tutorial has been given on the following link. After creating instance for domain, when I'm running _INSTANCE_NAME variable got variable undefined ...
1
vote
1answer
97 views

Sending multiple mysql instructions through a jdbc connection in Google Script

I'd like to send several queries to the Google Cloud SQL database from Google Apps Script in one row. For example : insert into table_name (field_name) values ("prout"); select last_insert_id() but ...
1
vote
2answers
124 views

Encountered server error when trying to parse date

I have coded logic where in I am importing data from CSV to Google Spreadsheet. As a next step I am trying to push the copied data to Cloud SQL instance using JDBC service. I have one column which is ...
0
votes
0answers
151 views

Google cloud sql + JDO + Google App engin

May i know Google app engine JDO would work with Google cloud SQL?. If it work, please let me the way to do. I have tried the following jdoconfig file. I have added datanucleus-rdbms-1.1.5.jar in ...
1
vote
0answers
152 views

Connect Google Drive to Could SQL

I am looking to try and combine Google's Cloud SQL service with google drive. Essentially I want to use Google forms for the user to easily input data, and then have that data feed into the Cloud SQL ...
0
votes
2answers
447 views

ImportError: No module named **** Error in google app engine

I am developing my application in google app engine now i am using Google Cloud SQL. It runs at localhost perfectly,, But when i am deploying my application to server it gives me following error. ...
0
votes
2answers
271 views

Unexpected exception upon serializing continuation Google Apps Script

I recently started getting the error "Unexpected exception upon serializing continuation" on a spreadsheet Google Apps Script when trying to debug. The error seem to start after I created a ...

1 2 3 4