473,399 Members | 2,774 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Basic Database Questions

Ok im a newbie to VB, and am having some trouble reading msdn help / or how
it all links together. My books are either
missing a step / or assume everything is set up correctly.

I know about tables and keys but i just cant seem to find a "starting point"
in VB.net.

1. Where do I go create a db if i only installed vb.net ? / What do I use

2. Or is there a good tutorial somewhere of what to do. I have 3 books and
they all "assume" i have an mdb file
or something. - Stupid books. - I want to create my own tables / dataset

My basic goal is to create a form that creates a db file with multiple
tables and i have relations. Where I can add / deleete / ...
records into the database.

So i really need ot know what needs to be configured for vb.net so I can
create a db with tables and then once i create an
install for a new computer this will work as well.

--- May or may not be linked to question one.
3. What database connection do you use? Does the SQL server come with
vb.net or must it be purchased ?
Did I install something wrong and i dont have an SQL server - or i didnt
configure something?
Thank You

Miro


May 10 '06 #1
3 1443
Miro wrote:
Ok im a newbie to VB, and am having some trouble reading msdn help / or how
it all links together. My books are either
missing a step / or assume everything is set up correctly.

I know about tables and keys but i just cant seem to find a "starting point"
in VB.net.

1. Where do I go create a db if i only installed vb.net ? / What do I use

2. Or is there a good tutorial somewhere of what to do. I have 3 books and
they all "assume" i have an mdb file
or something. - Stupid books. - I want to create my own tables / dataset

My basic goal is to create a form that creates a db file with multiple
tables and i have relations. Where I can add / deleete / ...
records into the database.

So i really need ot know what needs to be configured for vb.net so I can
create a db with tables and then once i create an
install for a new computer this will work as well.

--- May or may not be linked to question one.
3. What database connection do you use? Does the SQL server come with
vb.net or must it be purchased ?
Did I install something wrong and i dont have an SQL server - or i didnt
configure something?
Thank You

Miro


Couple choices...

1. Create the database in memory using a dataset.
2. Use a microsoft access database.
3. Install MSDE, the free version of SQL server.

Chris
May 10 '06 #2
Miro,

We don't know what version you use from VB.Net which makes answering
difficult.

Because some of your questions I assume it is a 2003 version (although your
books are in my opinion about that or just revised ones).

To make a MDB file you can use this.
http://www.vb-tips.com/default.aspx?...1-d6dda3c888c8

For the rest try to use the website MSDN, although it is terrible to search
and find something on that is the information mostly excelent.

For your basic approach you can have a look at this as you have a 2005
version. Be aware that this is very generic and probably unusable in a real
situation. It gives however a nice starting view.

http://www.vb-tips.com/default.aspx?...2-b1ed16424252

SQL server for production has to be purchased, although there is a kind of
starters SQL server the SQL express, which is free.

http://msdn.microsoft.com/library/de...seoverview.asp

I hope this helps so far,

Cor

"Miro" <mi******@golden.net> schreef in bericht
news:eJ**************@TK2MSFTNGP05.phx.gbl...
Ok im a newbie to VB, and am having some trouble reading msdn help / or
how it all links together. My books are either
missing a step / or assume everything is set up correctly.

I know about tables and keys but i just cant seem to find a "starting
point" in VB.net.

1. Where do I go create a db if i only installed vb.net ? / What do I use

2. Or is there a good tutorial somewhere of what to do. I have 3 books
and they all "assume" i have an mdb file
or something. - Stupid books. - I want to create my own tables / dataset

My basic goal is to create a form that creates a db file with multiple
tables and i have relations. Where I can add / deleete / ...
records into the database.

So i really need ot know what needs to be configured for vb.net so I can
create a db with tables and then once i create an
install for a new computer this will work as well.

--- May or may not be linked to question one.
3. What database connection do you use? Does the SQL server come with
vb.net or must it be purchased ?
Did I install something wrong and i dont have an SQL server - or i didnt
configure something?
Thank You

