Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Führen Sie eine SQL INSERT-Anweisung aus, um eine Verbindung zu Cloud SQL for PostgreSQL mit dem Paket ADO.NET System.Data.Common zu öffnen und zu schließen.
Weitere Informationen
Eine ausführliche Dokumentation, die dieses Codebeispiel enthält, finden Sie hier:
insertTimestamp=DateTime.UtcNow;try{using(varconnection=newNpgsqlConnection(_connectionString.ConnectionString)){connection.OpenWithRetry();using(varinsertVoteCommand=connection.CreateCommand()){insertVoteCommand.CommandText=@"INSERT INTO votes (candidate, time_cast) VALUES (@candidate, @time_cast)";varcandidate=insertVoteCommand.CreateParameter();candidate.ParameterName="@candidate";candidate.DbType=DbType.String;candidate.Value=team;insertVoteCommand.Parameters.Add(candidate);vartimeCast=insertVoteCommand.CreateParameter();timeCast.ParameterName="@time_cast";timeCast.DbType=DbType.DateTime;timeCast.Value=insertTimestamp;insertVoteCommand.Parameters.Add(timeCast);awaitinsertVoteCommand.ExecuteNonQueryAsync();}}returnContent($"Vote successfully cast for '{team}' at time {insertTimestamp}!");}catch(Exceptionex){// If something goes wrong, handle the error in this// section. This might involve retrying or adjusting// parameters depending on the situation.returnStatusCode((int)HttpStatusCode.InternalServerError,ex);}
Nächste Schritte
Informationen zum Suchen und Filtern von Codebeispielen für andere Google Cloud-Produkte finden Sie im Google Cloud-Beispielbrowser.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],[],[],[]]