码迷,mamicode.com
首页 >  
搜索关键字:error while commiting the transaction    ( 59852个结果
01Spring-01jdbc 未使用spring代码编写
pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ...
分类:数据库   时间:2021-06-16 18:10:14    阅读次数:0
ORA-12514 TNS:listener does not currently know of service requested in connect descriptor
In my circumstances the error was due to the fact the listener did not have the db's service registered. I solved this by registering the services. Ex ...
分类:其他好文   时间:2021-06-16 17:56:58    阅读次数:0
1. python中常用的内置函数
1. vars vars(objcet) 函数返回对象object的属性和属性值的字典对象 def test(a, b): # {'a': 10, 'b': 20} 常用打印函数的所有入参 print(vars()) return a + b if __name__ == '__main__': t ...
分类:编程语言   时间:2021-06-16 17:51:29    阅读次数:0
Java零基础学习(ArrayList Vector LinkedList 泛型 可变参数 增强for循环)
Java零基础学习(ArrayList Vector LinkedList 泛型 可变参数 增强for循环) ArrayList存储字符串并遍历 1.将集合转化为数组遍历 public class MyTest { public static void main(String[] args) { A ...
分类:编程语言   时间:2021-06-16 17:34:44    阅读次数:0
Python优化小技巧
代码优化原则 ? 本文会介绍不少的 Python 代码加速运行的技巧。在深入代码优化细节之前,需要了解一些代码优化基本原则。 ? 第一个基本原则是不要过早优化。很多人一开始写代码就奔着性能优化的目标,“让正确的程序更快要比让快速的程序正确容易得多”。因此,优化的前提是代码能正常工作。过早地进行优化可 ...
分类:编程语言   时间:2021-06-15 18:46:34    阅读次数:0
Node 中的 Process 理解,有哪些常用方法?
一、是什么 process 对象是一个全局变量,提供了有关当前 Node.js进程的信息并对其进行控制,作为一个全局变量 我们都知道,进程计算机系统进行资源分配和调度的基本单位,是操作系统结构的基础,是线程的容器 当我们启动一个js文件,实际就是开启了一个服务进程,每个进程都拥有自己的独立空间地址、 ...
分类:其他好文   时间:2021-06-15 18:45:21    阅读次数:0
LeetCode——852. 山脉数组的峰顶索引(Java)
题目描述 题干: 符合下列属性的数组 arr 称为 山脉数组 : arr.length >= 3 存在 i(0 < i < arr.length - 1)使得: arr[0] < arr[1] < ... arr[i-1] < arr[i] arr[i] > arr[i+1] > ... > arr ...
分类:编程语言   时间:2021-06-15 18:16:39    阅读次数:0
[LeetCode] 278. 第一个错误的版本
二分寻找边界 public class Solution extends VersionControl { public int firstBadVersion(int n) { int i = 1; int j = n; while (i<=j) { int mid = i + ((j-i)>>1 ...
分类:其他好文   时间:2021-06-15 18:12:30    阅读次数:0
代码。登录,充值,购买。
d = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = i[1]while T ...
分类:其他好文   时间:2021-06-15 17:52:42    阅读次数:0
Redis--狂神说Redis基础汇总(完结)
Redis--狂神说Redis基础汇总(完结) 2021.6.12-2021.6.14:端午学学玩玩弄完了Redis基础的汇总,越学越觉得自己知识量的匮乏。 参考链接:狂神说Java--Redis汇总:https://www.bilibili.com/video/BV1S54y1R7SB?p=1 R ...
分类:其他好文   时间:2021-06-15 17:38:10    阅读次数:0
59852条   上一页 1 ... 10 11 12 13 14 ... 5986 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!