Search Results

3
votes

Connect PHP to an AS/400

Have you looked at connecting to the server using unixODBC? If I remember correctly it has support for IBM DB2 and compiles on OpenBSD. Check o …
1
vote

How does database indexing work?

I agree with sparkes, it makes more sense in the context of the site to ask the question first and then answer it with your article. …
14
votes

How do I index a database field

The following is SQL92 standard so should be supported by the majority of RDMBS that use SQL: CREATE INDEX [index name] ON [table name] ( [column name] ) …
0
votes

Are Multiple DataContext classes ever appropriate?

In my experience with LINQ to SQL and LINQ to Entities a DataContext is synonymous to a connection to the database. So if you were to use multiple data stores you would need to use multiple DataCon …
0
votes

Auto Generate Database Diagram MySQL

The "Reverse Engineer Database" mode in Workbench in only part of the paid version not the free one. …
1
vote

Instrumenting Database Access

If a query is more then just a simple SELECT on a single table I always run it through EXPLAIN if I am on MySQL or PostgreSQL. If you are using SQL Server then Management Studio has a Display Estim …