- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在尝试将字符串插入 SQL Server 表时收到 SQL RequestError。字符串是 com.redacted.redacted.redacted
。我认为字符串中的句点发出了某种危险信号,表明它是对某个对象的某些属性的引用,或者类似的东西。我正在为请求使用 mssql Node 模块。
let myObj = {
Date: '2015-06-22',
PackageName: 'com.redacted.redacted.redacted'
}
let date = myObj['Date']
let pName = myObj['PackageName']
request.query('insert into myTable ([DATE],[PackageName]) values (' + date + ',' + pName + '))
我没有在网上找到任何关于试图避免使用点符号的信息,但我发现了一些相反的东西,试图进入符号。我也看了,但没有 RegExp 关键字来将句点保留为句点。
确切的错误:
REQ ERROR
{ [RequestError: The multi-part identifier "com.redacted.redacted.redacted" could not be bound.]
name: 'RequestError',
message: 'The multi-part identifier "com.redacted.redacted.redacted" could not be bound.',
code: 'EREQUEST',
number: 4104,
lineNumber: 1,
state: 1,
class: 16,
serverName: 'REDACTED',
procName: '' }
最佳答案
能不能用双引号把sql包起来
request.query("insert into myTable ([DATE],[PackageName]) values ('" + date + "','" + pName + "')")
为了安全起见,您可能希望将 pName 中的任何单引号替换为两个单引号
关于javascript - 如何避免 SQL RequestError : "The multi-part identifier ... could not be bound"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38016449/
我使用elasticsearch python api来创建映射,但出现了一些错误: es = Elasticsearch("localhost:9200") request_body = {
根据 http://docs.angularjs.org/api/ng.$http拦截器有以下方法: request: function(config) { //we could manipula
请帮助我解决elasticsearch的问题。 安装了https://github.com/nyaadevs/nyaa软件包后,使用elasticsearch的搜索不起作用。 config.yml是为
我想在elasticsearch中提取数据 我的函数是这样的: ##Using regex to get the image name. #it is inefficient to fetch the
我在 elasticsearch 中索引了一 strip 有特定时间戳的记录。我正在尝试使用以下代码(在 python 中)更新记录: from elasticsearch import Elasti
当我尝试使用ElasticSearch查询一个索引而不查询另一个索引时,我不断收到此错误: elasticsearch.exceptions.RequestError: RequestError(40
我正在尝试将django-haystack与djangorestframework和elasticsearch一起使用,并遵循了here教程 我在虚拟环境中安装了以下软件包 djangorestfra
我正在使用 Elasticsearch 5.1.1。在执行嵌套查询时,它返回 400 错误 我的文档看起来像这样 { "_index" : "test", "_type" : "test_five",
我有一个 Windows Electron 应用程序抛出以下错误:RequestError: Error: getaddrinfo ENOTFOUND thedomain.com 我正在为我的请求使用
我一直在尝试在 Rails 应用程序中实现以下功能,但它似乎什么也没做: rescue Twilio::REST::RequestError => e puts e.message 我注意到它
我遇到以下错误,我想获得发布在 YouTube 视频上的所有评论。 所以基本上我正在传递视频 ID,我想获得与该视频相关的所有评论 Google.Apis.Requests.RequestError
我使用 $http 拦截器来捕获 ajax 提交后的所有事件。由于某种原因,我无法抛出 requestError。我已经设置了一个测试应用来尝试调用 requestError,但到目前为止我只能获得多
嗨,我尝试通过 promise 请求编写一些下载功能,但是如果我有超时,我无法处理这个错误,我尝试了很多示例,但仍然有这个错误 Unhandled rejection RequestError: Er
我正在尝试使用 twilio-ruby gem,但遇到了 Twilio::REST::RequestError。这是什么意思?这是我正在使用的代码: Controller Class UserCont
我正在尝试使用 tensorflow_hub 通过 Elasticsearch 进行语义搜索,但我得到了 RequestError: RequestError(400, 'search_phase_e
从昨天开始,我们就无法从 Analytics API 获取 AdSense 相关指标(ga:adsensePageImpressions、ga:adsenseAdsViewed、ga:adsenseC
尝试查询符合此条件的事件文档时,出现解析异常,并且不确定是什么原因引起的。这是在我的自定义get_queryset方法中发生的。在文档 View 集中的get_query中,出现错误。 def get
我当时在一个有3个模型的Django项目中工作。学生,大学,类(class)。我设置了模型,填充了数据库,并尝试使用Elastic Search进行搜索。 因此,我安装了Elastic Search
我在尝试将字符串插入 SQL Server 表时收到 SQL RequestError。字符串是 com.redacted.redacted.redacted。我认为字符串中的句点发出了某种危险信号,
创建索引: def create_index(index_name): es=create_elastic_search_object() entry_mapping = {
我是一名优秀的程序员,十分优秀!