Miro

May 10 '06 #3
I have 2003

I will look at the examples you gave me.

Thanks

Miro

"Cor Ligthert [MVP]" <no************@planet.nl> wrote in message
news:u3**************@TK2MSFTNGP04.phx.gbl...
Miro,

We don't know what version you use from VB.Net which makes answering
difficult.

Because some of your questions I assume it is a 2003 version (although
your books are in my opinion about that or just revised ones).

To make a MDB file you can use this.
http://www.vb-tips.com/default.aspx?...1-d6dda3c888c8

For the rest try to use the website MSDN, although it is terrible to
search and find something on that is the information mostly excelent.

For your basic approach you can have a look at this as you have a 2005
version. Be aware that this is very generic and probably unusable in a
real situation. It gives however a nice starting view.

http://www.vb-tips.com/default.aspx?...2-b1ed16424252

SQL server for production has to be purchased, although there is a kind of
starters SQL server the SQL express, which is free.

http://msdn.microsoft.com/library/de...seoverview.asp

I hope this helps so far,

Cor

"Miro" <mi******@golden.net> schreef in bericht
news:eJ**************@TK2MSFTNGP05.phx.gbl...
Ok im a newbie to VB, and am having some trouble reading msdn help / or
how it all links together. My books are either
missing a step / or assume everything is set up correctly.

I know about tables and keys but i just cant seem to find a "starting
point" in VB.net.

1. Where do I go create a db if i only installed vb.net ? / What do I
use

2. Or is there a good tutorial somewhere of what to do. I have 3 books
and they all "assume" i have an mdb file
or something. - Stupid books. - I want to create my own tables /
dataset

My basic goal is to create a form that creates a db file with multiple
tables and i have relations. Where I can add / deleete / ...
records into the database.

So i really need ot know what needs to be configured for vb.net so I can
create a db with tables and then once i create an
install for a new computer this will work as well.

--- May or may not be linked to question one.
3. What database connection do you use? Does the SQL server come with
vb.net or must it be purchased ?
Did I install something wrong and i dont have an SQL server - or i didnt
configure something?
Thank You

Miro


May 10 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Steven O. | last post by:
First, this may not be the correct newsgroup. I have some relatively basic questions on SQL. I tried to find a newsgroup that was specifically just about SQL, and was surprised to find that all...
6
by: Jim Flack | last post by:
I have a new website hosted by www.easily.co.uk which contains a mysql database (I have the initial access codes etc ). My problem is I have never used PHP or dealt with mysql before. I have tried...
3
by: FC | last post by:
Hello all: I have a very basic question about oracle database structures. I am coming from MS SQLServer where I have three "databases", each database has three "tables". I can access any table...
1
by: Bill | last post by:
Would it be better to use Visual Basic instead of VBA for Access programming? Microsoft is giving VB (standard edition) away free right now and I'm just wondering what the pros and cons are.
2
by: Fay Yocum | last post by:
BEWARE beginner questions!! I have some experience in Access but never as much as I want or need. I have decided to get in on VB.Net. I would only rate myself in Access as a...
14
by: abctech | last post by:
Helo experts, I'm working on my first ever web application and I have some basic questions related to servlets if I may, I have 5-6 Java statements and preparedstatements in my servlet to...
8
by: Chris Asaipillai | last post by:
Hi there I have some questions for those experienced Visual Basic 6 programmers out there who have made the transition from VB6 to Vb.net. How long did it take you to learn at least the basic...
3
by: JJ | last post by:
I've done a little multi-threading on winform apps some time ago now, so I'm not a complete beginner, but best assume I am for any explanations..: This is an asp.net 2.0 website, using c#: I...
28
by: Randy Reimers | last post by:
(Hope I'm posting this correctly, otherwise - sorry!, don't know what else to do) I wrote a set of programs "many" years ago, running in a type of basic, called "Thoroughbred Basic", a type of...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.