5
votes
0
votes
can I configure hibernate properties to connect without using an instance name to sql server 2005?
Yes, you can. You set it up as you normally would in the connection string:
Server=(local);initial catalog=MyDataBase;Integrated Security=SSPI
…
17
votes
how to read the last row with SQL Server
If you're using MS SQL, you can try:
SELECT TOP 1 * FROM table_Name ORDER BY unique_column DESC
…
