ouch_mybrain_
asked on
What is a database object
Can someone please explain simply to me, 'what is a database object'?
I know what a database is, I know that code can pull data from a database and deliver to a client front end, i just need someone to wrap it up in "idiot speak" so I get it because it's driving me mad. I need a definition that I can understand.
Thanks.
I know what a database is, I know that code can pull data from a database and deliver to a client front end, i just need someone to wrap it up in "idiot speak" so I get it because it's driving me mad. I need a definition that I can understand.
Thanks.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Database objects are the main componets of a database used to store and display the relational data. The main Database Objects in MS Sql are tables, stored procedures, views, users and functions. So, a database object of "table" would include the rows and fields to store your data.
ASKER