现在我在用dataX传数据得时候,想给目标数据库只写得权限而不要读权限,有没有这种模式,不该代码能不能实现。
xesrikrc1#
对于数据库读写权限不应该是连接数据库用户名的限制条件吗?跟代码无关吧
rpppsulh2#
但是在写数据的时候,dataX会去读目标库,校验表结构 龙 notifications@github.com 于2020年11月23日周一 下午8:32写道:…
对于数据库读写权限不应该是连接数据库用户名的限制条件吗?跟代码无关吧 — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <#884 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ABKQAUSYCWQHLFODU3LFJYLSRJI7PANCNFSM4TUMSWUQ> .
hrysbysz3#
噢,对的,那你可以修改源码写入writer插件不查询,就只根据传输column以及table拼接insert语句;有column就是insert into table (c1, c2, c3) values (?,?,?);无column就是insert into table values (v1,v2,v3)
3条答案
按热度按时间xesrikrc1#
对于数据库读写权限不应该是连接数据库用户名的限制条件吗?跟代码无关吧
rpppsulh2#
但是在写数据的时候,dataX会去读目标库,校验表结构 龙 notifications@github.com 于2020年11月23日周一 下午8:32写道:…
对于数据库读写权限不应该是连接数据库用户名的限制条件吗?跟代码无关吧 — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <#884 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ABKQAUSYCWQHLFODU3LFJYLSRJI7PANCNFSM4TUMSWUQ> .
hrysbysz3#
噢,对的,那你可以修改源码写入writer插件不查询,就只根据传输column以及table拼接insert语句;有column就是insert into table (c1, c2, c3) values (?,?,?);无column就是insert into table values (v1,v2,v3)