Storing Bulk data
-
Storing some data (which includes Text,URL,image..) into a single Table. And could be assigned into separate fields. is it possible?if so,how?
-
Storing some data (which includes Text,URL,image..) into a single Table. And could be assigned into separate fields. is it possible?if so,how?
Judging from your question I would suggest you get a beginners book on database and start reading as it indicates you have no idea what a database does. A column and a field are the same thing. A table on the other hand has a collection of columns which may be of different data types so you could store a row/record of data made up of the different data types. Get book and start studying!
Never underestimate the power of human stupidity RAH
-
Judging from your question I would suggest you get a beginners book on database and start reading as it indicates you have no idea what a database does. A column and a field are the same thing. A table on the other hand has a collection of columns which may be of different data types so you could store a row/record of data made up of the different data types. Get book and start studying!
Never underestimate the power of human stupidity RAH
Please omit the second part of the Question. I meant that for Front end fields.
-
Please omit the second part of the Question. I meant that for Front end fields.
You can store everything in a single column of a single table; but then you'd be better of with storing that blob in a file, and not in a database. Every "field" should hold 1 piece of information, not more - regardless of how it is shown.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
-
Storing some data (which includes Text,URL,image..) into a single Table. And could be assigned into separate fields. is it possible?if so,how?
Your question isn't clear. If you want to store a single 'item' without respect to the type of the item and you need to have no limit on the size then you would use a single column which has a blob (binary not character data.) If you want to keep a hint as to what type of data is in that column then you could create another string\text column which stores the name of the type like 'url', 'txt', 'img', etc.
muraliDarenKassi wrote:
is it possible?if so,how?
If the above is a correct re-statement of your question then the above is also the answer.