Re: Question/Answering over SQL Data Using LangGraph Framework Programming Computer Science by Pelorus_1 Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever. Where Can I Find Test Data (Names, Emails, etc.) for My Testing? Programming Web Development by jamesalery … I need to generate some test data for things like names, birthdays, emails, and other basic information. I’m looking for… Re: Where Can I Find Test Data (Names, Emails, etc.) for My Testing? Programming Web Development by Pelorus_1 Platforms like Mockaroo, Faker and GenerateData provide fake names, emails and more for testing purposes. You can easily create realistic sample data with these tools. Re: Where Can I Find Test Data (Names, Emails, etc.) for My Testing? Programming Web Development by gediminas.bukauskas.7 Look at Customers table in NorthWind database (https://en.wikiversity.org/wiki/Database_Examples/Northwind). Re: WooCommerce Duplicate Categories Programming Web Development by simplixi … at the wp_terms and wp_term_taxonomy tables. These tables store category names and their taxonomy relationships **Edit the Database Manually:** * If you… Re: Multiple MySQL connections + transactions Programming Databases by toneewa … server and use InnoDB, you can use fully qualified table names, and write to multiple databases on a single connection. Otherwise… Re: Multiple MySQL connections + transactions Programming Databases by Dani > If the databases are on the same server and use InnoDB, you can use fully qualified table names, and write to multiple databases on a single connection. That's what I ultimately started doing instead! Thank you so much for a definitive answer to my question. Re: Director of Innovative Technologies Labs Community Center Say Hello! by Dani Hello and welcome to DaniWeb. That’s quite the CV you’ve got there. :) Re: Names starting with ":" Programming Web Development by Kevin_poison names starting with ":" are expressions that return a symbol object e.g. [code] Class Person attr_reader :name, :age, :sex end me = Person.new("poison", "24", "male") [/code] The construct :name is an expression that returns a symbol corresponding to name. Re: Names on Screensaver Images Hardware and Software Microsoft Windows by KL2U …=KL2U;780240]When I had Windows XP, I could have names appear on my screensaver images. I now have Windows Vista… 32 and cannot find where to check to have the names appear in Screen Savings Setting.[/QUOTE] I do not mean… the 3D option. XP allowed names to appear on the screensaver for each image. Someone else… Names on Screensaver Images Hardware and Software Microsoft Windows by KL2U When I had Windows XP, I could have names appear on my screensaver images. I now have Windows Vista 32 and cannot find where to check to have the names appear in Screen Savings Setting. Names and sequence numbers for exiting restore points Hardware and Software Microsoft Windows by evilwhaleboy Hi guys, I need to know how to get names and sequence numbers for exiting restore points on windows OSs. […] Here is explained where I can find the restore points names and sequence numbers on Windows XP , but I'm hoping… Re: Names on Screensaver Images Hardware and Software Microsoft Windows by KL2U …..[/QUOTE] I do not mean the 3D option. XP allowed names to appear on the screensaver for each image. Someone else… names in ascending order problem Programming Software Development by kohkohkoh this program should output the names in ascending order which entered by the user. i know … Names starting with ":" Programming Web Development by drjay1627 What are names starting with the ":", are they variables, constants or something else? drjay Re: Names starting with ":" Programming Web Development by pty [QUOTE=drjay1627;883731]What are names starting with the ":", are they variables, constants or … Need help sorting names and grades using arrays Programming Software Development by jason75080 …]) < 0) { smallest = j; } } String temp = names[i]; names[i] = names[smallest]; names[smallest] = temp; } return names; } // sortGradesByNames method used to sort grades in name… Re: Need help sorting names and grades using arrays Programming Software Development by JamesCherrill … array to keep them in step [CODE]String temp = names[i]; names[i] = names[smallest]; names[smallest] = temp;[/CODE] but really, make a Student… Re: Need help sorting names and grades using arrays Programming Software Development by jason75080 … what I was doing wrong, since I was sorting the names first, when I sorted gradesByName there wasn't anything for… ended up dumping the methods that only sorted grades and names individualy and changed the sortGradesByName and sortNamesByGrade methods so that… How to sort names and grades Programming Software Development by Andrew_62 … + 1] = x[j]; x[j] = tmp; String tmpname = names[j]; names[j] = names[j + 1]; names[j + 1] = tmpname; } } } return x; } public static void… Visual basic 2010 ordering names of an array Programming Software Development by erin_1 … System.EventArgs) Handles BtnAssend.Click Dim names(99) As String Dim c As Integer… System.EventArgs) Handles BtnDessend.Click Dim names(99) As String Dim c As Integer… Dim A As Integer A = 99 names(c) = sr.ToString names(A) = sr.ToString A = A… Sorting names in a text file Programming Software Development by gizmo7008 … int aName = 0; int names[MAX_NAMES]; // read and save names while (fin.good()) { …if not full if (aName < MAX_NAMES) names[aName++] = aName; } } for (int i…< aName; j++) { if (names[i] > names[j]) { names temp = names[i]; names[i] = names[j]; names[j] = temp; } } }… Re: How to sort names and grades Programming Software Development by Dani Line 124 of the above code says: `names[j + 1] = tmpname;` Please keep in mind that it looks … to line 124, how many elements are in the array names? Is it possible for there to be fewer than j… Re: How to sort names and grades Programming Software Development by JamesCherrill Yes. If the `names` array is the same size as the `x` array (as …'s and Apache's Java coding standards prefer `String[] names` over` String names[] `. Although the latter is valid Java, the first version… overall syntax of `<type> <name>`, ie `names` is of type `String[]` Direct navigation domain names Hardware and Software Networking by LuckyDan …this theory? To what extent? Direct navigation names are domain names that are used by online customers to …product or service that you provide. Direct navigation domain names, by definition, tend to be descriptive, intuitive and… asset. The most effective direct navigation names are Dot Com names, with no dashes and no arbitary … SQL Parser in Java to extract names? Programming Software Development by mystery_love123 … in Java which will give the names of view ,column names in select clause,and table names in 3 different arrays. This is… AM STUCK UP HOW I CAN EXTRACT THE COLUMN NAMES AND TABLE NAMES IN ARRAY.**Some help or guidance to write the… alpha,beta,gamma....in an array list,with the column names in separate list .The idea is geting the output: col1… Sorting and Displaying names Programming Web Development by Ghostenshell …SortNames();"> <br> <h2>Sorted Names</h2> <textarea cols="60" rows…="10" name="sorted"> The sorted names will appear here. </textarea> </form> &…]// initialize the counter and the array var numnames=0; var names = new Array(); function SortNames() { // Get the name from the … one dimensional array read names from txt file Programming Software Development by karodhill … want to make my click procedure read five names on a list called names.txt file and store them in a five… If IO.File.Exists("names.txt") Then names = IO.File.ReadAllLines("names.txt") Array.Reverse(names) Else MessageBox.Show("… Re: one dimensional array read names from txt file Programming Software Development by Reverend Jim …in the debugger and see if 1. "names" is actually getting the data 1. Array.Reverse…you'll have to do Array.Sort(names) 'sort names in ascending order Array.Reverse(names) 'reverse the order You'll … to hard code the file name in names = IO.File.ReadAllLines("names.txt") However, the biggest thing … Re: Visual basic 2010 ordering names of an array Programming Software Development by xrjf If, for example, you add the unordered list of names to listbox1, then you may transfer name by name to … sure before inserting you leave above the inserting index all names 'less than' the current one: For i As Int32 = 0…