I have an application built in C# as front-end that runs in various locations. I plan to create the Database in Google CloudSQL and connect that application so that all users can access the Cloud database.
Please help me out with *connection string of C# Application with CloudSql*
.
Asked
Active
Viewed 614 times
0

Asim K T
- 16,864
- 10
- 77
- 99

Taha_Bahamed
- 1
- 2
-
Please tell what have you tried so far? – Asim K T Jul 23 '16 at 07:29
-
https://cloud.google.com/storage/docs/json_api/v1/json-api-dotnet-samples – Jul 23 '16 at 07:32
-
The below is how I use to connect my database from server to C# application................................Now I am lost............ dunno how to connect to cloudsql........help me pls. if you can send me a .zip file of c# project that have connectivity to cloudsql – Taha_Bahamed Jul 23 '16 at 08:24
-
public static void Connect() { CONDB = new OleDbConnection("Provider=ORAOLEDB.Oracle;Data Source=MBDATA;User Id=Scott;password=Tiger"); CONDB.Open(); } – Taha_Bahamed Jul 23 '16 at 08:27
-
Possible duplicate of [How to connect Google Cloud SQL with C#](https://stackoverflow.com/questions/52457709/how-to-connect-google-cloud-sql-with-c-sharp) – Bradley Grainger Sep 22 '18 at 21:10