摘要:
通常需要添加以下引用: 定义连接字符串: 用 CUBRIDConnectionStringBuilder生成连接字符串 这个我比较喜欢: 获取用户表: 获取所有用户: 获取所有视图: 阅读全文
摘要:
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 Er 阅读全文
摘要:
using CUBRID.Data.CUBRIDClient; namespace ParameterExample { class Program { static void Main(string[] args) { CUBRIDConnectionStringBuilder sb = new CUBRIDConne... 阅读全文
摘要:
conn.BeginTransaction(); string sql = "create table t(idx integer)"; using (CUBRIDCommand command = new CUBRIDCommand(sql, conn)) { command.ExecuteNonQuery(); } conn.Rollback(); conn.Beg... 阅读全文
摘要:
还是看例子 会net都会看懂 不解释 阅读全文
摘要:
语法 CREATE {TABLE | CLASS} <table_name> [( <column_definition> [,<table_constraint>]... )] [REPLACE] AS <select_statement> 如下 CREATE TABLE a_tbl( id IN 阅读全文
摘要:
CREATE {TABLE | CLASS} <new_table_name> LIKE <old_table_name> 如下 CREATE TABLE a_tbl( id INT NOT NULL DEFAULT 0 PRIMARY KEY, phone VARCHAR(10)); INSERT 阅读全文
摘要:
网站的中文语言文件部分 http://files.cnblogs.com/files/wang2650/Messages.7z 阅读全文
摘要:
一下命令在csql下执行. insert_commands.sql为sql脚本文件 ;CL ;READ insert_commands.sql ;RU 第一行的cl 清空命令缓存,等同clear第二行 读取脚本文件第三行 执行欢迎转载 ,转载时请保留作者信息。本文版权归本人所有,如有任何问题,请与我 阅读全文
摘要:
范围比较 字符串被转为double SELECT i FROM t WHERE i <= all {'11','12'}; i 1 2 3 4 字符串转为日期或时间 SELECT s FROM t2; s '01/01/2000' '01/01/1999' '01/01/1998' SELECT s 阅读全文