I'm really at a loss here, so i hope someone can help me.
I'm writing an application in VB and i want to search through a database on the server.
I have a table called TEST_TABLE, it has three fields:
id, name, log
"id" is a BIGINT and the primary key
"name" is a VARCHAR(128)
"log" is a MEDIUMTEXT
The table has 5000 entries.
When i perform a "SELECT * FROM TEST_TABLE" it takes almost 10 seconds to complete.
Is there any way to speed this up?
I already tried creating an index, but it doesn't seem to be possible to create an index that holds all the fields.
Greetings,
H0nger
I'm writing an application in VB and i want to search through a database on the server.
I have a table called TEST_TABLE, it has three fields:
id, name, log
"id" is a BIGINT and the primary key
"name" is a VARCHAR(128)
"log" is a MEDIUMTEXT
The table has 5000 entries.
When i perform a "SELECT * FROM TEST_TABLE" it takes almost 10 seconds to complete.
Is there any way to speed this up?
I already tried creating an index, but it doesn't seem to be possible to create an index that holds all the fields.
Greetings,
H0nger