php mysql比较 [英] php mysql comparison

查看:71
本文介绍了php mysql比较的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,


如何将vb.net数据库编程与php-mysql组合相比更容易?

我无法理解vb如何.net工作与php-mysql相比

数据库访问。


有人能让我更轻松地理解它吗?


谢谢。


问候/

jerome

解决方案

"杰罗姆·谭 < JT ** @ i-manila.com.ph>写在

新闻:eH ************** @ TK2MSFTNGP12.phx.gbl:

你好,

如何将vb.net数据库编程比较简单地与php-mysql组合?我无法理解vb.net的工作方式与php-mysql数据库访问的比较。

任何人都可以让我更容易理解吗?



ASP.NET完全是OO,能够为初学者处理事件。


如果你是ASP,PHP,甚至是ColdFusion程序员...你可以有一些

习惯使用ASP.NET,但是一旦你这样做,你会想知道为什么其他的

网络语言不像ASP.NET: )


我不是指asp.net ...我的意思是vb.net与数据库集成,我得到了与数据集混淆的
....


问候/

杰罗姆


" Anon-E-Moose" <一个********** @ yahoo.com>在消息中写道

新闻:Xn ******************************** @ 140.99.99 。 130 ...

" Jerome Tan" < JT ** @ i-manila.com.ph>在
新闻中写道:eH ************** @ TK2MSFTNGP12.phx.gbl:

你好,
<如何将vb.net数据库编程比较简单地与php-mysql组合?我无法理解vb.net的工作方式与php-mysql数据库访问的比较。

任何人都可以让我更容易理解吗?



ASP.NET完全是OO,能够为初学者处理事件。

如果你是ASP,PHP,甚至是ColdFusion程序员...你可能有一些
习惯使用ASP.NET,但是一旦你这样做,你会想知道为什么其他网页语言不喜欢ASP.NET:)



你好Jerome,


除了Anon,


还有更多方法可以使用ASP.NET 。

当您使用数据集时,基本上是您唯一需要的东西。

数据集连接

数据适配器

数据集


数据集是一组数据表,它们保存使用select从数据库中选择的
表。

表有列和行,尽管有点令人困惑的是,当使用项目时会调用

列。


数据集是

ds.tables(0)。 rows(0).item(0)表示第一行中第一行的第一项。

第一个表。


使这个的典型代码是
dim sqlstring as string =" select * from mytable" )

dim da as new sqldataadapter(sqlstring,conn)

da.fill(ds)


现在你有你的数据在你的数据集中。


我希望这有帮助吗?


Cor

我不是指asp.net ...我的意思是vb.net与数据库集成,我对数据集感到困惑....

问候/
杰罗姆

Anon-E-Moose <一个********** @ yahoo.com>在消息中写道
新闻:Xn ******************************** @ 140.99.99。 130 ...

" Jerome Tan" < JT ** @ i-manila.com.ph>在
新闻中写道:eH ************** @ TK2MSFTNGP12.phx.gbl:

你好,
<如何将vb.net数据库编程比较简单地与php-mysql组合?我无法理解vb.net的工作方式与php-mysql数据库访问的比较。

任何人都可以让我更容易理解吗?



ASP.NET完全是OO,能够为初学者处理事件。

如果你是ASP,PHP,甚至是ColdFusion程序员...你可能有
有些习惯使用ASP.NET,但是一旦你这样做,你会想知道为什么
其他网络语言不喜欢ASP.NET:)




hi there,

how is vb.net database programming easier compare to php-mysql combination?
i''m having trouble understanding how vb.net work compare to php-mysql
database accessing.

can anyone shed me light for easier understanding?

thanks.

regards/
jerome

解决方案

"Jerome Tan" <jt**@i-manila.com.ph> wrote in
news:eH**************@TK2MSFTNGP12.phx.gbl:

hi there,

how is vb.net database programming easier compare to php-mysql
combination? i''m having trouble understanding how vb.net work compare
to php-mysql database accessing.

can anyone shed me light for easier understanding?


ASP.NET is fully OO, has the ability to handle events for starters.

If you''re an ASP, PHP, or even ColdFusion programmer... you may have some
getting to used to with ASP.NET, but once you do, you''ll wonder why other
web languages aren''t like ASP.NET : )


i don''t mean asp.net... i mean vb.net integrating with database, i get
confused with datasets....

Regards/
Jerome

"Anon-E-Moose" <an**********@yahoo.com> wrote in message
news:Xn********************************@140.99.99. 130...

"Jerome Tan" <jt**@i-manila.com.ph> wrote in
news:eH**************@TK2MSFTNGP12.phx.gbl:

hi there,

how is vb.net database programming easier compare to php-mysql
combination? i''m having trouble understanding how vb.net work compare
to php-mysql database accessing.

can anyone shed me light for easier understanding?


ASP.NET is fully OO, has the ability to handle events for starters.

If you''re an ASP, PHP, or even ColdFusion programmer... you may have some
getting to used to with ASP.NET, but once you do, you''ll wonder why other
web languages aren''t like ASP.NET : )



Hi Jerome,

In addition to Anon,

There are more ways to go with ASP.NET.
When you use the dataset is basicly the only thing you need.
A datasetconncection
A dataadapter
A dataset

A dataset is a collection of datatables, those holds tables which are
selected from the database using a select.

Tables have columns and rows, although a little bit confusing is that a
column is called when using an item.

A dataset is
ds.tables(0).rows(0).item(0) represent the first item in the first row in
the first table.

Typical code to make this is
Dim conn as new SQLconnection("connectionstring")
dim ds as new dataset
dim sqlstring as string = "select * from mytable")
dim da as new sqldataadapter(sqlstring, conn)
da.fill(ds)

You have now your data in your dataset.

I hope this helps?

Cor

i don''t mean asp.net... i mean vb.net integrating with database, i get
confused with datasets....

Regards/
Jerome

"Anon-E-Moose" <an**********@yahoo.com> wrote in message
news:Xn********************************@140.99.99. 130...

"Jerome Tan" <jt**@i-manila.com.ph> wrote in
news:eH**************@TK2MSFTNGP12.phx.gbl:

hi there,

how is vb.net database programming easier compare to php-mysql
combination? i''m having trouble understanding how vb.net work compare
to php-mysql database accessing.

can anyone shed me light for easier understanding?


ASP.NET is fully OO, has the ability to handle events for starters.

If you''re an ASP, PHP, or even ColdFusion programmer... you may have some getting to used to with ASP.NET, but once you do, you''ll wonder why other web languages aren''t like ASP.NET : )




这篇关于php mysql比较的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