G
Gordon Padwick
While attempting to become familiar with using C# to connect with databases,
I came across this SQL statement in one of Microsoft's Help topics:
command = new OldDbCommand("SELECT * FROM dbo.Customers " +
"WHERE Country = ? AND City = ?", connection);
I'm puzzled by "dbo.Customers". I don't recall seeing this type of thing
elsewhere. Can someone suggest the significance?
Gordon
I came across this SQL statement in one of Microsoft's Help topics:
command = new OldDbCommand("SELECT * FROM dbo.Customers " +
"WHERE Country = ? AND City = ?", connection);
I'm puzzled by "dbo.Customers". I don't recall seeing this type of thing
elsewhere. Can someone suggest the significance?
Gordon