vb.net 数据库相关
文章平均质量分 57
Montaque
这个作者很懒,什么都没留下…
展开
-
vb.net 存取数据库中的图片
以MS自带的数据库Northwnd为例,其中有个表是Categories,有四个四段,其中有一个是Image类型的Picture字段.我们首先添加一张bmp图片到最后一行的Picture中,然后在读出来显示到Image控件中. 添加一个SqlDataAdapter1,用向导设置联接数据库为Northwnd,SQL语句为SELECT [Category ID], [C原创 2002-09-06 09:23:00 · 3531 阅读 · 0 评论 -
Oracle 数据库中的 empty string 处理
跟 微软的数据库产品不一样, Oralce 把 空的string 自动替换为 Null所以下面的代码你可能考虑不一样的结果.create table suppliers( supplier_idnumber,supplier_name varchar2(100));Next, well insert two records into th原创 2004-08-30 16:37:00 · 1972 阅读 · 1 评论 -
ADO.NET 系列 quiz 2 关于分布式事务。
问题:关于分布式事务的例子:数据库A 和数据库B 上各有一个bank 表 ( 实际情况下A 和 B 分别在不同的机器上,不同类型的数据库(支持dtc))表结构如下BankAccount, AmountA 数据库中的记录:A 1000B 数据库中的数据B 1000为了测试方便,没有用 COM+,而是直接在 web service 中测试。代码如下: _ Public Functio原创 2004-09-22 14:50:00 · 2488 阅读 · 12 评论 -
DAO RDO ADO ADO.NET
ADO isnt automatically code-compatible with your existing data access applications. While ADO encapsulates the functionality of DAO and RDO, you must convert many of the language elements over to ADO原创 2004-08-25 11:08:00 · 1478 阅读 · 0 评论 -
Visual Studio Team System (VSTS) CTP 可以下载了
The Visual Studio Team System (VSTS) CTP build is now up on the MSDN Subscriber downloads site. There are three bits that comprise a Team System installation · The Database tier (SQL原创 2004-09-06 12:15:00 · 2036 阅读 · 1 评论 -
获取数据库表结构
DataSet ds=new DataSet();System.Data.SqlClient.SqlConnection cnn=new System.Data.SqlClient.SqlConnection("server=(local);database=northwind;trusted_connection=yes") ;cnn.Open();System.Data.SqlClie原创 2004-09-06 16:44:00 · 1671 阅读 · 0 评论 -
控制数据库的并发
各位:控制数据库的并发冲突一般有三种方式:悲观并发 Pessimistic 锁乐观 Optimistic最后更新有效 Last-Win由于ADO.NET 是离线的应用,一般采用第二种和第三种具体的信息,请大家参考 msdn 2004 年9月份的一片文章http://msdn.microsoft.com/msdnmag/issues/04/09/DataPoints/原创 2004-09-06 11:32:00 · 1772 阅读 · 0 评论 -
循环创建 SQL Server 的列.
david==》在哪個城市都呆的不爽!!!討厭武漢 问到了这个问题, 我简单的写了一个例子.declare @para intset @para=1declare @k varchar(20),@sql varchar(50)while @parabeginset @k=p+ convert(varchar,@para)print @kset @sql=alter table test原创 2004-08-18 10:31:00 · 1708 阅读 · 2 评论 -
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
今天也碰到了这个问题, google 了一下,没想到 ghj 1976已经写过blog 了.呵呵,容易犯的错误.http://blog.joycode.com/ghj/archive/2004/06/15/24612.aspx转贴一下:如果你使用的数据库连接类是 the Data Access Application Blocks "SqlHelper" 或者 SqlClient Cl原创 2004-08-10 13:41:00 · 6071 阅读 · 3 评论 -
Working with MS Access Stored Procedures in VB.NET Montaque(转贴)
Working with MS Access Stored Procedures in VB.NET. Part 1 by David Wasserman, MCP 2/27/2002 Article source code: msaccess_sp.zipIntroductionIn the more recent releases of Microsoft Access, grea转载 2002-09-22 17:05:00 · 1782 阅读 · 0 评论 -
Oracle 和 MIcrosoft SQL 的不同
还是有很多的不同,转贴如下:http://www.bristle.com/Tips/SQL.htm#Oracle%20Tips Table of Contents:Oracle Tips SQL Tips SELECT * and more Materialized View PL/SQL Tips SQL Navigator Tips See Al原创 2004-08-30 16:49:00 · 2169 阅读 · 1 评论