You're welcome :)
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
Answered in QA: Index on nvarchar column doesnot affect performance[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
Also tell your teacher that he can simply specify constraints without having to resort to "assumptions". Working on assumptions is a very bad habit.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
Quote:
Have you contacted the manufacturer of said scanner and asked them how to interact with it programmatically? Probably through an API that they would have to provide.
If you are new to programming then getting a scanner to work through an API is probably beyond your current capabilities. Your table (it is not a database) should also include a unique identifier for the person (after all, people can have the same name). Do not store the actual document on the database, store it's relative path or it's path relative to a fixed folder name.
1. Please do not type in all capitals; it is considered as shouting on the internet. 2. Please read How to get an answer to your question - Database Discussion Boards[^]. No one is going to write your programs for you.
Which was itself a repost of: Run time from VB.NET (no error)[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
jkirkerx wrote:
I've had customers tell me to remove eg. Hawa
That would be a customer specific configuration then. So something that overrides the base.
So far so good. I really like it. Finally got use to the ObjectId and my models are matching up in .Net Core and Angular. The Net Core Mongo drivers are pretty cool, but a whole different beast. MongoDB is fine for my portfolio website and a good learning experience. Got praise last night at the Agile meetup for taking the time to learn it. So it be a valuable tool or experience. I’m in Vegas for the weekend, won $50 so far.
If it ain't broke don't fix it Discover my world at jkirkerx.com
Treat the view as just another table, you can have multiple joins to the same table/view in any view. Where there may be an issue is when you self reference via a chain of joins but MSSQL will tell you when you try and run the query.
Never underestimate the power of human stupidity RAH
Just count the returned rows:
int count = 0;
while (rs3.next())
{
count++;
// Access row data here
}
if (count == 0)
{
// No matching row found
%>Null<%
}