对postgresql数据库进行非常简单的更新,但它无法正常工作.sql select语句很好,并返回正确的值.
当我进入更新时,它会抛出错误:
{"ERROR [0A000] ERROR: cross-database references are not implemented: "openerp.public.product_template"; Error while executing the query"}.
Run Code Online (Sandbox Code Playgroud)
我正在使用vb.net和postgresql 9.2.
我想要它做的就是更改名称字段以匹配描述中的内容.
log:
LOG 0 duration: 34.000 ms statement: SELECT * FROM product_template where import_date = '08/22/2013'
LOG 0 duration: 11.000 ms statement: select n.nspname, c.relname, a.attname, a.atttypid, t.typname, a.attnum, a.attlen, a.atttypmod, a.attnotnull, c.relhasrules, c.relkind, c.oid, d.adsrc from (((pg_catalog.pg_class c inner join pg_catalog.pg_namespace n on n.oid = c.relnamespace and c.oid = 20496) inner join pg_catalog.pg_attribute a on (not a.attisdropped) and a.attnum > …
Run Code Online (Sandbox Code Playgroud) 编写一个 vb 应用程序来执行一些跨平台文件操作,我能够在深入多个目录后使用 adb 并检索我想要的文件信息(在 adb shell 中我执行“cd storage”然后“cd extsdCard”, ETC)。一旦我达到 4 或 5 级深度,我只想向上一级目录...旧的 dos 会像“cd..”一样向上一级 - adb shell 中的等效项是什么?cd.. 什么也不做,cd 将我带到数据目录,然后我被卡住了,必须退出 shell 并重新开始。我真的觉得这里很愚蠢,因为我确信这很简单 - 所以对我宽容一点,已经很长时间没有使用 adb了......蒂亚!