大约有 8,445 项符合查询结果(耗时:0.0204秒) [XML]
Generating an Excel file in ASP.NET [closed]
I am about to add a section to an ASP.NET app (VB.NET codebehind) that will allow a user to get data returned to them as an Excel file, which I will generate based on database data. While there are several ways of doing this, each has its own drawbacks. How would you return the data? I'm lookin...
EJB's - when to use Remote and/or local interfaces?
...aces come in? Are you supposed to use Remote interfaces if you expect your application to have different components on different servers? And use Local interfaces if your application is only going to reside on one server?
...
How to decide when to use Node.js?
...eneral, I can't help but wonder how to decide when to use Node.js. The web application I have in mind is something like Bitly - takes some content, archives it.
...
How do you configure logging in Hibernate 4 to use SLF4J
...for logging. Hibernate 4.x uses jboss-logging . I am writing a standalone application which uses Hibernate 4, and SLF4J for logging.
...
What are the key differences between Apache Thrift, Google Protocol Buffers, MessagePack, ASN.1 and
... especially tutorial levels -- and to my (admittedly brief) glance doesn't appear to add anything that other, previous efforts don't already do (and in some cases better). To be fair to it, it has a rather impressive number of languages it supports out of the box including a few of the higher-profi...
Should services always return DTOs, or can they also return domain models?
I'm (re)designing large-scale application, we use multi-layer architecture based on DDD.
9 Answers
...
How to configure MongoDB Java driver MongoOptions for production use?
...ctions a single Mongo instance (it's singleton so you usually have one per application) can establish to a mongod/mongos process. At time of writing the java driver will establish this amount of connections eventually even if the actual query throughput is low (in order words you will see the "conn"...
How to securely save username/password (local)?
I'm making a Windows application, which you need to log into first.
The account details consist of username and password, and they need to be saved locally.
It's just a matter of security, so other people using the same computer can't see everyone's personal data.
What is the best/most secur...
Replacing .NET WebBrowser control with a better browser, like Chrome?
Is there any relatively easy way to insert a modern browser into a .NET application?
22 Answers
...
Foreign Key to multiple tables
...ot neither) was referenced by a single row.
Here's how it could look when applied to your tables:
CREATE TABLE dbo.[Group]
(
ID int NOT NULL CONSTRAINT PK_Group PRIMARY KEY,
Name varchar(50) NOT NULL
);
CREATE TABLE dbo.[User]
(
ID int NOT NULL CONSTRAINT PK_User PRIMARY KEY,
Name...