DO.NET Error Code Number Error Code Error Message Note
0 ER_NO_ERROR "No Error"  
1 ER_NOT_OBJECT "Index's Column is not an object"  
2 ER_DBMS "Server Error - Check CUBRID Error Codes"  
3 ER_COMMUNICATION "Cannot communicate with the broker"  
4 ER_NO_MORE_DATA "Invalid dataReader position"  
5 ER_TYPE_CONVERSION "DataType conversion error"  
6 ER_BIND_INDEX "Missing or invalid position of the bind variable provided"  
7 ER_NOT_BIND "Attempt to execute the query when not all the parameters are binded"  
8 ER_WAS_NULL "Internal Error: NULL value encountered"  
9 ER_COLUMN_INDEX "Column index is out of range"  
10 ER_TRUNCATE "Data is truncated because receive buffer is too small"  
11 ER_SCHEMA_TYPE "Internal error: Illegal schema paramCUBRIDDataType"  
12 ER_FILE "File access failed"  
13 ER_CONNECTION "Cannot connect to a broker"  
14 ER_ISO_TYPE "Unknown transaction isolation level"  
15 ER_ILLEGAL_REQUEST "Internal error: The requested information is not available"  
16 ER_INVALID_ARGUMENT "The argument is invalid"  
17 ER_IS_CLOSED "Connection or Statement might be closed"  
18 ER_ILLEGAL_FLAG "Internal error: Invalid argument"  
19 ER_ILLEGAL_DATA_SIZE "Cannot communicate with the broker or received invalid packet"  
20 ER_NO_MORE_RESULT "No More Results"  
21 ER_OID_IS_NOT_INCLUDED "The ResultSet does not include the OID"  
22 ER_CMD_IS_NOT_INSERT "Command is not INSERT"  
23 ER_UNKNOWN "Other Error"  

CUBRID学习笔记 35 net驱动错误码和信息 cubrid教程示例的更多相关文章

  1. CUBRID学习笔记 32 对net的datatable的支持 cubrid教程

    在net的驱动中实现理一下的支持 DataTable data populate Built-in commands construct: INSERT , UPDATE, DELETE Column ...

  2. input子系统学习笔记六 按键驱动实例分析下【转】

    转自:http://blog.chinaunix.net/uid-20776117-id-3212095.html 本文接着input子系统学习笔记五 按键驱动实例分析上接续分析这个按键驱动实例! i ...

  3. ref:学习笔记 UpdateXml() MYSQL显错注入

    ref:https://www.cnblogs.com/MiWhite/p/6228491.html 学习笔记 UpdateXml() MYSQL显错注入 在学习之前,需要先了解 UpdateXml( ...

  4. 【整理】解决vue不相关组件之间的数据传递----vuex的学习笔记,解决报错this.$store.commit is not a function

    解决vue不相关组件之间的数据传递----vuex的学习笔记,解决报错this.$store.commit is not a function https://www.cnblogs.com/jaso ...

  5. python3.4学习笔记(十六) windows下面安装easy_install和pip教程

    python3.4学习笔记(十六) windows下面安装easy_install和pip教程 easy_install和pip都是用来下载安装Python一个公共资源库PyPI的相关资源包的 首先安 ...

  6. Hadoop源码学习笔记(2) ——进入main函数打印包信息

    Hadoop源码学习笔记(2) ——进入main函数打印包信息 找到了main函数,也建立了快速启动的方法,然后我们就进去看一看. 进入NameNode和DataNode的主函数后,发现形式差不多: ...

  7. CUBRID学习笔记 5 错误码

    服务器错误码 AS Error Code Number CAS Error Code Error Message Note -1000 CAS_ER_DBMS "CUBRID DBMS Er ...

  8. CUBRID学习笔记 45 REPLACE DELETE MERGE 教程

    c#,net,cubrid,教程,学习,笔记欢迎转载 ,转载时请保留作者信息.本文版权归本人所有,如有任何问题,请与我联系wang2650@sohu.com . 过错 ------ 官方文档是英文的, ...

  9. CUBRID学习笔记 41 sql语法之select

    cubrid的中sql查询语法 SELECT [ ] [{TO | INTO} ][FROM ] [WHERE ][GROUP BY {col_name | expr} [ASC | DESC], . ...

随机推荐

  1. java.lang.Runtime类总结 【转】

    转自:http://blog.chinaunix.net/uid-128922-id-289994.html  Runtime类封装了运行时的环境.每个 Java 应用程序都有一个 Runtime 类 ...

  2. java 调用grads 自动批量生成图片

    将 -lbcx 命令 后面的4个参数(gs文件名.参数1.参数2.参数3) 放在单引号里面就可以执行了.

  3. 使用System.arraycopy()实现数组之间的复制

    System提供了一个静态方法arraycopy(),我们可以使用它来实现数组之间的复制. 其函数原型是: public static void arraycopy(Object src, int s ...

  4. [HTML]JS添加表格

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  5. [c++][语言语法]stringstream iostream ifstream

    c++中ifstream一次读取整个文件 读取至char*的情况 std::ifstream t; int length; t.open("file.txt"); // open ...

  6. python 补充-decode和encode

    1. decode与encode转码 在Python3中默认编码就是uncode,encode转成Byte类型 在Python2中默认编码就是ascii window下默认编码是GBK decode( ...

  7. 20150618_Andriod _KSOAP2_多线程

    参考地址:http://blog.csdn.net/long704480904/article/details/8636734 webService:基于SOAP协议的远程调用标准,通过webServ ...

  8. 周赛-Integration of Polynomial 分类: 比赛 2015-08-02 08:40 10人阅读 评论(0) 收藏

    Integration of Polynomial Time Limit: 2000/1000MS (Java/Others) Memory Limit: 128000/64000KB (Java/O ...

  9. Ubuntu镜像使用帮助

    包括各个版本 http://mirrors.163.com/.help/ubuntu.html

  10. Python类的定义与使用

    #! /usr/bin/python # Filename:objvar.py class Person: '''Represents a person.''' population = 0 def ...