How to insert user input into Postgres Db using Go

WBOY
Release: 2024-02-12 08:33:08
forward
786 people have browsed it

如何使用 Go 将用户输入插入到 Postgres Db

php小编百草为你介绍如何使用Go将用户输入插入到Postgres数据库。在现代应用程序开发中,数据库是必不可少的一部分。Postgres是一个强大的开源关系型数据库管理系统,而Go是一种简洁高效的编程语言。将用户输入安全地插入到数据库中是一项重要的任务,本文将分享一种简单且安全的方法来实现这个目标。通过以下步骤,你将学会如何使用Go编写代码,将用户输入插入到Postgres数据库中,保护数据库免受SQL注入等安全风险的威胁。让我们开始吧!

问题内容

我正在尝试将字符串插入 postgres 数据库。而且我找不到正确的语法。这是代码:

func insertdb() { fmt.println("write your text") var input string fmt.scanln(&input) insertstmt := `insert into "todos"("do_info") values(**i need this**)` _, e := db.exec(insertstmt) checkerror(e) }
Copy after login

我想将input变量插入到我的 postgresql 数据库中。我应该如何在sql查询中的值后面写它?

values($1)
Copy after login

错误提示需要参数。

解决方法

您的代码会抱怨,因为查询有一个占位符$1并且它没有传递给exec函数的匹配参数。

您必须将输入传递给exec函数,以便它可以替换占位符。即:

fmt.Println("Write your text") var input string fmt.Scanln(&input) insertstmt := `insert into todos (do_info) values($1)` _, err = DB.Exec(insertstmt, input)
Copy after login

The above is the detailed content of How to insert user input into Postgres Db using Go. For more information, please follow other related articles on the PHP Chinese website!

source:stackoverflow.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!