English 中文(简体)
MySQL/SQLite/etc数据库之间的差异?
原标题:Difference between MySQL/SQLite/etc databases?

这是我第一次尝试与数据库合作,我也这样做。

I need to write a program that will use a database that I do not have access to yet. I know there is MySQL, SQLite, and a bunch of other SQL things, but I m not sure what the difference between them is. Do I need to know what kind of database it is before I can use it (i.e., is a MySQL .db file different from a SQLite .db file?), or is the file itself going to be the same and the difference is how it is accessed?

EDIT:我正在为可能很重要的安乐文片进行规划。 但是,我不会创建数据库,它将提供给我,我必须与之合作。

问题回答

你们可能希望通过建立MySQL数据库的思想辅导,以及一个全心全意的论坛,了解他们如何工作,以及你如何容易与他们互动。

用户的利用涉及适应人员,尽管需要编制表格,但用户的使用(用户名/密码/查阅表格的作用)。

Here s a straight-forward sqlite tutorial: http://zetcode.com/db/sqlite/ https://zetcode.com/php/mysqli/ http://zetcode.com/php/pdo/

Here s a staight-forward sql with C# tutorial: https://zetcode.com/csharp/mysql/

我记得,我第一次使用数据库。 我的建议是,首先与一个冰界一道,寻找各种辅导结果。

然后,根据您的申请要求和平台的限制,你可以确定什么地方可以ot。 但是,在不实际与数据库合作的情况下审查数据库之间的差别,就像在不食用鱼的情况下试图用ushi鱼。

http://www.un.org。

如果你重新建筑在安康普里,学习文化。

I highly recommend this tutorial to help you see SQLite used in an Android project: https://developer.android.com/training/data-storage/sqlite

关于数据摘要/数据查询,您应熟悉内容提供者和库尔斯(

Good Querying!

数据库摘要 法官是培养一位聪明的中间人的战略,这样,你就可以在不知情的情况下进行规划,而不知道哪一个数据库系统是你 under的。 数据库摘要在实际操作中是独一无二的,大部分人直接为特定数据库编制方案。 你可能发现,你在选择数据库方面获得的经验越多,你越是希望你更好地了解它的特殊微妙之处。 因此,答案太短,就够了。

如果您使用像模型-意见-主计长这样的软件结构模式,那么无论你使用何种数据库,它就能够使你进行许多方案规划。 举例来说,您可以安排你的主计长和你的主计长。 意 见

在决定数据库系统之前,对你可以做的工作加以限制,这是不方便的事实,即,良好的方案拟订做法要求有礼貌模型和皮肤 Controller的主计长。 因此,你选择数据库解决办法,是你实际方案拟订努力的一大部分。

If I didn t know what database would be used, I would start programming my View and then my Controller. If PHP is your language, you may find a CodeIgniter tutorial enlightening.

一篇关于“用于制造燃料”的文章

rel=“nofollow”>http://www.sqlite.org/timetouse.html

Summary:Checklist For Choosing The Right Database Engine

  1. Is the data separated from the application by a network? → choose client/server
  2. Many concurrent writers? → choose client/server
  3. Big data? → choose client/server
  4. Otherwise → choose SQLite!




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...