上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页
摘要: 修改 connection.Open(); 阅读全文
posted @ 2016-03-17 17:12 过错 阅读(237) 评论(0) 推荐(0)
摘要: using CUBRID.Data.CUBRIDClient; 阅读全文
posted @ 2016-03-17 17:09 过错 阅读(264) 评论(0) 推荐(0)
摘要: 首先要设置java_stored_procedure 为yes 该配置项在cubrid.conf中 书写并编译java代码 public class SpCubrid{ 下面看个完整的代码 调用 using System.Data; 删除 using CUBRID.Data.CUBRIDClient 阅读全文
posted @ 2016-03-17 17:00 过错 阅读(316) 评论(0) 推荐(0)
摘要: 上面的代码是正常的体位. 下面的是批量提交.主要使用了BatchExecuteNoQuery 这个很有情趣的工具 阅读全文
posted @ 2016-03-17 16:49 过错 阅读(226) 评论(0) 推荐(0)
摘要: 通常需要添加以下引用: 定义连接字符串: 用 CUBRIDConnectionStringBuilder生成连接字符串 这个我比较喜欢: 获取用户表: 获取所有用户: 获取所有视图: 阅读全文
posted @ 2016-03-17 16:44 过错 阅读(204) 评论(0) 推荐(0)
摘要: 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 阅读全文
posted @ 2016-03-17 16:38 过错 阅读(250) 评论(0) 推荐(0)
摘要: using CUBRID.Data.CUBRIDClient; namespace ParameterExample { class Program { static void Main(string[] args) { CUBRIDConnectionStringBuilder sb = new CUBRIDConne... 阅读全文
posted @ 2016-03-17 16:36 过错 阅读(234) 评论(0) 推荐(0)
摘要: conn.BeginTransaction(); string sql = "create table t(idx integer)"; using (CUBRIDCommand command = new CUBRIDCommand(sql, conn)) { command.ExecuteNonQuery(); } conn.Rollback(); conn.Beg... 阅读全文
posted @ 2016-03-17 16:32 过错 阅读(325) 评论(0) 推荐(0)
摘要: 还是看例子 会net都会看懂 不解释 阅读全文
posted @ 2016-03-17 16:14 过错 阅读(360) 评论(0) 推荐(0)
摘要: 语法 CREATE {TABLE | CLASS} <table_name> [( <column_definition> [,<table_constraint>]... )] [REPLACE] AS <select_statement> 如下 CREATE TABLE a_tbl( id IN 阅读全文
posted @ 2016-03-17 16:07 过错 阅读(224) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页