DBIx::Class - 添加对“立即更新”支持的最佳方式;

发布于 2024-11-26 22:21:08 字数 332 浏览 1 评论 0原文

我想添加对“FOR UPDATE NOWAIT”的支持,以使用 ->select(..., { for => 'update_nowait' }) (对于 Oracle)选择语句。

我正在使用 DBIx::Class 0.08127

我可以修改 DBIx/Class/SQLMaker/Oracle.pm,但我想知道是否还有另一种(首选)方法,特别是如果它不涉及修改分发文件。

I want to add support for "FOR UPDATE NOWAIT" to select statements with ->select(..., { for => 'update_nowait' }) (for Oracle).

I'm using DBIx::Class 0.08127

I can modify DBIx/Class/SQLMaker/Oracle.pm, but I was wondering if there is another (preferred) way, especially if it doesn't involve modifying distribution files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寒尘 2024-12-03 22:21:08

修改 DBix::Class::SQLMaker::Oracle 是我的做法。

只需将修改后的模块包含在 @INC 中包含 DBIx 类发行版的目录之前的目录中即可。

对 DBIx/Class/SQLMaker/Oracle.pm 的修改是添加以下行:

my $for_syntax = {
  update => 'FOR UPDATE',
  shared => 'FOR SHARE',
  update_nowait => 'FOR UDPATE NOWAIT',
};

sub _lock_select {
  my ($self, $type) = @_;
  my $sql = $for_syntax->{$type} || croak "Unknown SELECT ... FOR type '$type' requested";
  return " $sql";
}

现在,如果 $for_syntax 是方法调用而不是词法,则无需重复 的定义_lock_select。如果您想提交补丁,需要考虑一些事情。

Modifying DBix::Class::SQLMaker::Oracle is the way I've done it.

Just include your modified module in a directory that occurs before the directory containing the DBIx Class distribution in @INC.

The modification to DBIx/Class/SQLMaker/Oracle.pm is to add these lines:

my $for_syntax = {
  update => 'FOR UPDATE',
  shared => 'FOR SHARE',
  update_nowait => 'FOR UDPATE NOWAIT',
};

sub _lock_select {
  my ($self, $type) = @_;
  my $sql = $for_syntax->{$type} || croak "Unknown SELECT ... FOR type '$type' requested";
  return " $sql";
}

Now if $for_syntax were a method call instead of a lexical you wouldn't have to repeat the definition of _lock_select. Something to consider if you want to submit a patch.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文